How would I draw a CvBox2D in OpenCV?
Is there any similar function to cvRectangle?
CODE EXAMPLES WOULD BE APPRECIATED
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There isn’t a function like cvRectangle for CvBox2D. This is the structure of CvBox2D:
You can use cvBoxPoints to get the points of the rectangle and then draw the rectangle as a set of lines.
You can even use cvPolyLine to draw the lines easier.