-
Notifications
You must be signed in to change notification settings - Fork 0
/
cannypoints.cpp
182 lines (151 loc) · 4.55 KB
/
cannypoints.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
#include <iostream>
#include <opencv2/opencv.hpp>
#include <algorithm>
#include <numeric>
#include <ctime>
#include <cstdlib>
#include <fstream>
#include <iomanip>
#include <vector>
#define STEP 5
#define JITTER 3
using namespace std;
using namespace cv;
int main(int argc, char** argv){
Mat image, border, points;
int threshold, width, height, x, y, r, g , b, i, j;
vector<int> yrange;
vector<int> xrange;
int RAIO = 5;
//imagem que sera passada como argumento ao executar o programa
image= imread(argv[1],CV_LOAD_IMAGE_COLOR);
//checa se a imagem abriu ou nao
if(!image.data){
cout << "nao abriu" << argv[1] << endl;
cout << argv[0] << " imagem.jpg";
exit(0);
}
//Aplicação do algoritimo pontilhismo
srand(time(0));
width=image.size().width;
height=image.size().height;
xrange.resize(height/STEP);
yrange.resize(width/STEP);
iota(xrange.begin(), xrange.end(), 0);
iota(yrange.begin(), yrange.end(), 0);
for(uint i=0; i<xrange.size(); i++){
xrange[i]= xrange[i]*STEP+STEP/2;
}
for(uint i=0; i<yrange.size(); i++){
yrange[i]= yrange[i]*STEP+STEP/2;
}
points = Mat(height, width, CV_8UC3, Scalar(CV_RGB(255,255,255)));
random_shuffle(xrange.begin(), xrange.end());
for(auto i : xrange){
random_shuffle(yrange.begin(), yrange.end());
for(auto j : yrange){
x = i+rand()%(2*JITTER)-JITTER+1;
y = j+rand()%(2*JITTER)-JITTER+1;
r = image.at<cv::Vec3b>(x,y)[2];
g = image.at<cv::Vec3b>(x,y)[1];
b = image.at<cv::Vec3b>(x,y)[0];
circle(points,
cv::Point(y,x),
RAIO,
CV_RGB(r,g,b),
-1,
CV_AA);
}
}
//algoritimo de canny para melhorar o pontilhismo
//aplica um threshold baixo para plotar o maior numero de bordas
threshold = 50;
Canny(image, border, threshold, 3*threshold);
//abaixa o raio para quatro
RAIO = 4;
//vasculha a imagem resultante do algoritimo de canny reassentuando os pontos de borda, plotando os circulos nesses pontos agora c raio 4
for(i=0;i<height;i++){
for(j=0;j<width;j++){
//checa se o pixel atual não é de fundo, ou seja, preto
if(border.at<uchar>(i,j)>0){
//se nao for ele pega os valor da cor do pixel em RGB
r = image.at<cv::Vec3b>(i,j)[2];
g = image.at<cv::Vec3b>(i,j)[1];
b = image.at<cv::Vec3b>(i,j)[0];
//Coloca um circulo na mesma posição do pixel de borda na imagem resultante com as cores RGB coletadas
circle(points,
cv::Point(j,i),
RAIO,
CV_RGB(r,g,b),
-1,
CV_AA);
}
}
}
//aumentamos mais o theshold para plotar agora menos bordas, porém essas bordas sao mais acentuadas que a anterior
//reaplicamos o canny
threshold = 100;
Canny(image, border, threshold, 3*threshold);
//por serem mais fortes esses novos pontos vamos diminuir mais o raio do circulo
RAIO = 3;
for(i=0;i<height;i++){
for(j=0;j<width;j++){
if(border.at<uchar>(i,j)>0){
r = image.at<cv::Vec3b>(i,j)[2];
g = image.at<cv::Vec3b>(i,j)[1];
b = image.at<cv::Vec3b>(i,j)[0];
circle(points,
cv::Point(j,i),
RAIO,
CV_RGB(r,g,b),
-1,
CV_AA);
}
}
}
//fazemos de novo o processo anterior para um threshold de 150 e com raio 2
threshold = 150;
Canny(image, border, threshold, 3*threshold);
RAIO = 2;
for(i=0;i<height;i++){
for(j=0;j<width;j++){
if(border.at<uchar>(i,j)>0){
r = image.at<cv::Vec3b>(i,j)[2];
g = image.at<cv::Vec3b>(i,j)[1];
b = image.at<cv::Vec3b>(i,j)[0];
circle(points,
cv::Point(j,i),
RAIO,
CV_RGB(r,g,b),
-1,
CV_AA);
}
}
}
//E por fim, as bordas mais acentuadas, com threshold de 200, usamos um raio = 1
threshold = 200;
Canny(image, border, threshold, 3*threshold);
RAIO = 1;
for(i=0;i<height;i++){
for(j=0;j<width;j++){
if(border.at<uchar>(i,j)>0){
r = image.at<cv::Vec3b>(i,j)[2];
g = image.at<cv::Vec3b>(i,j)[1];
b = image.at<cv::Vec3b>(i,j)[0];
circle(points,
cv::Point(j,i),
RAIO,
CV_RGB(r,g,b),
-1,
CV_AA);
}
}
}
//após o processo mostramos a imagem resultado
imshow("Saida", points);
//espera qualquer tecla a ser precionada
waitKey();
//escreve um arquivo de saida da imagem resultado denominada "cannypontos.png"
imwrite("cannypoints.png", points);
return 0;
}