[원본 이미지]
[Source code]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | #include <opencv\cv.h> #include <opencv\highgui.h> using namespace cv; using namespace std; int main(void) { // Original Image Mat image = imread("circuit/c.jpg", CV_LOAD_IMAGE_COLOR); imshow("Original image", image); // Original Image to Gray Image Mat gray; cvtColor(image, gray, CV_BGR2GRAY); // Canny Filter Mat canny; Canny(gray, canny, 100, 150); // Result Image imshow("image", canny); waitKey(0); return 0; } |
[Result Image]
728x90
반응형
'Programming > Image Processing' 카테고리의 다른 글
배열접근방식 세선화(Thinning) 함수 소스코드 (0) | 2014.01.13 |
---|---|
[OpenCV] Mat을 이용한 Thinning(세선화) 구현 (0) | 2014.01.13 |
[OpenCV] Edge detection(Sobel Filter) 사용하기 예제 (1) | 2014.01.10 |
[OpenCV] IplImage* ↔ Mat Conversion (0) | 2014.01.10 |
[OpenCV] 이진화 소스코드 (0) | 2014.01.07 |