2017-04-11 60 views
0

opencvで回転した矩形をC++で描画します。私は"rectangle"機能怒鳴るように使用:opencvで回転した矩形を描くC++

rectangle(RGBsrc, vertices[0], vertices[2], Scalar(0, 0, 0), CV_FILLED, 8, 0); 

が、この関数は0の角度で四角形を描画します。 opencvで特別な角度の回転矩形をC++で描画するにはどうすればよいですか?

+1

あなたが回転した矩形の4つの隅の間に4本の別々の線を描画する必要があります。 – sgarizvi

+0

[THIS PAGE](http://docs.opencv.org/trunk/db/dd6/classcv_1_1RotatedRect.html)が役立つ可能性があります –

答えて

1

あなたが塗りつぶされた四角形をしたいので、あなたはfillConvexPolyを使用する必要があります。

// Include center point of your rectangle, size of your rectangle and the degrees of rotation 
void DrawRotatedRectangle(cv::Mat& image, cv::Point centerPoint, cv::Size rectangleSize, double rotationDegrees) 
{ 
    cv::Scalar color = cv::Scalar(255.0, 255.0, 255.0) // white 

    // Create the rotated rectangle 
    cv::RotatedRect rotatedRectangle(centerPoint, rectangleSize, rotationDegrees); 

    // We take the edges that OpenCV calculated for us 
    cv::Point2f vertices2f[4]; 
    rotatedRectangle.points(vertices2f); 

    // Convert them so we can use them in a fillConvexPoly 
    cv::Point vertices[4];  
    for(int i = 0; i < 4; ++i){ 
     vertices[i] = vertices2f[i]; 
    } 

    // Now we can fill the rotated rectangle with our specified color 
    cv::fillConvexPoly(image, 
         vertices, 
         4, 
         color); 
}