我正在尝试使用Python中的OpenCV更改特定视频帧中的像素。
我当前的代码是:

import cv2
cap = cv2.VideoCapture("plane.avi")
cap.set(1, 2) #2- the second frame of my video
res, frame = cap.read()
cv2.imshow("video", frame)
while True:
    ch = 0xFF & cv2.waitKey(1)
    if ch == 27:
        break


我得到了想要的框架,但是我不知道如何获取和更改它的像素。
请提出一种方法。

最佳答案

根据您的问题,您正在尝试使用cv2.seek()阅读第二帧。像素值存储在可变帧中。为了对其进行更改,您可以访问各个像素值。

范例:

cap.set(1, 2)
res, frame = cap.read() #frame has your pixel values

#Get frame height and width to access pixels
height, width, channels = frame.shape

#Accessing BGR pixel values
for x in range(0, width) :
     for y in range(0, height) :
          print (frame[x,y,0]) #B Channel Value
          print (frame[x,y,1]) #G Channel Value
          print (frame[x,y,2]) #R Channel Value

关于python - 如何从特定视频帧读取像素,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55827496/

10-16 04:58