In the past few days I have searched all over google for a clear explanation on how to face my project's last and great challenge in order to finish it.
I have an array of opencv colored Mat, each represents one slice of a 3d-model. And I need to be able to display a 3d-model build from these slices.
(I can undo the entire use of opencv because I have the rgb and (x,y,z)-values of all pixels , I just thought it would be easier to transform openCV::Mat to another external library's object in order to build the volume).
To be more clear, I have an RGB value and (x,y,z) position for every pixel that will construct the 3d-model and I need a way to display them all together as a 3d-model.(I think that means to build a volume but I'm not sure)...
Any use of external library is allowed and recommended.
I'm working on visual studio 2013(community version) and writing on C++.