您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了c++如何計算矩形重疊面積,內容簡而易懂,希望大家可以學習一下,學習完之后肯定會有收獲的,下面讓小編帶大家一起來看看吧。
在圖像處理中,經常需要計算兩個矩形的重疊面積,在 python 中,可以使用 shapely 包中的 Polygon 函數,但是到了 c++ 沒有想象中的那么簡單。
查閱了很多資料,基本上都是判斷兩個矩形是否包含來計算,但是兩個矩形的相交情況太多了,每個方法我都擔心考慮不全,所以想了一個在畫布上畫出矩形框,然后通過計算白點數或者輪廓的方法來計算面積。
但是就算用了這個方法,求取真正的重疊面積還差一個像素點,是否要加數值為1這個偏移量需要根據矩形的重疊情況來確定,這里不寫的那么精細,不考慮1個像素點的偏移。
所以本方法適合于計算重疊率,而不是重疊面積,因為重疊面積會根據矩形重疊情況的不同差0個或1個像素值。
#include <iostream> #include <opencv2/opencv.hpp> using namespace std; using namespace cv; int main() { // 1. 新建一個畫布,把矩形畫在畫布上, 注意,矩形一定要在畫布里面,不能在畫布外面或者邊上 Mat canvaCaluateRectangleOverlap(100, 100, CV_8UC1, Scalar(0, 0, 0)); // 2. 把兩個矩形都畫在畫布上 Rect rect1 = Rect(10, 10, 20, 20); Rect rect2 = Rect(20, 20, 20, 30); //為了使用fillPoly填充畫布需要生成Point Point rect1Point[1][4]; rect1Point[0][0] = Point(rect1.x, rect1.y); rect1Point[0][1] = Point(rect1.x + rect1.width, rect1.y); rect1Point[0][2] = Point(rect1.x + rect1.width, rect1.y + rect1.height); rect1Point[0][3] = Point(rect1.x, rect1.y + rect1.height); // 以下是用輪廓法計算矩形面積的方法,可以看看,但是實際使用當然還是 width*height //vector<Point> rect1Contours; //rect1Contours.push_back(Point(10, 10)); //rect1Contours.push_back(Point(30, 10)); //rect1Contours.push_back(Point(30, 30)); //rect1Contours.push_back(Point(10, 30)); //int rect1ContourArea = contourArea(rect1Contours); //cout << "rect1ContourArea : " << rect1ContourArea << endl; const Point* pointConst1[1] = { rect1Point[0] }; int npt[] = { 4 }; fillPoly(canvaCaluateRectangleOverlap, pointConst1, npt, 1, Scalar(255, 255, 255)); Point rect2Point[1][4]; rect2Point[0][0] = Point(rect2.x, rect2.y); rect2Point[0][1] = Point(rect2.x + rect2.width, rect2.y); rect2Point[0][2] = Point(rect2.x + rect2.width, rect2.y + rect2.height); rect2Point[0][3] = Point(rect2.x, rect2.y + rect2.height); const Point* pointConst2[1] = { rect2Point[0] }; fillPoly(canvaCaluateRectangleOverlap, pointConst2, npt, 1, Scalar(255, 255, 255)); // 3. 找出畫布的輪廓 vector<vector<Point> > canvaContours; vector<Vec4i> hierarchy; findContours(canvaCaluateRectangleOverlap, canvaContours, hierarchy, RETR_EXTERNAL, CHAIN_APPROX_SIMPLE, Point(0, 0)); // 修正結果的偏移量,會差1個或0個像素,這里不考慮這個,大家有時間可以列舉出每種情況計算出來 int offset = 0; // 4. 對畫布輪廓進行判斷 (如果輪廓數等于1并且這兩個矩形不是相鄰就可以證明矩形是相交的) if (canvaContours.size() == 1 && rect1.x+rect1.width != rect2.x && rect2.x+rect2.width != rect1.x && rect1.y+rect1.height != rect2.y && rect2.y+rect2.height != rect1.y) { // 當矩形相交時,用計算輪廓面積的方法計算出相交多邊形的面積(注意,這邊會差0個或1個偏移量,所以本方式最適合計算重疊率,一個近似的數) int canvaContourArea = contourArea(canvaContours[0]) + offset; // 重疊的面積數 = 兩個矩形面積的交集 - 兩個矩形面積的并集 (要理解這個,好好去畫圖你就明白了) int rectangleOveralpArea = rect1.width * rect1.height + rect2.width * rect2.height - canvaContourArea; cout << "The two rectangles are overlapping. " << endl; cout << "retangleOverlapArea = " << rectangleOveralpArea << endl; } else { cout << "The two rectangles do not overlap. " << endl; } return 0; }
矩形重疊的方式很多,如下所示一部分
以上就是關于c++如何計算矩形重疊面積的內容,如果你們有學習到知識或者技能,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。