mirror of
https://github.com/pjreddie/darknet.git
synced 2023-08-10 21:13:14 +03:00
Merge pull request #2621 from jveitchmichaelis/tiff_ext
Correctly locate annotation files for tiff images
This commit is contained in:
10
src/utils.c
10
src/utils.c
@ -254,6 +254,16 @@ void replace_image_to_label(const char* input_path, char* 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);
|
||||
|
||||
// Check file ends with txt:
|
||||
if(strlen(output_path) > 4) {
|
||||
char *output_path_ext = output_path + strlen(output_path) - 4;
|
||||
if( strcmp(".txt", output_path_ext) != 0){
|
||||
fprintf(stderr, "Failed to infer label file name (check image extension is supported): %s \n", output_path);
|
||||
}
|
||||
}else{
|
||||
fprintf(stderr, "Label file name is too short: %s \n", output_path);
|
||||
}
|
||||
}
|
||||
|
||||
float sec(clock_t clocks)
|
||||
|
Reference in New Issue
Block a user