2010. 3. 31. 16:58
Computer Vision
OpenCV 라이브러리의 Canny edge detection 함수
cvCanny() 함수의 입출력 이미지는 단일 채널 (single channel)이어야 하므로,
비디오 입력에서 컬러 영상을 받은 경우 흑백 이미지(gray image)로 전환해 주어야 한다.
cf.
2010/03/30 - [Visual Information Processing Lab] - Canny edge detection
cv. Image Processing and Computer Vision
- void cvCanny(const CvArr* image, CvArr* edges, double threshold1, double threshold2, int aperture_size=3)¶
Implements the Canny algorithm for edge detection.
Parameters: - image – Single-channel input image
- edges – Single-channel image to store the edges found by the function
- threshold1 – The first threshold
- threshold2 – The second threshold
- aperture_size – Aperture parameter for the Sobel operator (see Sobel)
cvCanny() 함수의 입출력 이미지는 단일 채널 (single channel)이어야 하므로,
비디오 입력에서 컬러 영상을 받은 경우 흑백 이미지(gray image)로 전환해 주어야 한다.
void cvCvtColor(const
CvArr* src, CvArr* dst, int code)¶
Converts an image from one color space to another.
Parameters: |
|
---|
입력 영상 |
흑백 영상 |
edge 검출 영상 (Canny 알고리즘) |
cf.
2010/03/30 - [Visual Information Processing Lab] - Canny edge detection
cv. Image Processing and Computer Vision
'Computer Vision' 카테고리의 다른 글
OpenCV: cvFindContours (0) | 2010.04.02 |
---|---|
Harris corner detector (0) | 2010.03.31 |
Canny edge detection (0) | 2010.03.30 |
ARToolKit - simpleTest (0) | 2010.03.17 |
Three-dimensional computer vision: a geometric viewpoint By Olivier Faugeras (0) | 2010.03.15 |