-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
230 lines (202 loc) · 4.81 KB
/
main.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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
#define _CRT_SECURE_NO_WARNINGS
#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <ctime>
#include <ratio>
#include <chrono>
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
using namespace cv;
using namespace std;
using namespace std::chrono;
void minmax(Mat inputimage){
static Vec3b min(255,255,255);
static Vec3b max(0,0,0);
static float maxsub01 = 0;
static float maxsub02 = 0;
static float maxsub12 = 0;
static float minsub01 = 999999;
static float minsub02 = 999999;
static float minsub12 = 999999;
static float maxdiv01 = 0;
static float maxdiv02 = 0;
static float maxdiv12 = 0;
static float mindiv01 = 999999;
static float mindiv02 = 999999;
static float mindiv12 = 999999;
float temp;
for (int y = 0; y < inputimage.rows; y++) {
for (int x = 0; x < inputimage.cols; x++) {
//cout << "???" << inputimage.at<Vec3b>(y, x) << "!!!" << endl;
Vec3b pixel = inputimage.at<Vec3b>(y, x);
if (pixel[0] > max[0]){
max[0] = pixel[0];
}
if (pixel[1] > max[1]){
max[1] = pixel[1];
}
if (pixel[2] > max[2]){
max[2] = pixel[2];
}
if (pixel[0] < min[0]){
min[0] = pixel[0];
}
if (pixel[1] < min[1]){
min[1] = pixel[1];
}
if (pixel[2] < min[2]){
min[2] = pixel[2];
}
//sub
if (pixel[0] < pixel[1]){
temp = pixel[1] - pixel[0];
if (temp > maxsub01){
maxsub01 = temp;
}
else if (temp < minsub01)
{
minsub01 = temp;
}
}
else{
temp = pixel[0] - pixel[1];
if (temp > maxsub01){
maxsub01 = temp;
}
else if (temp < minsub01)
{
minsub01 = temp;
}
}
if (pixel[0] < pixel[2]){
temp = pixel[2] - pixel[0];
if (temp > maxsub02){
maxsub02 = temp;
}
else if (temp < minsub02)
{
minsub02 = temp;
}
}
else{
temp = pixel[0] - pixel[2];
if (temp > maxsub02){
maxsub02 = temp;
}
else if (temp < minsub02)
{
minsub02 = temp;
}
}
if (pixel[2] < pixel[1]){
temp = pixel[1] - pixel[2];
if (temp > maxsub12){
maxsub12 = temp;
}
else if (temp < minsub12)
{
minsub12 = temp;
}
}
else{
temp = pixel[2] - pixel[1];
if (temp > maxsub12){
maxsub12 = temp;
}
else if (temp < minsub12)
{
minsub12 = temp;
}
}
//divisons
if (pixel[0] && pixel[1] && pixel[2]){
if (pixel[0] < pixel[1]){
temp = (float) pixel[1] / pixel[0];
if (temp > maxdiv01){
maxdiv01 = temp;
}
else if (temp < mindiv01)
{
mindiv01 = temp;
}
}
else{
temp = (float) pixel[0] / pixel[1];
if (temp > maxdiv01){
maxdiv01 = temp;
}
else if (temp < mindiv01)
{
mindiv01 = temp;
}
}
if (pixel[0] < pixel[2]){
temp = (float) pixel[2] / pixel[0];
if (temp > maxdiv02){
maxdiv02 = temp;
}
else if (temp < mindiv02)
{
mindiv02 = temp;
}
}
else{
temp = (float) pixel[0] / pixel[2];
if (temp > maxdiv02){
maxdiv02 = temp;
}
else if (temp < mindiv02)
{
mindiv02 = temp;
}
}
if (pixel[2] < pixel[1]){
temp = (float) pixel[1] / pixel[2];
if (temp > maxdiv12){
maxdiv12 = temp;
}
else if (temp < mindiv12)
{
mindiv12 = temp;
}
}
else{
temp = (float) pixel[2] / pixel[1];
if (temp > maxdiv12){
maxdiv12 = temp;
}
else if (temp < mindiv12)
{
mindiv12 = temp;
}
}
}
}
}
cout << " MIN: " << min << " MAX: " << max << endl;
cout << " minsub01: " << minsub01 << " maxsub01: " << maxsub01 << " minsub02: " << minsub02 << " maxsub02: " << maxsub02 << " minsub12: " << minsub12 << " maxsub12: " << maxsub12 << endl;
cout << " mindiv01: " << mindiv01 << " maxdiv01: " << maxdiv01 << " mindiv02: " << mindiv02 << " maxdiv02: " << maxdiv02 << " mindiv12: " << mindiv12 << " maxdiv12: " << maxdiv12 << endl;
}
int main() {
Mat inputimage;
const char fileFormatString[] = "C:/Users/eszter.toth/Desktop/captures/road/%02d.JPG";
char fileName[1024];
for (int frameNum = 1;; frameNum++) {
sprintf(fileName, fileFormatString, frameNum);
inputimage = imread(fileName, CV_LOAD_IMAGE_COLOR);
if (!inputimage.data)
{
cout << "Could not open or find the image." << std::endl;
return -1;
}
cout << "RGB: " << endl;
minmax(inputimage);
/*cvtColor(inputimage, inputimage,CV_RGB2HSV);
cout << "HSV: " << endl;
minmax(inputimage);*/
waitKey(1); // just to force image refresh during video saving
}
return 0;
}