-
Notifications
You must be signed in to change notification settings - Fork 0
/
Source.cpp
64 lines (47 loc) · 1.36 KB
/
Source.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
/*
-------------Globalny próg na podstawie minimalizacji wariancji (Otsu)----------------
Nale¿y obliczyæ histogram dla obrazu oraz zaimplementowaæ algorytm binaryzacji Otsu.
Operacja przeprowadzana bêdzie na obrazie w skali szaroœci.
Nale¿y przedyskutowaæ skutecznoœæ algorytmu (wskazaæ klasê obrazów dla których algorytm dzia³a najlepiej).
Definicja ROI, Parametry obliczania histogramu
*/
#include "Binarization.h"
#include "Interface.h"
using namespace std;
using namespace cv;
void RGB2GRAY(Mat &input, Mat &output)
{
output = Mat(input.rows, input.cols, CV_8UC1); //create mat with the same size like input image and 1 channel (gray image)
for (int i = 0; i < input.rows; i++)
{
for (int j = 0; j < input.cols; j++)
{
output.at<uchar>(i, j) = 1.0 / 3.0 * (double)(input.at<Vec3b>(i, j)[0]+ input.at<Vec3b>(i, j)[1]+ input.at<Vec3b>(i, j)[2]);
}
}
}
int main()
{
Mat inputImg;
inputImg = imread("C://Users/Mikolaj/Pictures/image.jpg"); //path to image
// check how many channels have input image (3-RGB, 1-gray)
int channels = inputImg.channels();
switch (channels)
{
case 1: //input image is gray
{
ROI(inputImg);
break;
}
case 3: //input image is RGB
{
Mat gray;
RGB2GRAY(inputImg, gray);
ROI(gray);
break;
}
default:
break;
}
return 0;
}