My task is to perform some operations on the roi of an image. But after performing these, I want the changes also to be made visible in the same region of the original image (in code called "image"), not just in the roi as seperate image (which is "image_roi2"). How could I achieve this?
My code looks like this:
Mat image;
Mat image_roi2;
float thresh;
Rect roi = Rect(x, y, widh, height);
Mat image_roi = image(roi);
threshold(image_roi, image_roi2, thresh, THRESH_TOZERO, CV_THRESH_BINARY_INV);