在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.
所以我的问题是,有没有办法从相机中获取视频预览但是可以将其旋转一个角度?