【发布时间】:2020-04-06 15:16:42
【问题描述】:
我有一张名片。我想从带有坐标的名片中获取徽标和所有文本。所以我可以使上传的图像在 HTML Canvas 上可编辑。我看过很多例子,但我找不到我正在寻找的确切例子。我只发现从图像中获取文本。我也尝试使用 Google Vision API,但它也只提供文本。 我是 python 新手。
这是一个示例图像。
在以下代码中,我必须选择要提取的徽标。我需要它自动查找和提取。
# import the necessary packages
import argparse
import cv2
# initialize the list of reference points and boolean indicating
# whether cropping is being performed or not
ref_point = []
cropping = False
def shape_selection(event, x, y, flags, param):
# grab references to the global variables
global ref_point, cropping
# if the left mouse button was clicked, record the starting
# (x, y) coordinates and indicate that cropping is being
# performed
if event == cv2.EVENT_LBUTTONDOWN:
ref_point = [(x, y)]
cropping = True
# check to see if the left mouse button was released
elif event == cv2.EVENT_LBUTTONUP:
# record the ending (x, y) coordinates and indicate that
# the cropping operation is finished
ref_point.append((x, y))
cropping = False
# draw a rectangle around the region of interest
cv2.rectangle(image, ref_point[0], ref_point[1], (0, 255, 0), 2)
cv2.imshow("image", image)
# construct the argument parser and parse the arguments
ap = argparse.ArgumentParser()
ap.add_argument("-i", "--image", required=True, help="Path to the image")
args = vars(ap.parse_args())
# load the image, clone it, and setup the mouse callback function
image = cv2.imread(args["image"])
clone = image.copy()
cv2.namedWindow("image")
cv2.setMouseCallback("image", shape_selection)
# keep looping until the 'q' key is pressed
while True:
# display the image and wait for a keypress
cv2.imshow("image", image)
key = cv2.waitKey(1) & 0xFF
# if the 'r' key is pressed, reset the cropping region
if key == ord("r"):
image = clone.copy()
# if the 'c' key is pressed, break from the loop
elif key == ord("c"):
break
# if there are two reference points, then crop the region of interest
# from teh image and display it
if len(ref_point) == 2:
crop_img = clone[ref_point[0][1]:ref_point[1][1], ref_point[0][0]:ref_point[1][0]]
cv2.imshow("crop_img", crop_img)
cv2.waitKey(0)
# close all open windows
cv2.destroyAllWindows()
【问题讨论】:
-
请参加游览 (stackoverflow.com/tour) 并阅读帮助中心 (stackoverflow.com/help) 中的信息指南,特别是“如何提出一个好问题”(stackoverflow.com/help/how-to-ask) 和“如何创建一个最小的、可重现的示例”(stackoverflow.com/help/minimal-reproducible-example)。
-
@fmw42 嗨,我已经添加了我尝试过的代码。请帮我解决这个问题。我从过去的 1 个半月开始尝试,但仍然没有运气。我几乎尝试了互联网上所有可用的代码。
-
@fmw42 等待您的答复。
-
我没有什么好的解决办法
标签: python opencv ocr html2canvas google-vision