티스토리 뷰
#include <opencv2/imgproc.hpp>
#include <opencv2/core.hpp>
#include <opencv2/highgui.hpp>
#include <iostream>
using namespace std;
using namespace cv;
int main() {
Mat cow_binary = imread("cow_binary.bmp", IMREAD_GRAYSCALE);
Mat castle_grayScale = imread("castle_original.jpg", IMREAD_GRAYSCALE);
Mat book_grayScale = imread("book_original.jpg", IMREAD_GRAYSCALE);
Mat eroded, dilated, opened, closed;
Mat gradient, black_top_hat;
Mat structuringElement_5x5 = Mat(5, 5, CV_8U, Scalar(1));
Mat structuringElement_7x7 = Mat(7, 7, CV_8U, Scalar(1));
// erode
erode(cow_binary, eroded, structuringElement_5x5);
// dilate
dilate(cow_binary, dilated, structuringElement_5x5);
// closing
morphologyEx(cow_binary, closed, MORPH_CLOSE, structuringElement_5x5);
// opening
morphologyEx(cow_binary, opened, MORPH_OPEN, structuringElement_5x5);
// gradient
morphologyEx(castle_grayScale, gradient, MORPH_GRADIENT, Mat());
gradient.convertTo(gradient, CV_8UC1, -1, 255);
// black-top-hat
morphologyEx(book_grayScale, black_top_hat, MORPH_BLACKHAT, structuringElement_7x7);
black_top_hat.convertTo(black_top_hat, CV_8UC1, -1, 255);
imwrite("eroded.bmp", eroded);
imwrite("dilated.bmp", dilated);
imwrite("closed.bmp", closed);
imwrite("opened.bmp", opened);
imwrite("castle_grayScale.bmp", castle_grayScale);
imwrite("gradient.bmp", gradient);
imwrite("book_grayScale.bmp", book_grayScale);
imwrite("black_top_hat.bmp", black_top_hat);
}
'영상처리 > OpenCV' 카테고리의 다른 글
17. Maximally stable external regions (0) | 2019.06.02 |
---|---|
16. watershed transformation (0) | 2019.05.28 |
14. Integral image (0) | 2019.05.21 |
13. Backprojection & meanshift (0) | 2019.05.18 |
12. histogram introduction (0) | 2019.05.12 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- direction detection
- top hat
- Sobel
- high pass filter
- canny
- black top hat
- bilateral filter
- 캐니 엣지
- laplacian of gaussian
- adaptive thresholding
- canny operator
- Line Detection
- pyrUp
- median filter
- pyrDown
- difference of gaussian
- segmentation
- Low pass filter
- dilation
- OpenCV
- 영상처리
- gradient
- erosion
- mean filter
- Filter
- hough transform
- upsampling
- morphology
- morphological operation
- equalizing
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 27 | 28 | 29 | 30 |
글 보관함