First time here? Check out the FAQ!
answered 2013-03-29 10:05:41 -0600
Simply done by:
Mat image = imread(""); Rect region_of_interest = Rect(x, y, w, h); Mat image_roi = image(region_of_interest);
There you go :)