搜索资源列表
Desktop
- 能够进行图像的边缘检测,采用canny算法,opencv代码只有短短几行,简单实用-Capable of image edge detection using canny algorithm, opencv code for only a few lines, simple and practical
canny
- 本代码提高了图像处理中最经典的canny边缘检测算法-This code improves the image processing of the most classic canny edge detection algorithm
ds
- Opencv图像处理,Canny边缘检测算法 -Opencv image processing, Canny edge detection algorithm
canny
- 学习opencv,opencv的基本算法,canny算法,检测图形边缘-Testing the edges of the figure
Canny
- 开发环境VC++6.0,这是一个用OpenCV做的canny边缘检测算法-Development environment VC++6.0, this is one to do with OpenCV canny edge detection algorithm
canny
- 基于opencv的Canny算法 边缘检测-Canny based on opencv
edge
- 主要是采用Canny算法进行边缘检测,有一个个跟踪条,涉及到callback函数,对灰度图像进行边缘检测,将彩色图像转换为灰度图像-Using Canny algorithm for edge detection, a track bar relates to the callback function, for edge detection of gray image, the color image is converted to grayscale images
edge_detect
- 本代码为Canny检测算法的实现,功能为对图象边缘确定与提取-The code for the the Canny detection algorithm, determine and extraction the edge of the image
chengxu
- 程序中包括canny边缘检测,平滑滤波,和金字塔算法,都是基于opencv的,程序简单实用。-Program includes canny edge detection, smoothing filtering, and the pyramid algorithm, are based on opencv, procedures simple and practical.
5-1
- 对图像进行拉普拉斯变换,然后采用canny算法进行边缘检测-Laplace transform of the image, then use the canny edge detection algorithm
canny
- Canny 的目标是找到一个最优的边缘检测算法 opencv中的边缘检测 用c++来实现-Canny goal is to find an optimal edge detection algorithm of edge detection opencv to achieve c++
OpenCV
- 基于opencv的use摄像头视频采集程序 1 基于opencv的两个摄像头数据采集 3 能激发你用代码做视频的冲动程序 6 图像反转(就是把黑的变白,白的变黑) 11 图像格式的转换 12 从摄像头或者AVI文件中得到视频流,对视频流进行边缘检测 13 采用Canny算子进行边缘检测 15 角点检测 18 图像的旋转加缩放(效果很拽,用地球做就像谷歌地球似的) 21 Log-Polar极坐标变换 22 对图像进行形态学操作(图像的开闭,腐蚀和膨胀运算)
Edge-Detection
- opencv实现基于Sobel算子、Canny算子和Laplace算子的图像边缘检测算法。 开发环境:vs2010+opencv。-opencv-based Sobel operator, Canny operator and Laplace operator image edge detection algorithm. Development environment: vs2010+ opencv.
Canny
- Canny边缘检测算法: 用高斯滤波器平滑图像; 用一阶偏导的有限差分计算梯度的幅值和方向; 对梯度幅值进行非极大值抑制; 用双阈值算法检测和连接边缘。 -canny contour extraction algorithm
canny
- 实现图像边缘检测,采用的是canny算法,需要改变程序中的图像路径,因人而异~-Realization of image edge detection, using a canny algorithm, the program needs to change the image path, vary ~
OpenCVCanny
- OpenCV中的Canny边缘检测算法程序-OpenCV Canny edge detection algorithm in application
canny
- Canny 的目标是找到一个最优的边缘检测算法,最优边缘检测的含义是: 好的检测- 算法能够尽可能多地标识出图像中的实际边缘。 好的定位- 标识出的边缘要尽可能与实际图像中的实际边缘尽可能接近。 最小响应- 图像中的边缘只能标识一次,并且可能存在的图像噪声不应标识为边缘。-Canny goal is to find an optimal edge detection algorithm, the optimal edge detection means: Good test- a
canny
- canny边缘检测算法,利用opencv实现,vs2015,opencv2.4.13-canny edge detection
canny_test
- Canny边缘检测算法是1986年有John F. Canny开发出来一种基于图像梯度计算的边缘 检测算法,同时Canny本人对计算图像边缘提取学科的发展也是做出了很多的贡献。尽 管至今已经许多年过去,但是该算法仍然是图像边缘检测方法经典算法之一。-Canny edge detection algorithm in 1986 John F. Canny edge detection algorithm developed by the image gradient calcu
canny
- Canny 的目标是找到一个最优的边缘检测算法,最优边缘检测的含义是: (1)最优检测:算法能够尽可能多地标识出图像中的实际边缘,漏检真实边缘的概率和误检非边缘的概率都尽可能小。本程序利用Canny算子实现图像边缘的提取(Image edge extraction by Canny operator)