opencv
ビデオの作成
サーチ…
前書き
ビデオフィードを扱うときは、最終的には画像処理結果を新しいビデオファイルの形式で保存したいことがあります。簡単なビデオ出力のために、これ用に設計されたOpenCV組み込みのVideoWriterクラスを使用することができます。いくつかの概念を使用する前にそれを見ておくと便利です。これらのコンセプトはコーデック、すなわちデコーダとFourCC(4文字コード)です。
OpenCV(Java)によるビデオの作成
VideoWriter videoWriter;
videoWriter = new VideoWriter(outputFile, VideoWriter.fourcc('x', '2','6','4'),
fps, frameSize, isRGB);
//We have stated that we will use x264 as codec with FourCC
//For writing, we add the following method and it will write the image we give as parameter in this call.
public void Write(Mat frame) {
if(videoWriter.isOpened()==false){
videoWriter.release();
throw new IllegalArgumentException("Video Writer Exception: VideoWriter not opened,"
+ "check parameters.");
}
//Write video
videoWriter.write(frame);
}
//With Video Capture for example, we can read images from the camera and write the same video
VideoCapture videoCapture = new VideoCapture(0);
Size frameSize = new Size((int) videoCapture.get(Videoio.CAP_PROP_FRAME_WIDTH), (int) videoCapture.get(Videoio.CAP_PROP_FRAME_HEIGHT));
VideoWriter videoWriter = new VideoWriter("test.avi", VideoWriter.fourcc('x', '2','6','4'),
videoCapture.get(Videoio.CAP_PROP_FPS), frameSize, true);
while (videoCapture.read(mat)) {
videoWriter.write(mat);
}
videoCapture.release();
videoWriter.release();
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow