:6.132KB : :1 :2022-10-19 16:23:11
qt5图像处理如果开发者对于本文件有需要的可以参考。
qt5图像处理
该代码是qt5实现的图像处理案例。
void ImgProcessor::ShowZoomIn()
{
if(img.isNull())
return;
QMatrix martix;
martix.scale(2,2);
img = img.transformed(martix);
showWidget->imageLabel->setPixmap(QPixmap::fromImage(img));
}
void ImgProcessor::ShowZoomOut()
{
if(img.isNull())
return;
QMatrix matrix;
matrix.scale(0.5,0.5);
img = img.transformed(matrix);
showWidget->imageLabel->setPixmap(QPixmap::fromImage(img));
}
.
├── ImageProcessor
│ ├── ImageProcessor.pro
│ ├── imgprocessor.cpp
│ ├── imgprocessor.h
│ ├── main.cpp
│ ├── showwidget.cpp
│ └── showwidget.h
└── ImageProcessor.rar
1 directory, 7 files
02-09EAI模块图像处理之图像增强算法
10-19qt5实现类似qq的通讯工具
10-17VC++数字图像处理与工程案例代码
10-16Visual C++ 数字图像处理
10-15QT5开发例程
10-13qt5.14.2自制下载器