提取照片里的PPT部分

这几天上课老师说ppt不能拷。。。真是不爽,所以我写了一个提取照片里ppt部分的东西,其实原理很简单,代码贴出来大家就知道了,无非就是阈值化+轮廓提取+透视变换,效果还可以,不过我还是想再好一些,如果大家有什么想法请告诉我。

#include<opencv2\opencv.hpp>

using namespace std;
using namespace cv;

int main()
{
	//读取图片并灰度化
	Mat src = imread("C:\\Users\\41608\\Pictures\\PPT\\微信图片_20170524215655.jpg");
	imshow("src", src);
	Mat src_gray;
	cvtColor(src, src_gray, CV_RGB2GRAY);
	//阈值化
	Mat src_th;
	threshold(src_gray, src_th, 200, 255, THRESH_BINARY);
	imshow("src_th", src_th);

	//轮廓提取并剔除其他光亮区域
	Mat contour_image(src_th.size(), CV_8UC1, Scalar(0));
	vector<vector<Point>> contours;
	findContours(src_th, contours, RETR_EXTERNAL, CHAIN_APPROX_SIMPLE);
	namedWindow("contour_image", CV_WINDOW_NORMAL);
	drawContours(contour_image, contours, 40, Scalar(255));
	imshow("contour_image", contour_image);

	cout << contourArea(contours[40]);

	int length = 0;

	//用方形包围轮廓
	int j = 0;
	for (size_t i = 0; i < contours.size(); i++)
	{
		RotatedRect rct = minAreaRect(contours[i]);
		double x = rct.size.width;
		double y = rct.size.height;
		double sx = src.cols;
		double sy = src.rows;

		if ((x / y<1.5 || x / y>0.5) && (x*y>sx*sy / 8))
		{
			j = i;
		}
	}

	Mat result(src_th.size(), CV_8UC1, Scalar(0));
	drawContours(result, contours, j, Scalar(255));
	namedWindow("result", CV_WINDOW_NORMAL);
	imshow("result", result);

	//矩形拟合
	Mat rct_mat(src_th.size(), CV_8UC1, Scalar(0));
	RotatedRect rct = minAreaRect(contours[j]);
	double x = rct.size.width;
	double y = rct.size.height;
	length = (x + y) / 2;
	Point2f vertices[4];
	rct.points(vertices);

	for (size_t i = 0; i < 4; i++)
	{
		line(rct_mat, vertices[i], vertices[(i + 1) % 4], Scalar(255));
	}

	imshow("rct_mat", rct_mat);

	//透视变换
	Mat per_mat(Size(y, x), CV_8UC3, Scalar(0, 0, 0));
	Point2f src_point[4];
	Point2f dst_point[4];
	src_point[0] = vertices[0];
	src_point[1] = vertices[1];
	src_point[2] = vertices[2];
	src_point[3] = vertices[3];

	double sp_x = 0;
	double sp_y = 0;
	sp_x = rct.center.x;
	sp_y = rct.center.y;

	for (size_t i = 0; i < 4; i++)
	{
		if (src_point[i].x >sp_x&&src_point[i].y > sp_y)
		{
			dst_point[i] = Point2f(y, x);
		}
		else if (src_point[i].x > sp_x&&src_point[i].y < sp_y)
		{
			dst_point[i] = Point2f(y, 0);
		}
		else if (src_point[i].x < sp_x&&src_point[i].y > sp_y)
		{
			dst_point[i] = Point2f(0, x);
		}
		else if (src_point[i].x < sp_x&&src_point[i].y < sp_y)
		{
			dst_point[i] = Point2f(0, 0);
		}
	}

	/*dst_point[0]= Point2f(0,length);
	dst_point[1]= Point2f(0,0);
	dst_point[2]= Point2f(length,0);
	dst_point[3]= Point2f(length, length);*/

	Mat warp_mat(3, 3, CV_32FC1);
	warp_mat = getPerspectiveTransform(src_point, dst_point);
	warpPerspective(src, per_mat, warp_mat, per_mat.size());
	imshow("per_mat", per_mat);

	waitKey();

	return 0;
}

最后结果如下图:

原图我把有人的地方模糊了,毕竟不能让人看出来。





希望大家多提意见

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值