您好,登錄后才能下訂單哦!
本篇內容介紹了“如何使用c++實現OpenCV繪制圖形旋轉矩形”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
功能函數
// 繪制旋轉矩形 void DrawRotatedRect(cv::Mat mask,const cv::RotatedRect &rotatedrect,const cv::Scalar &color,int thickness, int lineType) { // 提取旋轉矩形的四個角點 cv::Point2f ps[4]; rotatedrect.points(ps); // 構建輪廓線 std::vector<std::vector<cv::Point>> tmpContours; // 創建一個InputArrayOfArrays 類型的點集 std::vector<cv::Point> contours; for (int i = 0; i != 4; ++i) { contours.emplace_back(cv::Point2i(ps[i])); } tmpContours.insert(tmpContours.end(), contours); // 繪制輪廓,即旋轉矩形 drawContours(mask, tmpContours, 0, color,thickness, lineType); // 填充mask }
測試代碼
#include <iostream> #include <opencv2/opencv.hpp> using namespace std; using namespace cv; void DrawRotatedRect(cv::Mat mask, const cv::RotatedRect &rotatedrect, const cv::Scalar &color,int thickness, int lineType); int main() { cv::Mat src = imread("test.jpg"); cv::Mat result = src.clone(); cv::RotatedRect rorect(cv::Point(src.cols / 2, src.rows / 2), cv::Size(1000, 800), 50); DrawRotatedRect(result, rorect, cv::Scalar(0, 255, 255), 5,16); imshow("original", src); imshow("result", result); waitKey(0); return 0; } // 繪制旋轉矩形 void DrawRotatedRect(cv::Mat mask,const cv::RotatedRect &rotatedrect,const cv::Scalar &color,int thickness, int lineType) { // 提取旋轉矩形的四個角點 cv::Point2f ps[4]; rotatedrect.points(ps); // 構建輪廓線 std::vector<std::vector<cv::Point>> tmpContours; // 創建一個InputArrayOfArrays 類型的點集 std::vector<cv::Point> contours; for (int i = 0; i != 4; ++i) { contours.emplace_back(cv::Point2i(ps[i])); } tmpContours.insert(tmpContours.end(), contours); // 繪制輪廓,即旋轉矩形 drawContours(mask, tmpContours, 0, color,thickness, lineType); // 填充mask }
測試效果
圖1 原圖
圖2 繪制旋轉矩形
繪制旋轉矩形首先需要得到旋轉矩形的位置坐標,我經常配合cv::minAreaRect
函數使用;
得到坐標信息后,結合繪制輪廓線的drawContours
函數,即可完成。
“如何使用c++實現OpenCV繪制圖形旋轉矩形”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。