我想使用 Python OpenCV 在图像上应用收缩/凸出滤镜。结果应该是这个例子的某种形式:
https://pixijs.io/pixi-filters/tools/screenshots/dist/bulge-pinch.gif
我读过以下 stackoverflow 帖子,它应该是过滤器的正确公式:Formulas for Barrel/Pincushion Distortion
但我正在努力在 Python OpenCV 中实现这一点。
我读过有关在图像上应用滤镜的地图:使用 OpenCv-python 的扭曲效果
根据我的理解,代码可能如下所示:
import numpy as np
import cv2 as cv
f_img = 'example.jpg'
im_cv = cv.imread(f_img)
# grab the dimensions of the image
(h, w, _) = im_cv.shape
# set up the x and y maps as float32
flex_x = np.zeros((h, w), np.float32)
flex_y = np.zeros((h, w), np.float32)
# create map with the barrel pincushion distortion formula
for y in range(h):
for x in range(w):
flex_x[y, x] = APPLY FORMULA TO X
flex_y[y, x] = APPLY FORMULA TO Y
# do the remap this is where the magic happens
dst = cv.remap(im_cv, flex_x, flex_y, cv.INTER_LINEAR)
cv.imshow('src', im_cv)
cv.imshow('dst', dst)
cv.waitKey(0)
cv.destroyAllWindows()
这是实现示例图像中呈现的失真的正确方法吗?非常感谢有关有用资源或最好的示例的任何帮助。
摇曳的蔷薇
开满天机
相关分类