项目作者: amorim-cleison

项目描述 :
Utility program created by the Boston University for extracting frames from `.vid` files.
高级语言: SWIG
项目地址: git://github.com/amorim-cleison/asllvd-vid-reader.git
创建时间: 2021-01-30T18:28:44Z
项目社区:https://github.com/amorim-cleison/asllvd-vid-reader

开源协议:

下载


.vid Reader

This code is based on the ‘vid_reader’ created by the Boston University for use with the ASLLVD Dataset. Please refer to this link to find more information:
http://www.bu.edu/asllrp/av/dai-asllvd.html.

What is this?

With this program, you can read a .vid file and extract its frames as .ppm images.

How can I use it?

Once compiled, the following arguments are required by the program, in this order:

  1. Path to the input video (.vid) file
  2. Output directory (where the images will be saved)
  3. Prefix to be added to file names
  4. Start frame
  5. End frame
  6. FPS in (actual frame rate for the video)
  7. FPS out (number of frames/images to extract per second for the video)

Example call, using these arguments:

  1. ./vidReader /path/to/my/video.vid ./path/for/output prefix-s002 5 1000 60 3

How do I compile this project with G++?

Here is the example command line:

  1. g++ -I. bayer.cpp VidHeader.cpp -lz read-frame.cpp main.cpp showErrMsgBox.cpp -o vidReader.exe