-
Notifications
You must be signed in to change notification settings - Fork 0
/
labeling.cpp
45 lines (39 loc) · 1 KB
/
labeling.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
42
43
44
45
#include <iostream>
#include <opencv2/opencv.hpp>
int main(int argc, char** argv) {
cv::Mat image, realce;
int width, height;
int nobjects;
cv::Point p;
image = cv::imread("../bolhas.png", cv::IMREAD_GRAYSCALE);
if (!image.data) {
std::cout << "imagem nao carregou corretamente\n";
return (-1);
}
width = image.cols;
height = image.rows;
std::cout << width << "x" << height << std::endl;
p.x = 0;
p.y = 0;
// busca objetos presentes
nobjects = 0;
for (int i = 0; i < height; i++) {
for (int j = 0; j < width; j++) {
if (image.at<uchar>(i, j) == 255) {
// achou um objeto
nobjects++;
// para o floodfill as coordenadas
// x e y são trocadas.
p.x = j;
p.y = i;
// preenche o objeto com o contador
cv::floodFill(image, p, nobjects);
}
}
}
std::cout << "a figura tem " << nobjects << " bolhas\n";
cv::imshow("image", image);
cv::imwrite("labeling.png", image);
cv::waitKey();
return 0;
}