Camera image rendering

I want to implement rendering on a camera image. For example: if there is any wall and closed surface on the camera screen, you can paint that surface by choosing a color from colorPicker. For reference, you can see the dulux renderer .

Can anyone please suggest me how to implement the renderer I explained above?

+3


source to share


1 answer


Dulux Visualizer

uses image processing capabilities. They extract the entire structure of the element from the rendered image and manipulate it - in this case, draw it.

I would suggest you take a look OpenCV

. It will provide the necessary necessary image processing.



OpenCV tutorials

About OpenCV

+1


source







All Articles