2010. 4. 3. 22:27
Computer Vision
OpenCV 2.0 C++ reference - Image
Filtering
간단한 예로, 다음과 같은 (1차 미분, 크기3의) 마스크를 적용하면,
x방향 Sobal mask:
void
cvSobel(const
CvArr* src, CvArr* dst, int xorder, int
yorder, int apertureSize=3)¶
Calculates the first, second, third or mixed image derivatives using an extended Sobel operator.
Parameters: |
|
---|
간단한 예로, 다음과 같은 (1차 미분, 크기3의) 마스크를 적용하면,
x방향 Sobal mask:
y방향 Sobel mask:
입력 영상
흑백 영상 |
x방향 Sobel 마스크로 필터링한 영상 |
y방향 Sobel 마스크로 필터링한 영상 |
입력 영상
흑백 영상 |
x방향 Sobel 마스크로 필터링한 영상 |
y방향 Sobel 마스크로 필터링한 영상 |
'Computer Vision' 카테고리의 다른 글
OpenCV: cvFilter2D() 연습 코드 (0) | 2010.04.04 |
---|---|
Image Filtering (0) | 2010.04.03 |
OpenCV: CV_IMAGE_ELEM (0) | 2010.04.02 |
OpenCV: cvFindContours (0) | 2010.04.02 |
Harris corner detector (0) | 2010.03.31 |