OpenCV轮廓检测,计算物体旋转角度

 

效果还是有点问题的,希望大家共同探讨一下

 

 

// FindRotation-angle.cpp : 定义控制台应用程序的入口点。
//

// findContours.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"



#include <iostream>
#include <vector>
#include <opencv2/opencv.hpp> 
#include <opencv2/core/core.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/highgui/highgui.hpp>


#pragma comment(lib,"opencv_core2410d.lib")      
#pragma comment(lib,"opencv_highgui2410d.lib")      
#pragma comment(lib,"opencv_imgproc2410d.lib") 

#define PI 3.1415926

using namespace std;
using namespace cv;



int hough_line(Mat src)
{
	//【1】载入原始图和Mat变量定义   
	Mat srcImage = src;//imread("1.jpg");  //工程目录下应该有一张名为1.jpg的素材图
	Mat midImage,dstImage;//临时变量和目标图的定义

	//【2】进行边缘检测和转化为灰度图
	Canny(srcImage, midImage, 50, 200, 3);//进行一此canny边缘检测
	cvtColor(midImage,dstImage, CV_GRAY2BGR);//转化边缘检测后的图为灰度图

	//【3】进行霍夫线变换
	vector<Vec4i> lines;//定义一个矢量结构lines用于存放得到的线段矢量集合
	HoughLinesP(midImage, lines, 1, CV_PI/180, 80, 50, 10 );

	//【4】依次在图中绘制出每条线段
	for( size_t i = 0; i < lines.size(); i++ )
	{
		Vec4i l = lines[i];
		line( dstImage, Point(l[0], l[1]), Point(l[2], l[3]), Scalar(186,88,255), 1, CV_AA);
	}

	//【5】显示原始图  
	imshow("【原始图】", srcImage);  

	//【6】边缘检测后的图 
	imshow("【边缘检测后的图】", midImage);  

	//【7】显示效果图  
	imshow("【效果图】", dstImage);  

	//waitKey(0);  

	return 0;  
}

int main()
{
	// Read input binary image

	char *image_name = "test.jpg";
	cv::Mat image = cv::imread(image_name,0);
	if (!image.data)
		return 0; 

	cv::namedWindow("Binary Image");
	cv::imshow("Binary Image",image);


	
	// 从文件中加载原图  
	   IplImage *pSrcImage = cvLoadImage(image_name, CV_LOAD_IMAGE_UNCHANGED);  
	  
		   // 转为2值图
		
	 cvThreshold(pSrcImage,pSrcImage,200,255,cv::THRESH_BINARY_INV);
		   
	
	   image = cv::Mat(pSrcImage,true);

	   cv::imwrite("binary.jpg",image);

	// Get the contours of the connected components
	std::vector<std::vector<cv::Point>> contours;
	cv::findContours(image, 
		contours, // a vector of contours 
		CV_RETR_EXTERNAL, // retrieve the external contours
		CV_CHAIN_APPROX_NONE); // retrieve all pixels of each contours

	// Print contours' length
	std::cout << "Contours: " << contours.size() << std::endl;
	std::vector<std::vector<cv::Point>>::const_iterator itContours= contours.begin();
	for ( ; itContours!=contours.end(); ++itContours) 
	{

		std::cout << "Size: " << itContours->size() << std::endl;
	}

	// draw black contours on white image
	cv::Mat result(image.size(),CV_8U,cv::Scalar(255));
	cv::drawContours(result,contours,
		-1, // draw all contours
		cv::Scalar(0), // in black
		2); // with a thickness of 2

	cv::namedWindow("Contours");
	cv::imshow("Contours",result);






	// Eliminate too short or too long contours
	int cmin= 100;  // minimum contour length
	int cmax= 1000; // maximum contour length
	std::vector<std::vector<cv::Point>>::const_iterator itc= contours.begin();
	while (itc!=contours.end()) {

		if (itc->size() < cmin || itc->size() > cmax)
			itc= contours.erase(itc);
		else 
			++itc;
	}

	// draw contours on the original image
	cv::Mat original= cv::imread(image_name);
	cv::drawContours(original,contours,
		-1, // draw all contours
		cv::Scalar(255,255,0), // in white
		2); // with a thickness of 2

	cv::namedWindow("Contours on original");
	cv::imshow("Contours on original",original);

	

	// Let's now draw black contours on white image
	result.setTo(cv::Scalar(255));
	cv::drawContours(result,contours,
		-1, // draw all contours
		cv::Scalar(0), // in black
		1); // with a thickness of 1
	image= cv::imread("binary.jpg",0);

	//imshow("lll",result);
	//waitKey(0);

	// testing the bounding box 
	//
	//霍夫变换进行直线检测,此处使用的是probabilistic Hough transform(cv::HoughLinesP)而不是standard Hough transform(cv::HoughLines)

	cv::Mat result_line(image.size(),CV_8U,cv::Scalar(255));
	result_line = result.clone();

	hough_line(result_line);

	//Mat tempimage;

	//【2】进行边缘检测和转化为灰度图
	//Canny(result_line, tempimage, 50, 200, 3);//进行一此canny边缘检测
	//imshow("canny",tempimage);
	//waitKey(0);

	//cvtColor(tempimage,result_line, CV_GRAY2BGR);//转化边缘检测后的图为灰度图
	vector<Vec4i> lines;

	cv::HoughLinesP(result_line,lines,1,CV_PI/180,80,50,10);

	for(int i = 0; i < lines.size(); i++)
	{
		line(result_line,cv::Point(lines[i][0],lines[i][1]),cv::Point(lines[i][2],lines[i][3]),Scalar(0,0,0),2,8,0);
	}
	cv::namedWindow("line");
	cv::imshow("line",result_line);
	//waitKey(0);

	/
	//

	//std::vector<std::vector<cv::Point>>::const_iterator itc_rec= contours.begin();
	//while (itc_rec!=contours.end())
	//{
	//	cv::Rect r0= cv::boundingRect(cv::Mat(*(itc_rec)));
	//	cv::rectangle(result,r0,cv::Scalar(0),2);
	//		++itc_rec;
	//}

	

	//cv::namedWindow("Some Shape descriptors");
	//cv::imshow("Some Shape descriptors",result);


	CvBox2D     End_Rage2D;
	CvPoint2D32f rectpoint[4];
	CvMemStorage *storage = cvCreateMemStorage(0);  //开辟内存空间


	CvSeq*      contour = NULL;     //CvSeq类型 存放检测到的图像轮廓边缘所有的像素值,坐标值特征的结构体以链表形式

	cvFindContours( pSrcImage, storage, &contour, sizeof(CvContour),CV_RETR_CCOMP, CV_CHAIN_APPROX_NONE);//这函数可选参数还有不少



	for(; contour; contour = contour->h_next)   //如果contour不为空,表示找到一个以上轮廓,这样写法只显示一个轮廓
		//如改为for(; contour; contour = contour->h_next) 就可以同时显示多个轮廓
	{  

		End_Rage2D = cvMinAreaRect2(contour);  
		//代入cvMinAreaRect2这个函数得到最小包围矩形  这里已得出被测物体的角度,宽度,高度,和中点坐标点存放在CvBox2D类型的结构体中,
		//主要工作基本结束。
		for(int i = 0;i< 4;i++)
		{
			  //CvArr* s=(CvArr*)&result;
			//cvLine(s,cvPointFrom32f(rectpoint[i]),cvPointFrom32f(rectpoint[(i+1)%4]),CV_G(0,0,255),2);
			line(result,cvPointFrom32f(rectpoint[i]),cvPointFrom32f(rectpoint[(i+1)%4]),Scalar(125),2);
		} 
		cvBoxPoints(End_Rage2D,rectpoint);
	
	std::cout <<" angle:\n"<<(float)End_Rage2D.angle << std::endl;      //被测物体旋转角度 
	
	}
	cv::imshow("lalalal",result);
	cv::waitKey();
	return 0;


}


 

 

 

 

