我正在尝试在 C++ 和 OpenCV 中实现图像变形。我的代码如下:
Mat input = imread("Lena.jpg",CV_LOAD_IMAGE_GRAYSCALE);
Mat out;
double xo, yo;
input.convertTo(input, CV_32FC1);
copyMakeBorder(input, input, 3, 3, 3, 3, 0);
int height = input.rows;
int width = input.cols;
out = Mat(height, width, input.type());
for(int j = 0; j < height; j++){
for(int i =0; i < width; i++){
xo = (8.0 * sin(2.0 * PI * j / 128.0));
yo = (8.0 * sin(2.0 * PI * i / 128.0));
out.at<float>(j,i) = (float)input.at<float>(((int)(j+yo+height)%height),((int)(i+xo+width)%width));
}
}
normalize(out, out,0,255,NORM_MINMAX,CV_8UC1);
imshow("output", out);
这将产生以下图像:
由于清晰可见,边界附近的值非零。谁能告诉我如何获得如下图所示的黑色边框,而不是从我的代码中获得的工件?
应该只考虑该图像的黑色边框,即图像应该是波浪形的(正弦曲线)但没有伪影。
谢谢...