我正在尝试将图像划分为网格,并保存单个部分。此刻,我遍历片段编号并获得一个子图像,然后我保存。
有人可以解释如何正确获取子图像吗?我一直关注stackoverflow上的类似帖子,但是我的代码仍然无法通过断言来检查子图像与原始图像的边界。
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。第一个子图像不会破坏程序,但第二个子图像会破坏程序(对于2x2网格,所以结束一块)。我将子图像缩短了10,但仍然破坏了机器。
答案 0 :(得分:3)
下面是您修复的代码,以便将图像分成nxn个图块。
首先,unitWidth
和unitHeight
的计算不正确,这是断言失败的原因。它应该是:
int unitWidth = image.cols / n; // you had image.rows / n;
int unitHeight = image.rows / n; // " " image.cols / n;
此外,如果你想要一个nxn平铺,你需要循环n ^ 2次,而不是n次。 最简单的方法是只有两个循环,一个在另一个里面,一个用于行的n次,另一个用于列的n次循环。
for(int i = 0; i < n; i++) { //i is row index
// inner loop added so that more than one row of tiles written
for(int j = 0; j < n; j++) { // j is col index
//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));
// I didn't understand the above line, as ((i % n)==i and (i / n)==0.
//
Mat subImage = image(Rect(j * unitWidth, i * unitHeight, unitWidth, unitHeight));
ostringstream oss;
oss << i << "_" << j << ".jpg";
string name = oss.str();
imwrite(name, subImage);
}
}
调试此类代码的最简单方法是将Rect作为一个单独的对象,以便打印出x,y,width,height,并根据OpenCV断言消息进行检查。 您是否在调试模式下编译代码?
cv::Rect roi(j * unitWidth, i * unitHeight, unitWidth, unitHeight);
cout << "(i, j) = (" << i << ", " << j << ")" << endl;
cout << "(i %n) = " << i%n << endl;
cout << "(i/n) = " << i/n << endl;
cout << "roi.x = " << roi.x << endl;
cout << "roi.y = " << roi.y << endl;
cout << "roi.width = " << roi.width << endl;
cout << "roi.height = " << roi.height << endl;
Mat subImage = image(roi);
答案 1 :(得分:0)
for(int i = 0; i < n-unitHeight; i++) {
for(int j = 0; j < n-unitWidth; j++) {
...........
...........
...........
}
}