我从 iPhone 拍摄视频并将每一帧从彩色转换为灰度,但是,在 OpenCV(4.1,C++)中,视频似乎旋转了 90 度
同样的问题没有出现在 MATLAB 或 VLC 播放器上(当我检查时)
示例代码
// frame
Mat current_frame;
VideoCapture capture("file_name.mov");
// Check - video file does not open for reading
if (!capture.isOpened())
throw "Error when reading steam_avi";
capture >> current_frame;