文件名称:edge detection
文件大小:5KB
文件格式:ZIP
更新时间:2020-11-29 07:24:33
edge detection
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
----convolve.h(2KB)
----canny.h(4KB)
----CMakeLists.txt(659B)
----main.cpp(363B)
----README.md(684B)
----edge.h(1KB)
----gaussian_blur.h(982B)