Skip to content

Bug fix release for saving format, aspect ratio and more detailed logs

Compare
Choose a tag to compare
@codenamewei codenamewei released this 29 Jan 08:14
· 50 commits to main since this release
6c2a1c2

Classifai 1.1.1

29 January 2021

Critical Fixes:

  • Annotation output for bounding box projects changed to correspond to image name (#277)
    The extension format of image, which previously concatenated into the annotation output of YOLO and Pascal VOC formats, is removed.

    Example
    With image 1.jpg, the annotation output is 1.xml (Prior to fix: 1_jpg.xml)
    With image sample.jpg, the annotation output is sample.txt (Prior to fix: sample_jpg.txt)

    Before:
    saveBefore

    After:
    saveAfter

Other Fixes:

  • JPEG aspect ratio fix (#252)
    Previously, some jpeg files contain EXIF orientation does not show the correct aspect ratio.
    This is fixed in the current patch release.

    Before:
    Screenshot from 2021-01-26 16-23-02

    After:
    Screenshot from 2021-01-26 16-24-31

  • JPEG timeout fix (#280)
    Loading images with large size for bounding box or segmentation projects has previously resulted in timeout error.
    This problem has been solved.

    Before:
    timeoutBefore

    After:
    timeoutAfter

  • Enabling of detailed log messages if paths of images not found (#283)
    When images previously imported could not be found in the system paths, the project will omit these images without causing any error. To give end users a better idea which images are missing, paths of images which cannot be found will be listed out in the log messages now.

    Screenshot from 2021-01-26 14-40-40