基本介紹
- 中文名:cvCanny
- 定義:void cvCanny
- 釋義:開放計算機視覺庫庫函式之一
- 用於:對圖像的邊緣檢測
定義,參數說明,
定義
void cvCanny( const CvArr* image,CvArr* edges,double threshold1,double threshold2, int aperture_size=3 );
參數說明
image 輸入單通道圖像(可以是彩色圖像)對於多通道的圖像可以用cvCvtColor()修改。
edges 輸出的邊緣圖像 ,也是單通道的,但是是黑白的
threshold1 第一個閾值
threshold2 第二個閾值
aperture_size Sobel 運算元核心大小
函式 cvCanny 採用 Canny 算法發現輸入圖像的邊緣而且在輸出圖像中標識這些邊緣。threshold1和threshold2 當中的小閾值用來控制邊緣連線,大的閾值用來控制強邊緣的初始分割。