文件名称:Edge-Detection-master
- 所属分类:
- 图形图像处理(光照,映射..)
- 资源属性:
- [C/C++] [源码]
- 上传时间:
- 2017-11-09
- 文件大小:
- 5kb
- 下载次数:
- 0次
- 提 供 者:
- 穿山***
- 相关连接:
- 无
- 下载说明:
- 别用迅雷下载,失败请重下,重下不扣分!
介绍说明--下载内容均来自于网络,请自行研究使用
This project is about detecting edges using canny edge detector. The canny edge detector is implemented from scratch using c++. Steps involved in creating a canny edge detector: STEP 1: smoothen the image using gaussian blur. STEP 2: Use differential operator to find the magnitude and direction of every edge pixel. STEP 3: Non maximal supression or Thinning is done. Here the thick edges are supressed into thinner ones. STEP 4: Hysteresis Thresholding: Two thresholds are selected. pixels lower than the lowT will become zero. pixels higher than the HighT will become one. The candidate pixels will become one if they can be linked to any one of the strong pixel.
(系统自动生成,下载前可以参看下载内容)
下载文件列表
Edge-Detection-master
Edge-Detection-master\CMakeLists.txt
Edge-Detection-master\README.md
Edge-Detection-master\canny.h
Edge-Detection-master\convolve.h
Edge-Detection-master\edge.h
Edge-Detection-master\gaussian_blur.h
Edge-Detection-master\main.cpp
Edge-Detection-master\CMakeLists.txt
Edge-Detection-master\README.md
Edge-Detection-master\canny.h
Edge-Detection-master\convolve.h
Edge-Detection-master\edge.h
Edge-Detection-master\gaussian_blur.h
Edge-Detection-master\main.cpp