SequenceCapture work.

This commit is contained in:
Tadas Baltrusaitis 2017-11-08 20:08:17 +00:00
parent e8511cd10f
commit a1235efce8
1 changed files with 12 additions and 0 deletions

View File

@ -145,6 +145,18 @@ bool SequenceCapture::Open(std::vector<std::string> arguments)
}
// Based on what was read in open the sequence TODO
if (device != -1)
{
return OpenWebcam(device, 640, 480, fx, fy, cx, cy);
}
if (!input_video_file.empty())
{
return OpenVideoFile(input_video_file, fx, fy, cx, cy);
}
if (!input_sequence_directory.empty())
{
return OpenImageSequence(input_sequence_directory, fx, fy, cx, cy);
}
}