Merge pull request #68 from Gijom/master
Added the possibility to change the output videos codec
This commit is contained in:
commit
235785298d
5 changed files with 42 additions and 8 deletions
|
@ -193,7 +193,8 @@ int main (int argc, char **argv)
|
||||||
|
|
||||||
// Indicates that rotation should be with respect to world or camera coordinates
|
// Indicates that rotation should be with respect to world or camera coordinates
|
||||||
bool u;
|
bool u;
|
||||||
LandmarkDetector::get_video_input_output_params(files, depth_directories, out_dummy, output_video_files, u, arguments);
|
string output_codec;
|
||||||
|
LandmarkDetector::get_video_input_output_params(files, depth_directories, out_dummy, output_video_files, u, output_codec, arguments);
|
||||||
|
|
||||||
// The modules that are being used for tracking
|
// The modules that are being used for tracking
|
||||||
LandmarkDetector::CLNF clnf_model(det_parameters.model_location);
|
LandmarkDetector::CLNF clnf_model(det_parameters.model_location);
|
||||||
|
@ -297,7 +298,14 @@ int main (int argc, char **argv)
|
||||||
cv::VideoWriter writerFace;
|
cv::VideoWriter writerFace;
|
||||||
if (!output_video_files.empty())
|
if (!output_video_files.empty())
|
||||||
{
|
{
|
||||||
writerFace = cv::VideoWriter(output_video_files[f_n], CV_FOURCC('D', 'I', 'V', 'X'), 30, captured_image.size(), true);
|
try
|
||||||
|
{
|
||||||
|
writerFace = cv::VideoWriter(output_video_files[f_n], CV_FOURCC(output_codec[0], output_codec[1], output_codec[2], output_codec[3]), 30, captured_image.size(), true);
|
||||||
|
}
|
||||||
|
catch(cv::Exception e)
|
||||||
|
{
|
||||||
|
WARN_STREAM( "Could not open VideoWriter, OUTPUT FILE WILL NOT BE WRITTEN. Currently using codec " << output_codec << ", try using an other one (-oc option)");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Use for timestamping if using a webcam
|
// Use for timestamping if using a webcam
|
||||||
|
|
|
@ -151,7 +151,8 @@ int main (int argc, char **argv)
|
||||||
|
|
||||||
// Get the input output file parameters
|
// Get the input output file parameters
|
||||||
bool u;
|
bool u;
|
||||||
LandmarkDetector::get_video_input_output_params(files, depth_directories, dummy_out, tracked_videos_output, u, arguments);
|
string output_codec;
|
||||||
|
LandmarkDetector::get_video_input_output_params(files, depth_directories, dummy_out, tracked_videos_output, u, output_codec, arguments);
|
||||||
// Get camera parameters
|
// Get camera parameters
|
||||||
LandmarkDetector::get_camera_params(device, fx, fy, cx, cy, arguments);
|
LandmarkDetector::get_camera_params(device, fx, fy, cx, cy, arguments);
|
||||||
|
|
||||||
|
@ -243,7 +244,14 @@ int main (int argc, char **argv)
|
||||||
cv::VideoWriter writerFace;
|
cv::VideoWriter writerFace;
|
||||||
if(!tracked_videos_output.empty())
|
if(!tracked_videos_output.empty())
|
||||||
{
|
{
|
||||||
writerFace = cv::VideoWriter(tracked_videos_output[f_n], CV_FOURCC('D','I','V','X'), 30, captured_image.size(), true);
|
try
|
||||||
|
{
|
||||||
|
writerFace = cv::VideoWriter(tracked_videos_output[f_n], CV_FOURCC(output_codec[0],output_codec[1],output_codec[2],output_codec[3]), 30, captured_image.size(), true);
|
||||||
|
}
|
||||||
|
catch(cv::Exception e)
|
||||||
|
{
|
||||||
|
WARN_STREAM( "Could not open VideoWriter, OUTPUT FILE WILL NOT BE WRITTEN. Currently using codec " << output_codec << ", try using an other one (-oc option)");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// For measuring the timings
|
// For measuring the timings
|
||||||
|
|
|
@ -253,7 +253,8 @@ int main (int argc, char **argv)
|
||||||
|
|
||||||
// Indicates that rotation should be with respect to camera or world coordinates
|
// Indicates that rotation should be with respect to camera or world coordinates
|
||||||
bool use_world_coordinates;
|
bool use_world_coordinates;
|
||||||
LandmarkDetector::get_video_input_output_params(input_files, depth_directories, output_files, tracked_videos_output, use_world_coordinates, arguments);
|
string output_codec; //not used but should
|
||||||
|
LandmarkDetector::get_video_input_output_params(input_files, depth_directories, output_files, tracked_videos_output, use_world_coordinates, output_codec, arguments);
|
||||||
|
|
||||||
bool video_input = true;
|
bool video_input = true;
|
||||||
bool verbose = true;
|
bool verbose = true;
|
||||||
|
@ -490,7 +491,16 @@ int main (int argc, char **argv)
|
||||||
cv::VideoWriter writerFace;
|
cv::VideoWriter writerFace;
|
||||||
if(!tracked_videos_output.empty())
|
if(!tracked_videos_output.empty())
|
||||||
{
|
{
|
||||||
writerFace = cv::VideoWriter(tracked_videos_output[f_n], CV_FOURCC('D', 'I', 'V', 'X'), fps_vid_in, captured_image.size(), true);
|
try
|
||||||
|
{
|
||||||
|
writerFace = cv::VideoWriter(tracked_videos_output[f_n], CV_FOURCC(output_codec[0],output_codec[1],output_codec[2],output_codec[3]), fps_vid_in, captured_image.size(), true);
|
||||||
|
}
|
||||||
|
catch(cv::Exception e)
|
||||||
|
{
|
||||||
|
WARN_STREAM( "Could not open VideoWriter, OUTPUT FILE WILL NOT BE WRITTEN. Currently using codec " << output_codec << ", try using an other one (-oc option)");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int frame_count = 0;
|
int frame_count = 0;
|
||||||
|
|
|
@ -77,7 +77,7 @@ namespace LandmarkDetector
|
||||||
// Helper functions for parsing the inputs
|
// Helper functions for parsing the inputs
|
||||||
//=============================================================================================
|
//=============================================================================================
|
||||||
void get_video_input_output_params(vector<string> &input_video_file, vector<string> &depth_dir, vector<string> &output_files,
|
void get_video_input_output_params(vector<string> &input_video_file, vector<string> &depth_dir, vector<string> &output_files,
|
||||||
vector<string> &output_video_files, bool& world_coordinates_pose, vector<string> &arguments);
|
vector<string> &output_video_files, bool& world_coordinates_pose, string &output_codec, vector<string> &arguments);
|
||||||
|
|
||||||
void get_camera_params(int &device, float &fx, float &fy, float &cx, float &cy, vector<string> &arguments);
|
void get_camera_params(int &device, float &fx, float &fy, float &cx, float &cy, vector<string> &arguments);
|
||||||
|
|
||||||
|
|
|
@ -121,7 +121,7 @@ void create_directories(string output_path)
|
||||||
|
|
||||||
// Extracting the following command line arguments -f, -fd, -op, -of, -ov (and possible ordered repetitions)
|
// Extracting the following command line arguments -f, -fd, -op, -of, -ov (and possible ordered repetitions)
|
||||||
void get_video_input_output_params(vector<string> &input_video_files, vector<string> &depth_dirs, vector<string> &output_files,
|
void get_video_input_output_params(vector<string> &input_video_files, vector<string> &depth_dirs, vector<string> &output_files,
|
||||||
vector<string> &output_video_files, bool& world_coordinates_pose, vector<string> &arguments)
|
vector<string> &output_video_files, bool& world_coordinates_pose, string& output_codec, vector<string> &arguments)
|
||||||
{
|
{
|
||||||
bool* valid = new bool[arguments.size()];
|
bool* valid = new bool[arguments.size()];
|
||||||
|
|
||||||
|
@ -133,6 +133,9 @@ void get_video_input_output_params(vector<string> &input_video_files, vector<str
|
||||||
// By default use rotation with respect to camera (not world coordinates)
|
// By default use rotation with respect to camera (not world coordinates)
|
||||||
world_coordinates_pose = false;
|
world_coordinates_pose = false;
|
||||||
|
|
||||||
|
// By default use DIVX codec
|
||||||
|
output_codec = "DIVX";
|
||||||
|
|
||||||
string input_root = "";
|
string input_root = "";
|
||||||
string output_root = "";
|
string output_root = "";
|
||||||
|
|
||||||
|
@ -197,6 +200,11 @@ void get_video_input_output_params(vector<string> &input_video_files, vector<str
|
||||||
{
|
{
|
||||||
world_coordinates_pose = true;
|
world_coordinates_pose = true;
|
||||||
}
|
}
|
||||||
|
else if (arguments[i].compare("-oc") == 0)
|
||||||
|
{
|
||||||
|
if(arguments[i + 1].length() == 4)
|
||||||
|
output_codec = arguments[i + 1];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for(int i=arguments.size()-1; i >= 0; --i)
|
for(int i=arguments.size()-1; i >= 0; --i)
|
||||||
|
|
Loading…
Reference in a new issue