coco-viewer icon indicating copy to clipboard operation
coco-viewer copied to clipboard

Minimalistic COCO Dataset Viewer in Tkinter

Results 22 coco-viewer issues
Sort by recently updated
recently updated
newest added
trafficstars

The function textsize() is deptricated and does not work on newer python (3.9) The new solutiuon is validated to work under python 3.9

## RLE-String Decode - I test my coco file for both kind of RLE format: string or pure number - Here is the test result, fits well: [test.zip](https://github.com/trsvchn/coco-viewer/files/13542911/test.zip) - The...

The function get_categories() can be modified to get n_objects = len(instances['categories']) So that if someone is using more than 80 classes he can use the tool, without any issues.

It should be possible to have the first element of a segmentation RLE element to be 0 to be able to label the background but it doesn't seem to be...

HI! I added the functionality of drawing rotated frames to test it you need to add appropriate keys to the annotated json file. `"attributes": { "occluded": false, "rotation": 60 }`...

- Use `getbboxsize` instead of the deprecated `textsize` [critical fix, closes #74] - Use COCO format's `image_root`, if available, when not provided via command line [feature] - Allow to zoom...

cocoviewer.py, line 183: `tw, th = draw.textsize(text, font)` PIL deprecated the textsize() method in 10.0.0: https://pillow.readthedocs.io/en/stable/releasenotes/10.0.0.html Proposed fix: ``` x1, y1, x2, y2 = font.getbbox(text) tw, th = (x2-x1, y2-y1)...

While using this tool, I felt command line arguments were making it slight complex to choose the exact path. Added this functionality, since this tool is GUI based, so having...