Releases: airctic/icevision
Releases · airctic/icevision
0.2.2.post1
releases 0.2.2post1
0.2.2
[0.2.2]
Added
- Cache records after parsing with the new parameter
cache_filepath
added toParser.parse
(#504) - Added
pretrained: bool = True
argument to both faster_rcnn and mask_rcnnmodel()
methods. (#516) - new class
EncodedRLEs
- all masks get converted to
EncodedRLEs
at parsing time
Changed
- Removed warning on autofixing masks
- RLE default counts is now COCO style
- renamed
Mask.to_erle
toMask.to_erles
0.2.1post1
specifies maximum albumentations version
0.2.1
0.2.0
IMPORTANT
- Switched from poetry to setuptools
Added
- Function
wandb_img_preds
to help logging bboxes to wandb - wandb as a soft dependency
- Template code for
parsers.SizeMixin
ifparsers.FilepathMixin
is used - Get image size without opening image with
get_image_size
- Ability to skip record while parsing with
AbortParseRecord
- Autofix for record:
autofix_records
function andautofix:bool
parameter added toParser.parse
- Record class and mixins,
create_mixed_record
function to help creating Records - InvalidDataError for BBox
- Catches InvalidDataError while parsing data
Changed
- Breaking: Unified
parsers.SizeMixin
functionsimage_width
andimage_height
into a single functionimage_width_height
- Rename Parser
SizeMixin
fields fromwidth
height
toimage_width
image_height
Deleted
- Removed
CombinedParser
, all parsing can be done with the standardParser