【发布时间】:2016-11-14 15:31:06
【问题描述】:
我有一个数字形式的原始页面和同一页面的多个扫描版本。我的目标是对扫描的页面进行纠偏,使其尽可能与原始页面匹配。我知道我可以使用here 中描述的概率霍夫变换来修复旋转,但扫描的纸张尺寸也不同,因为有些人将页面缩放为不同的纸张格式。我认为 OpenCV 中的 findHomography() 函数结合 SIFT/SURF 的关键点正是我解决这个问题所需要的。但是,我就是无法让我的去偏移()函数工作。
我的大部分代码来自以下两个来源: http://www.learnopencv.com/homography-examples-using-opencv-python-c/ 和 http://docs.opencv.org/3.1.0/d1/de0/tutorial_py_feature_homography.html。
import numpy as np
import cv2
from matplotlib import pyplot as plt
# FIXME: doesn't work
def deskew():
im_out = cv2.warpPerspective(img1, M, (img2.shape[1], img2.shape[0]))
plt.imshow(im_out, 'gray')
plt.show()
# resizing images to improve speed
factor = 0.4
img1 = cv2.resize(cv2.imread("image.png", 0), None, fx=factor, fy=factor, interpolation=cv2.INTER_CUBIC)
img2 = cv2.resize(cv2.imread("imageSkewed.png", 0), None, fx=factor, fy=factor, interpolation=cv2.INTER_CUBIC)
surf = cv2.xfeatures2d.SURF_create()
kp1, des1 = surf.detectAndCompute(img1, None)
kp2, des2 = surf.detectAndCompute(img2, None)
FLANN_INDEX_KDTREE = 0
index_params = dict(algorithm=FLANN_INDEX_KDTREE, trees=5)
search_params = dict(checks=50)
flann = cv2.FlannBasedMatcher(index_params, search_params)
matches = flann.knnMatch(des1, des2, k=2)
# store all the good matches as per Lowe's ratio test.
good = []
for m, n in matches:
if m.distance < 0.7 * n.distance:
good.append(m)
MIN_MATCH_COUNT = 10
if len(good) > MIN_MATCH_COUNT:
src_pts = np.float32([kp1[m.queryIdx].pt for m in good
]).reshape(-1, 1, 2)
dst_pts = np.float32([kp2[m.trainIdx].pt for m in good
]).reshape(-1, 1, 2)
M, mask = cv2.findHomography(src_pts, dst_pts, cv2.RANSAC, 5.0)
matchesMask = mask.ravel().tolist()
h, w = img1.shape
pts = np.float32([[0, 0], [0, h - 1], [w - 1, h - 1], [w - 1, 0]]).reshape(-1, 1, 2)
dst = cv2.perspectiveTransform(pts, M)
deskew()
img2 = cv2.polylines(img2, [np.int32(dst)], True, 255, 3, cv2.LINE_AA)
else:
print("Not enough matches are found - %d/%d" % (len(good), MIN_MATCH_COUNT))
matchesMask = None
# show matching keypoints
draw_params = dict(matchColor=(0, 255, 0), # draw matches in green color
singlePointColor=None,
matchesMask=matchesMask, # draw only inliers
flags=2)
img3 = cv2.drawMatches(img1, kp1, img2, kp2, good, None, **draw_params)
plt.imshow(img3, 'gray')
plt.show()
【问题讨论】:
-
我做了类似的here 可能会有所帮助。
-
@MartinEvans 谢谢,这很相似,但我需要将倾斜的图像尽可能与原始图像对齐。我刚刚发现这个 Mathlab tutorial 正好解决了我的问题,但不幸的是我没有得到第 5 步。你知道如何调整我的示例代码以使其工作吗?
标签: python opencv computer-vision