用例是一个以车辆为起点的 2D 地图。如果车辆移动例如 0.5 像素,则地图也应进行平移。我相信使用双线性插值或类似方法应该是可行的。
如果没有使用 Qt 的简单解决方案,我将不胜感激对非 Qt 解决方案的提示。
最小的例子:
#include <QtWidgets/QApplication>
#include <QtGui/QImage>
#include <QLabel>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
// Parameters
QString PATH_IMG_IN = "../img_test_rect.jpg";
QString PATH_IMG_OUT = "../img_out.png";
float TRANSLATE_IN_PX = 0.5;
// load image
QImage img;
img.load(PATH_IMG_IN);
// rotate image.
QTransform trans;
trans.translate(0,TRANSLATE_IN_PX);
QImage img_new = img.transformed(trans, Qt::SmoothTransformation);
// save image
img_new.save(PATH_IMG_OUT, nullptr, 100);
// optional: Get info about true transformation matrix
QTransform trans_true = QImage::trueMatrix(trans, img.width(), img.height());
return app.exec();
}
给定具有清晰边界的输入图像(见下文),我希望输出图像具有模糊的边界。不是这种情况:
如何解决?