I'm trying to divide an image into a grid, and save the individual pieces. At the moment I loop through the piece number and get a sub-image, which I then save.
Can someone explain how to get the sub-images properly? I've been following similar posts on stackoverflow, but my code keeps failing an assertion which checks the bounds of the sub-image vs. the original.
int unitWidth = image.rows / n;
int unitHeight = image.cols / n;
for(int i=0; i<n; i++) {
//Take the next tile in the nxn grid. Unit is the width and height of
//each tile. i%n and i/n are just fancy ways of a double x,y for loop
Mat subImage = image(Rect((i % n) * unitWidth, (i / n) * unitHeight, unitWidth,unitHeight));
ostringstream oss;
oss << i << "_" << n << ".jpg";
string name = oss.str();
imwrite(name, subImage);
}
p.s. the first subimage doesn't break the program, but the second does (for a 2x2 grid, so an end piece). I've shortening the sub-image by 10, but that still broke the machine.
Below is your code fixed so that it breaks the image into nxn tiles.
Firstly you calculation of
unitWidth
andunitHeight
is incorrect, and that is the cause of the assertion failure. It should be:Furthermore, if you want an nxn tiling, you need to loop n^2 times, not just n times. THe easiest way to do this is to just have two loops, one inside the other, one loping n times for the rows and the other looping n times for the columns.
The easiest way to debug code like this is to make the Rect a separate object so that you can print out its x,y,width,height and check them against the OpenCV assertion message. Have you compile your code in debug mode?