Is there a way to store an image with IPL_DEPTH_IMAGE depth on the hdd for later processing? If I save it with cvSaveImage or the cvBlobs render function it gets converted to 8bit and therefore not all labeled are stored ;(
Thanks,
Durin
Is there a way to store an image with IPL_DEPTH_IMAGE depth on the hdd
Share
Have a look at cvFileStorage. It should be able to save the IPL_DEPTH_IMAGE for you.
Here is a short example from OpenCV docs:
Hope you find that helpful!