summaryrefslogtreecommitdiff
path: root/straighten-img.cpp
blob: 2b83b85c9b699e44a4d8452d1de3e37c5bd9e59f (plain)
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
/*
straighten-img.cpp
Draw a line on an image and the image rotates so that the line is horizontal

Author:  Nash 
Website: http://opencv-code.com/tutorials/straighten-up-an-image/

Usage:
1. Click to set the start point.
2. Drag your mouse.
3. Click to set the end point.
4. The corrected image will be displayed.
5. Click the original image again to restart.
6. Press 'q' to quit.
*/

#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <cmath>
#include <iostream>

cv::Mat im0, im1;
std::vector<cv::Point> pt;

void straighten_image(std::vector<cv::Point> pt)
{
	double angle = std::atan((double)(pt[0].y - pt[1].y) / 
	                                 (pt[0].x - pt[1].x)) * 
	                                 (180 / CV_PI);

	cv::Point2f center(im0.cols/2., im0.rows/2.);
	cv::Mat dst, r = cv::getRotationMatrix2D(center, angle, 1.0);
	cv::warpAffine(im0, dst, r, im0.size());
	cv::imshow("dst", dst);
	cv::imwrite("src.jpg", im1);
	cv::imwrite("dst.jpg", dst);
}

void on_mouse(int event, int x, int y, int flags, void* param)
{
	if (event == CV_EVENT_LBUTTONDOWN)
	{
		switch (pt.size())
		{
			case 0:
				pt.push_back(cv::Point(x,y));
				break;
			case 1:
				pt.push_back(cv::Point(x,y));
				straighten_image(pt);
				break;
			case 2:
				im1 = im0.clone();
				pt.clear();
				break;
		}
	}
	else if (event == CV_EVENT_MOUSEMOVE && pt.size() == 1)
	{
		im1 = im0.clone();
		cv::line(im1, pt[0], cv::Point(x,y), CV_RGB(255,0,0), 2);
	}

	if (im1.data)
		cv::imshow("src", im1);
}

int main(int argc, char** argv)
{
	im0 = cv::imread(argv[1]);
	if (!im0.data)
	{
		std::cout << "Cannot load source image!" << std::endl;
		return -1;
	}

	cv::namedWindow("src", CV_WINDOW_AUTOSIZE);
	cv::setMouseCallback("src", on_mouse, 0);
	cv::imshow("src", im0);
	cv::waitKey();
	return 0;
}