-
Notifications
You must be signed in to change notification settings - Fork 0
/
morfologia.cpp
41 lines (32 loc) · 1.04 KB
/
morfologia.cpp
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
31
32
33
34
35
36
37
38
39
40
41
#include <iostream>
#include <opencv2/opencv.hpp>
int main(int argc, char** argv) {
cv::Mat image, erosao, dilatacao, abertura, fechamento, abertfecha;
cv::Mat str;
if (argc != 2) {
std::cout << "morfologia entrada saida\n";
}
image = cv::imread(argv[1], cv::IMREAD_UNCHANGED);
// image = cv::imread(argv[1], -1);
if(image.empty()) {
std::cout << "Erro ao carregar a imagem: " << argv[1] << std::endl;
return -1;
}
// elemento estruturante
str = cv::getStructuringElement(cv::MORPH_RECT, cv::Size(3, 3));
// erosao
cv::erode(image, erosao, str);
// dilatacao
cv::dilate(image, dilatacao, str);
// abertura
cv::morphologyEx(image, abertura, cv::MORPH_OPEN, str);
// fechamento
cv::morphologyEx(image, fechamento, cv::MORPH_CLOSE, str);
// abertura -> fechamento
cv::morphologyEx(abertura, abertfecha, cv::MORPH_CLOSE, str);
cv::Mat matArray[] = {erosao, dilatacao, abertura, fechamento, abertfecha};
cv::hconcat(matArray, 5, image);
cv::imshow("morfologia", image);
cv::waitKey();
return 0;
}