在Matlab中旋转视频预览

时间:2015-03-11 11:02:02

标签: matlab stream rotation preview

在Matlab中,我可以使用以下命令从相机预览: preview(obj,himage)将预览流放入himage。

在我的代码中,我有一个包含视频预览的轴,但我想将视频旋转90度。 这可能是非常愚蠢的,但我无法弄清楚是如何完成的。

我的代码如下:

prevHaxes = axes('Parent', mainFig);

previewImage= imagesc(placeholderImg,'Parent', prevHaxes); %Placeholder for when the stream is off

preview(video_obj, previewImage);

我试过使用imrotate,但是我收到了以下错误:

Expected input number 1, input image, to be one of these types:

numeric, logical

Instead its type was matlab.graphics.primitive.Image.

所以我的问题是,有没有办法从相机中获取视频预览但是可以将其旋转一个角度?

0 个答案:

没有答案