gpt4 book ai didi

python - 显示线的底部图像并使用 Opencv 切割上部图像

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

我正在尝试对角线裁剪实时视频。在 cv.line 的帮助下,我提到了尺寸,我的目标是显示我绘制的线下侧的视频,应该裁剪上侧视频,作为初学者,我只能使用以下代码画一条线:

import cv2

cv2.namedWindow("preview")
vc = cv2.VideoCapture(0)

if vc.isOpened(): # try to get the first frame
rval, frame = vc.read()
else:
rval = False

while rval:
cv2.imshow("preview", frame)
rval, frame = vc.read()
key = cv2.waitKey(20)
if key == 27: # exit on ESC
break
else:
cv2.line(img=frame, pt1=(700,5), pt2=(5, 450), color=(255, 0, 0), thickness=1, lineType=8, shift=0)

vc.release()
cv2.destroyWindow("preview")

输出: enter image description here

关于这个的建议会很有帮助

最佳答案

下面的代码会遮住直线上方的点。我在这里添加了评论,这样您就可以了解正在发生的事情。有更快的方法可以做到这一点,但我想要一些易于阅读的方法。

import cv2
import matplotlib.pyplot as plt
import numpy as np

path = r"path\to\img"

img = cv2.imread(path)

#plt.imshow(img)
#plt.show()
pt1 = (86, 0) #ensure this point exists within the image
pt2 = (0, 101) #ensure this point exists within the image
cv2.line(img, pt1, pt2, (255, 255, 255))

#plt.imshow(img)
#plt.show()
#slope of line
m = float(pt2[1] - pt1[1])/float(pt2[0] - pt1[0])
c = pt1[1] - m*pt1[0]
#create mask image
mask1 = np.zeros(img.shape, np.uint8)
#for every point in the image
for x in np.arange(0, 87):
for y in np.arange(0, 102):
#test if point exists above the line,
if y > m*x + c:
mask1[y][x] = (255, 255, 255)


#plt.imshow(mask1)
#plt.show()
fin_img = cv2.merge((img[:, :, 0], img[:, :, 1], img[:, :, 2], mask1[:,:, 0]))
#plt.imshow(fin_img)
#plt.show()

cv2.imwrite('output.png', fin_img)

关于python - 显示线的底部图像并使用 Opencv 切割上部图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55862530/

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