如何使用openCV提高Python内视频播放的速度

问题描述 投票:3回答:2

我正在编写一个程序,在视频中绘制一条线,其中遇到栏杆的第一个像素,我的问题是视频播放缓慢。

enter image description here屏幕截图,供视频观看。在视频过程中,相机移近了,但由于速度慢,我必须等待几分钟才能看到变化,但是当拍摄时,它每隔几秒钟移动一次。

我假设问题是for循环在视频的每一帧上运行,但我不确定。

我可以实施哪些解决方案来加速我的计划?

import cv2

cap = cv2.VideoCapture('video.mp4')

while(cap.isOpened()):

    ret, frame = cap.read()
    canny = cv2.Canny(frame, 85, 255)
    height, width = canny.shape

    first_black_array = []

    for x in range(width):
        first_black_pixel_found = 0
        for y in range(height):
            if first_black_pixel_found == 0:
                if canny[y,x] == 255:
                    first_black_array.append(height - y)
                    first_black_pixel_found = 1
                    cv2.line(frame,(x,y),(x,y),(0,255,0),1)

    cv2.imshow('frame',frame)
    if cv2.waitKey(1) & 0xFF == ord('q'):
        break

cap.release()
cv2.destroyAllWindows()

谢谢!

python performance opencv video-capture
2个回答
1
投票

这就是问题...

for x in range(width):
    for y in range(height):
         if canny[y,x] == 255:

Numpy.argmax是解决方案......

for x in range(width-1):
    # Slice the relevant column from the image
    # The image 'column' is a tall skinny image, only 1px thick
    column = np.array(canny[:,x:x+1])
    # Use numpy to find the first non-zero value
    railPoint = np.argmax(column)

完整代码:

import cv2, numpy as np, time
# Get start time
start = time.time()
# Read in the image
img = cv2.imread('/home/stephen/Desktop/rail.jpg')[40:,10:-10]
# Canny filter
canny = cv2.Canny(img, 85, 255)
# Get height and width
height, width = canny.shape
# Create list to store rail points
railPoints = []
# Iterate though each column in the image
for position in range(width-1):
    # Slice the relevant column from the image
    # The image 'column' is a tall skinny image, only 1px thick
    column = np.array(canny[:,position:position+1])
    # Use numpy to find the first non-zero value
    railPoint = np.argmax(column)
    # Add the railPoint to the list of rail points
    railPoints.append(railPoint)
    # Draw a circle on the image
    cv2.circle(img, (position, railPoint), 1, (123,234,123), 2)
cv2.imshow('img', img)                      
k = cv2.waitKey(1)
cv2.destroyAllWindows()
print(time.time() - start)

我使用Numpy的解决方案需要6毫秒,而你的解决方案需要266毫秒。 rail output


0
投票

可能的进一步改进可以是将帧捕获操作放入单独的线程中。由于cv2.VideoCapture().read()是一种阻塞操作,因此在轮询新帧时,您的程序会遇到I / O延迟。目前,主线程轮询帧,然后按顺序处理它。通过专门用于轮询帧的完全不同的线程并让主线程仅关注处理帧,您可以并行执行任务。

© www.soinside.com 2019 - 2024. All rights reserved.