这个是原来实现的代码的博客文章:

http://blog.csdn.net/wangyaninglm/article/details/41864251

 

 

参考文献:

http://blog.csdn.net/z397164725/article/details/7248096

http://blog.csdn.net/fdl19881/article/details/6730112

http://blog.csdn.net/mine1024/article/details/6044856

### 回答1: OpenCV中的矩(Moment)方法可以通过计算图像的质心来计算旋转角度。以下是使用矩方法计算旋转角度的步骤: 1. 加载图像并将其转换为灰度图像。 2. 通过阈值处理和形态学操作(如闭操作)来提取图像中的目标物体。 3. 使用findContours函数来检测目标物体轮廓计算轮廓的矩。 4. 根据计算出的矩,可以计算出目标物体的质心。 5. 使用moments函数来计算目标物体关于其质心的灯条矩,其中m20、m02和m11是矩阵的一些元素。 6. 利用灯条矩可以计算得到图像的旋转角度。 - 计算tan(2θ) = 2 * m11 / (m20 - m02) - 计算旋转角度θ = 0.5 * atan(tan(2θ)) 通过以上步骤,可以使用OpenCV的矩方法计算得到图像的旋转角度。这种方法适用于检测目标物体旋转角度,例如,旋转矩形或椭圆。它可以在图像处理和计算机视觉领域中被广泛应用,能够提供准确的旋转角度信息。 ### 回答2: 在OpenCV中,可以使用矩方法来计算旋转角度。首先,我们需要定义一个旋转矩阵,可以使用 `getRotationMatrix2D` 函数来实现。该函数需要指定旋转中心点、旋转角度以及缩放因子。然后,可以使用 `warpAffine` 函数来应用旋转矩阵到图像上。 以下是具体的步骤: 1. 导入OpenCV库,并读取图像。 2. 定义旋转中心点,通常是图片的中心点。 3. 定义旋转角度。 4. 定义缩放因子,通常是1。 5. 使用 `getRotationMatrix2D` 函数获取旋转矩阵。 6. 使用 `warpAffine` 函数应用旋转矩阵到图像上。 7. 使用 `cv2.imshow` 函数显示旋转后的图像。 8. 使用 `cv2.waitKey` 函数等待按键操作。 9. 使用 `cv2.destroyAllWindows` 函数关闭窗口。 下面是一个示例代码: ``` import cv2 import numpy as np # 读取图像 image = cv2.imread('image.jpg') # 定义旋转中心 center = (image.shape[1] // 2, image.shape[0] // 2) # 定义旋转角度 angle = 45 # 定义缩放因子 scale = 1 # 获取旋转矩阵 rotationMatrix = cv2.getRotationMatrix2D(center, angle, scale) # 应用旋转矩阵到图像上 rotatedImage = cv2.warpAffine(image, rotationMatrix, (image.shape[1], image.shape[0])) # 显示旋转后的图像 cv2.imshow('Rotated Image', rotatedImage) cv2.waitKey(0) cv2.destroyAllWindows() ``` 以上代码中,我们将图像顺时针旋转45度,并显示旋转后的图像。你可以根据具体需求修改旋转角度和图像路径。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值