カラー画像を白黒画像に変換する簡単なプログラムを作成しようとしています。
これまでのところ、私はこれを作っています。
void ObradaSlike::convert_picture_to_bw()
{
QImage image;
image.load(fileModel->fileInfo(listView->currentIndex()).absoluteFilePath());
QSize sizeImage = image.size();
int width = sizeImage.width(), height = sizeImage.height();
QRgb color;
int value;
for (int f1=0; f1<width; f1++) {
for (int f2=0; f2<height; f2++) {
color = image.pixel(f1, f2);
image.setPixel(f1, f2, QColor((qRed(color) + qGreen(color) + qBlue(color))/3).rgb());
}
}
sceneGraphics->clear();
sceneGraphics->addPixmap(QPixmap::fromImage(image));
}
コードは機能するはずですが、問題があります。
このコードの問題は、常に青黒の画像が白黒の画像に挿入されることです。これを修正する方法を知っていますか。
ありがとう。