The cocotools
crate provides tools to load, manipulate, convert and visualize COCO format datasets.
``` use std::path::PathBuf; use cocotools::COCO;
let annotationsfilepath = PathBuf::from("../datasamples/coco25k/annotations.json"); let dataset = COCO::tryfrom(&annotationsfilepath)?; let filename = dataset.getimg(17627)?.filename; ```
cargo run -- visualize ../data_samples/coco_25k/annotations.json ../data_samples/coco_25k/images -s 000000017627
cargo run -- convert-segmentation ../data_samples/coco_25k/annotations.json rle -o annotations_rle.json