I have a university work in C#: to make a 3D approximation from a single scenery photo, at least a crude one, and I am not allowed to use libraries for image segmentation.
At this point, I have a function that segments image into colored segments and assigns color of the segment's root to all points in the segment for better distinction, like so: badly segmented image on puush
Given such segmented image, is it possible to find contour points for these colored segments using EmguCV ? My current aim is to try and use EmguCV to find segment contour points, assign them to lists and then use resulting polygons in SharpGL to make 3D scene.