find annotation files for tiff images

This commit is contained in:
Josh Veitch-Michaelis 2019-03-15 21:58:53 +00:00 committed by GitHub
parent 7a854302ef
commit fc2996968e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -252,6 +252,8 @@ void replace_image_to_label(const char* input_path, char* output_path)
find_replace_extension(output_path, ".BMP", ".txt", output_path);
find_replace_extension(output_path, ".ppm", ".txt", output_path);
find_replace_extension(output_path, ".PPM", ".txt", output_path);
find_replace_extension(output_path, ".tiff", ".txt", output_path);
find_replace_extension(output_path, ".TIFF", ".txt", output_path);
}
float sec(clock_t clocks)