0
我想將Qt圖像的數據複製到Boost Multi Array中,對Multi Array進行一些操作並將數據複製回QImage進行顯示。在Qt Qimage和Boost Multi Array之間正確複製數據
我正在訪問Qimage::bits()
的原始數據,並試圖複製std::copy
,並且似乎存在數據對齊問題,我不明白。有關於訪問32-bpp圖像的數據的note here,但問題仍然存在,即使我將QImage轉換爲不同的格式。
我已經放在一起說明一個典型問題的片段。可能有很多事情我做錯了,所以請忍受我。在這裏,我想的Image 2上半部分拷貝到Image 1並獲得this output
#include <algorithm>
#include <boost/multi_array.hpp>
#include <QImage>
typedef boost::multi_array<uchar, 3> image_type;
int main() {
QString path = "/path/to/images/";
QImage qimage_1(path + "image1.jpg");
QImage qimage_2(path + "image2.jpg");
image_type bimage_1(boost::extents[qimage_1.width()][qimage_1.height()][4]);
image_type bimage_2(boost::extents[qimage_2.width()][qimage_2.height()][4]);
std::copy(qimage_1.bits(), qimage_1.bits() + qimage_1.width()*qimage_1.height()*4, &bimage_1[0][0][0]);
std::copy(qimage_2.bits(), qimage_2.bits() + qimage_2.width()*qimage_2.height()*4, &bimage_2[0][0][0]);
// copy top half of image 2 to image 1
for(int i = 0; i < qimage_1.width(); i++) {
for(int j = 0; j < qimage_1.height()/2; j++) {
bimage_1[i][j][0] = bimage_2[i][j][0];
bimage_1[i][j][1] = bimage_2[i][j][1];
bimage_1[i][j][2] = bimage_2[i][j][2];
bimage_1[i][j][3] = bimage_2[i][j][3];
}
}
std::copy(&bimage_1[0][0][0], &bimage_1[0][0][0] + bimage_1.num_elements(), qimage_1.bits());
qimage_1.save(path + "output.png");
return 0;
}
我.pro文件只包含SOURCES += main.cpp
任何幫助,非常感謝。