mirror of https://github.com/AlexeyAB/darknet.git
find annotation files for tiff images
This commit is contained in:
parent
7a854302ef
commit
fc2996968e
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue