Skip to content

Commit

Permalink
fix: Corrected text file save name
Browse files Browse the repository at this point in the history
should have been <root>_results.txt
  • Loading branch information
Scoobadood committed Nov 6, 2016
1 parent 9b3950a commit f030c0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scene_flow_impair.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ void PD_flow_opencv::showAndSaveResults( )
while (!free_name)
{
nFichero++;
sprintf(name, "%s%02u.txt", output_filename_root, nFichero );
sprintf(name, "%s_results%02u.txt", output_filename_root, nFichero );
free_name = !fileExists(name);
}

Expand Down

0 comments on commit f030c0c

Please sign in to comment.