Advanced 3D rendering model

Real time circle shape

In the above image, I use OpenCV to determine the shape of a circle. Then I want to display the 3D circle objects displayed on such circular shapes.

I used to use the MetaIO SDK for marker-based detection, as well as for rendering 3D objects.

Since OpenCV explains image processing, various operators such as Sobel / Canny, Hough Transform, Gaussian filtering, etc., I used this to help me without marker detection.

I can also detect a square, a quadrangle, a triangle. However, I am stuck in the next part of my application, i.e. 3D model rendering. E.g. since the detected shape was a circle, I would like to show this 3D model below.

enter image description here

Please, if someone can share some understanding of how this can be achieved? Is it even possible to integrate MetaIO and OpenCV to get closer to my requirements?

My application should be used on both Android and iOS devices.

Thanks at Advance.

+6
source share
1 answer

When I went through the openCV tutorial, I came across the following URL ... This one actually draws a polygon with 3D effects ...

http://docs.opencv.org/doc/tutorials/imgproc/shapedescriptors/point_polygon_test/point_polygon_test.html#point-polygon-test

3D modeling can also be performed using OpenGL compatibility ... Below is the link URL ...

http://docs.opencv.org/modules/core/doc/opengl_interop.html?highlight=opengl#general-information

+1
source

All Articles