choosehappy / QuickAnnotator

An open-source digital pathology based rapid image annotation tool
BSD 3-Clause Clear License
74 stars 27 forks source link

Fix x._pred.png outfile name bug #25

Closed VolodymyrChapman closed 2 years ago

VolodymyrChapman commented 2 years ago

The current code at line 102 trims 4 characters from the end of the filename (i.e. '.png') and adds '_pred.png'. This rigid filename trim is inconvenient when using '.tiff' files or any other with extensions longer than 4 characters total, resulting in extra '.' - i.e. 'outfile._pred.png' . The proposed fix introduces dynamic extension trimming, removing any extension after the final '.' in a filename and adding '_pred.png'.

VolodymyrChapman commented 2 years ago

Great - thank you for the tips!