gpt4 book ai didi

python - 检测图像矩阵Python OpenCV中半透明黑色矩形区域的位置

转载 作者:太空宇宙 更新时间:2023-11-03 22:50:21 41 4
gpt4 key购买 nike

假设我有这样一张图片:

enter image description here

我想要图像矩阵中黑条的起点和终点的位置

我尝试了几种方法,比如 horizontal line detection in Python OpenCV并提出了以下代码,使我突出显示了这些行:

import cv2
import numpy as np
from numpy import array
from matplotlib import pyplot as plt
import math

img = cv2.imread('caption.jpg')

gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
edges = cv2.Canny(gray, 50, 150, apertureSize = 3)
lines = cv2.HoughLinesP(edges, 1,np.pi/180,350);
for line in lines[0]:
pt1 = (line[0],line[1])
pt2 = (line[2],line[3])
cv2.line(img, pt1, pt2, (0,0,255))



gray = cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)
edges = cv2.Canny(gray,50,150,apertureSize = 3)

print img.shape

lines = cv2.HoughLines(edges,1,np.pi/180,350)

for rho,theta in lines[0]:
a = np.cos(theta)
b = np.sin(theta)
if int(b) == 1: #only horizontal lines with cos theta(theta = 0) = 1
x0 = a*rho
y0 = b*rho
x1 = int(x0 + 1000*(-b))
y1 = int(y0 + 1000*(a))
x2 = int(x0 - 1000*(-b))
y2 = int(y0 - 1000*(a))

cv2.line(img,(x1,y1),(x2,y2),(0,0,255),2)

cv2.imshow('edges', img)
cv2.waitKey(0)
cv2.destroyAllWindows()

结果: enter image description here

如果我尝试 print x1, y1, x2, y2我明白了

-1000 781 999 782 -1000 712 999 713

所以这些显然不是图像矩阵中的位置点,比如 x 是负数。

这些线的起点和终点在图像矩阵中的位置是什么?我需要对该区域的像素执行一些点操作,因此需要起点和终点。 p>

最佳答案

这些行将始终返回 -1000 + 原始点

x1 = int(x0 + 1000*(-b))
x2 = int(x0 - 1000*(-b))

只有当 int(b) == 1:

时你才会进入这个循环

这意味着您需要直接打印 x0,因为上面的行总是 (x0 + (-1000))在这种情况下 x0 是 0,因为它从图片的左侧。

关于python - 检测图像矩阵Python OpenCV中半透明黑色矩形区域的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39321336/

41 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com