10

如何使用 OpenCV 旋转视频流中的所有帧?我尝试使用类似问题中提供的代码,但它似乎不适用于返回 cv.RetrieveFrame 的 Iplimage 图像对象。

这是我目前拥有的代码:

import cv, cv2
import numpy as np

def rotateImage(image, angle):
    if hasattr(image, 'shape'):
        image_center = tuple(np.array(image.shape)/2)
        shape = image.shape
    elif hasattr(image, 'width') and hasattr(image, 'height'):
        image_center = (image.width/2, image.height/2)
        shape = np.array((image.width, image.height))
    else:
        raise Exception, 'Unable to acquire dimensions of image for type %s.' % (type(image),)
    rot_mat = cv2.getRotationMatrix2D(image_center, angle,1.0)
    result = cv2.warpAffine(image, rot_mat, shape, flags=cv2.INTER_LINEAR)
    return result

cap = cv.CaptureFromCAM(cam_index)
#cap = cv.CaptureFromFile(path)
fps = 24
width = int(cv.GetCaptureProperty(cap, cv.CV_CAP_PROP_FRAME_WIDTH))
height = int(cv.GetCaptureProperty(cap, cv.CV_CAP_PROP_FRAME_HEIGHT))

fourcc = cv.CV_FOURCC('P','I','M','1') #is a MPEG-1 codec

writer = cv.CreateVideoWriter('out.avi', fourcc, fps, (width, height), 1)
max_i = 90
for i in xrange(max_i):
    print i,max_i
    cv.GrabFrame(cap)
    frame = cv.RetrieveFrame(cap)
    frame = rotateImage(frame, 180)
    cv.WriteFrame(writer, frame)

但这只是给出了错误:

  File "test.py", line 43, in <module>
    frame = rotateImage(frame, 180)
  File "test_record_room.py", line 26, in rotateImage
    result = cv2.warpAffine(image, rot_mat, shape, flags=cv2.INTER_LINEAR)
TypeError: <unknown> is not a numpy array

大概是因为 warpAffine 采用 CvMat 而不是 Iplimage。根据C++ cheatsheet,两者之间的转换是微不足道的,但我找不到任何关于在 Python 中做等价的文档。如何在 Python 中将 Iplimage 转换为 Mat?

4

5 回答 5

13

如果您刚刚旋转 180 度,则可以Flip在两个轴上使用,

代替:

frame = rotateImage(frame, 180)

和:

cv.Flip(frame, flipMode=-1)

这是'到位',所以它很快,你将不再需要你的rotateImage功能:)

例子:

import cv
orig = cv.LoadImage("rot.png")
cv.Flip(orig, flipMode=-1)
cv.ShowImage('180_rotation', orig)
cv.WaitKey(0)

这: 在此处输入图像描述变成,这:在此处输入图像描述

于 2012-05-12T01:59:05.730 回答
3

通过反复试验,我最终找到了解决方案。

import cv, cv2
import numpy as np

def rotateImage(image, angle):
    image0 = image
    if hasattr(image, 'shape'):
        image_center = tuple(np.array(image.shape)/2)
        shape = tuple(image.shape)
    elif hasattr(image, 'width') and hasattr(image, 'height'):
        image_center = tuple(np.array((image.width/2, image.height/2)))
        shape = (image.width, image.height)
    else:
        raise Exception, 'Unable to acquire dimensions of image for type %s.' % (type(image),)
    rot_mat = cv2.getRotationMatrix2D(image_center, angle,1.0)
    image = np.asarray( image[:,:] )

    rotated_image = cv2.warpAffine(image, rot_mat, shape, flags=cv2.INTER_LINEAR)

    # Copy the rotated data back into the original image object.
    cv.SetData(image0, rotated_image.tostring())

    return image0
于 2012-05-12T01:07:50.583 回答
2

你不需要使用warpAffine(),看看transpose()flip()

这篇文章演示了如何将图像旋转 90 度。

于 2012-05-11T21:47:37.570 回答
2

这对我有用:

gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
flipped = cv2.flip(gray, flipCode = 1)
cv2.imshow('frame',flipped)

更多关于翻转码

于 2020-01-26T07:46:04.480 回答
0

开放式简历。版本= 3.4.2

_, frame = cap.read() frame = cv2.rotate(frame, cv2.ROTATE_90_CLOCKWISE)

于 2020-07-26T21:14:34.230 回答