If you want 75% along each axis, you should be able to use cv::resize to do:
cv::resize(inImg, outImg, cv::Size(), 0.75, 0.75);
If you want 75% along each axis, you should be able to use cv::resize to do:
cv::resize(inImg, outImg, cv::Size(), 0.75, 0.75);