-
Notifications
You must be signed in to change notification settings - Fork 596
/
smoothing.cpp
57 lines (41 loc) · 1.61 KB
/
smoothing.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
#include <opencv2/opencv.hpp>
#include <iostream>
using namespace std;
using namespace cv;
const int max_value_H = 360/2;
const int max_value = 255;
int main()
{
string image_path1 = "/home/nicolai/computerVision/images_1/images/BabyFood/BabyFood-Test6.JPG";
string image_path2 = "/home/nicolai/computerVision/images_1/images/redHats.jpg";
string image_path3 = "/home/nicolai/computerVision/images_1/images/redHatSimple.jpg";
Mat image1 = imread(image_path1, IMREAD_COLOR);
resize(image1, image1, {500,500});
if(image1.empty())
{
cout << "Could not read the image: " << endl;
return 1;
}
vector<int> lower_bound = {170,80,50};
int low_H = lower_bound[0], low_S = lower_bound[1], low_V = lower_bound[2];
int high_H = max_value_H, high_S = max_value, high_V = max_value;
Mat hsvImg, imgThreshold;
// Convert from BGR to HSV colorspace
cvtColor(image1, hsvImg, COLOR_BGR2HSV);
// Detect the object based on HSV Range Values
inRange(hsvImg, Scalar(low_H, low_S, low_V), Scalar(high_H, high_S, high_V), imgThreshold);
/*Mat medianBlurImg, guassianBlurImg;
medianBlur(astro2, medianBlurImg, 9);
GaussianBlur(astro2, guassianBlurImg, Size(1,1), 9, 9);
imshow("Original Image", image1);
imshow("Median Blurred Image", medianBlurImg);
imshow("Guassian Blurred Image", guassianBlurImg);*/
imshow("Original Image", image1);
imshow("Hsv Image", hsvImg);
imshow("Threshold Image", imgThreshold);
int k = waitKey(0); // Wait for a keystroke in the window
if(k == 'q'){
destroyAllWindows();
}
return 0;
}