qt图像处理技术四:图像二值化
github
如果你觉得有用的话,期待你的小星星 github:https://github.com/dependon/QImageFilter/tree/main //qt美颜滤镜(不使用opencv) 实战应用项目: github :https://github.com/dependon/simple-image-filter //纯qt图像处理项目
效果
原理
rgb 每一点取rgb的平均值, 当平均值>128,设置点为255,255,255 当平均值<128,设置点为0,0,0
源码
QImage Binaryzation(const QImage &origin)
{
int width = origin.width();
int height = origin.height();
QImage newImg = QImage(width, height, QImage::Format_RGB888);
for (int x = 0; x < width; x++) {
for (int y = 0; y < height; y++) {
int gray = qGray(origin.pixel(x, y));
int newGray;
if (gray > 128)
newGray = 255;
else
newGray = 0;
newImg.setPixel(x, y, qRgb(newGray, newGray, newGray));
}
}
return newImg;
}
|