-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprog6.cpp
209 lines (173 loc) · 6.45 KB
/
prog6.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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
/****************************
Canny edge detection
*****************************/
#include <iostream>
#include <bits/stdc++.h>
#include "opencv2/core/core.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/opencv.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include <opencv2/objdetect/objdetect.hpp>
#include <math.h>
#include <omp.h>
using namespace cv;
using namespace std;
int main()
{
string filename;
cout<<"Enter filename:";
cin>> filename;
// Reading image
Mat img = imread(filename);
// Displaying image
//imshow("Original Image",img);
//waitKey(0);
// Converting to grayscale
Mat img_gray,image_gray;
cvtColor(img,image_gray,CV_RGB2GRAY);
GaussianBlur( image_gray, img_gray, Size(15,15), 3, 3);
// Displaying grayscale image
imshow("Original Image",img_gray);
waitKey(0);
cv::Mat Gx, Gy; int ksize=3;
Mat abs_grad_x, abs_grad_y;
cv::Sobel(img_gray, Gx, CV_64F, 1, 0, ksize);
convertScaleAbs( Gx, abs_grad_x );
cv::Sobel(img_gray, Gy, CV_64F, 0, 1, ksize);
convertScaleAbs( Gy, abs_grad_y );
Mat grad;
addWeighted( abs_grad_x, 0.5, abs_grad_y, 0.5, 0, grad );
imshow("Sobel Image",grad);
waitKey(0);
//Canny edge detection
Mat edge, draw;
Canny( img_gray, edge, 50, 100, 3);
edge.convertTo(draw, CV_8U);
namedWindow("image", CV_WINDOW_AUTOSIZE);
imshow("image", draw);
waitKey(0);
// Performing Non-Maximum Surpression
float theta; // Calculate intensity gradient vector theta=atan2(Gy,Gx);
Mat nonMaxSupp= Mat(grad.rows-2, grad.cols-2, CV_8UC1); //CV_8UC1 is 8-bit single channel image i.e grayscale
for(int i=1; i<Gx.rows-1; i++)
{
for(int j=1; j<Gx.cols-1; j++)
{
//if(gradient_x.at<uchar>(i,j) ==0) //Arctan Fix
// theta = 90;
//else
theta = atan2(Gy.at<uchar>(i,j),Gx.at<uchar>(i,j))*(180/3.14);
//theta = atan(gradient_y.at<uchar>(i,j)/gradient_x.at<uchar>(i,j))*(180/3.14);
//cout<<theta<<endl;
//if(theta>max)
// max=theta;
nonMaxSupp.at<uchar>(i-1, j-1) = grad.at<uchar>(i,j);
// For horizontal edge
if(((-22.5 < theta) && (theta <= 22.5)) || ((157.5 < theta) && (theta <= -157.5)))
{
if ((grad.at<uchar>(i,j) < grad.at<uchar>(i,j+1)) || (grad.at<uchar>(i,j) < grad.at<uchar>(i,j-1)))
nonMaxSupp.at<uchar>(i-1, j-1) = 0;
}
//For vertical edge
if (((-112.5 < theta) && (theta <= -67.5)) || ((67.5 < theta) && (theta <= 112.5)))
{
if ((grad.at<uchar>(i,j) < grad.at<uchar>(i+1,j)) || (grad.at<uchar>(i,j) < grad.at<uchar>(i-1,j)))
nonMaxSupp.at<uchar>(i-1, j-1) = 0;
}
// For 135 degree or -45 degree edge
if (((-67.5 < theta) && (theta <= -22.5)) || ((112.5 < theta) && (theta <= 157.5)))
{
if ((grad.at<uchar>(i,j) < grad.at<uchar>(i-1,j+1)) || (grad.at<uchar>(i,j) < grad.at<uchar>(i+1,j-1)))
nonMaxSupp.at<uchar>(i-1, j-1) = 0;
}
// For 45 Degree Edge
if (((-157.5 < theta) && (theta <= -112.5)) || ((22.5 < theta) && (theta <= 67.5)))
{
if ((grad.at<uchar>(i,j) < grad.at<uchar>(i+1,j+1)) || (grad.at<uchar>(i,j) < grad.at<uchar>(i-1,j-1)))
nonMaxSupp.at<uchar>(i-1, j-1) = 0;
}
/*else
{
nonMaxSupp.at<uchar>(i-1, j-1) = 255;
}
*/
}
}
//cout<<endl<<"max"<<max;
imshow("Non-Maximum Surpression",nonMaxSupp);
waitKey(0);
// Hysterisis Thresholding
int low=20,high=40;
if(low > 255)
low = 255;
if(high > 255)
high = 255;
Mat EdgeMat = Mat(nonMaxSupp.rows, nonMaxSupp.cols, nonMaxSupp.type());
double start,end,diff;
start = omp_get_wtime();
for (int i=0; i<nonMaxSupp.rows; i++)
{
for (int j = 0; j<nonMaxSupp.cols; j++)
{
EdgeMat.at<uchar>(i,j) = nonMaxSupp.at<uchar>(i,j);
if(EdgeMat.at<uchar>(i,j) > high)
EdgeMat.at<uchar>(i,j) = 255;
else if(EdgeMat.at<uchar>(i,j) < low)
EdgeMat.at<uchar>(i,j) = 0;
else
{
bool anyHigh = false;
bool anyBetween = false;
for (int x=i-1; x < i+2; x++)
{
for (int y = j-1; y<j+2; y++)
{
if(x <= 0 || y <= 0 || x > EdgeMat.rows || y > EdgeMat.cols) //Out of bounds
continue;
else
{
if(EdgeMat.at<uchar>(x,y) > high)
{
EdgeMat.at<uchar>(i,j) = 255;
anyHigh = true;
break;
}
else if(EdgeMat.at<uchar>(x,y) <= high && EdgeMat.at<uchar>(x,y) >= low)
anyBetween = true;
}
}
if(anyHigh)
break;
}
if(!anyHigh && anyBetween)
for (int x=i-2; x < i+3; x++)
{
for (int y = j-1; y<j+3; y++)
{
if(x < 0 || y < 0 || x > EdgeMat.rows || y > EdgeMat.cols) //Out of bounds
continue;
else
{
if(EdgeMat.at<uchar>(x,y) > high)
{
EdgeMat.at<uchar>(i,j) = 255;
anyHigh = true;
break;
}
}
}
if(anyHigh)
break;
}
if(!anyHigh)
EdgeMat.at<uchar>(i,j) = 0;
}
}
}
end = omp_get_wtime();
diff = end-start;
cout<<"\nserial code time:"<<diff<<endl;
imshow("Hysterisis Thresholding",EdgeMat);
waitKey(0);
return 0;
}