I have a RealSense::Image
and I want to resize it. I cannot understand from the documentation how to.
I'm coding in C++:
Status result = pSenseManager->AcquireFrame(true);
Intel::RealSense::Image* segmented_image = pSeg->AcquireSegmentedImage();
for example segmented_image
has now a size of 640x480 pixel. I want to resize it. What function should I invoke?