tfrecord-viewer
tfrecord-viewer copied to clipboard
TFRecord Viewer for browsing contents of TFRecords with object detection/classification annotations.
I ran to error with the followinig error: # python3 ./tfviewer.py /datasets/imagenet2012/5.1.0/imagenet2012-train.tfrecord-00004 --overlay classification imagenet2012-train.tfrecord-00000-of-01024 imagenet2012-train.tfrecord-00003-of-01024 imagenet2012-train.tfrecord-00006-of-01024 imagenet2012-train.tfrecord-00009-of-01024 imagenet2012-train.tfrecord-00001-of-01024 imagenet2012-train.tfrecord-00004-of-01024 imagenet2012-train.tfrecord-00007-of-01024 imagenet2012-train.tfrecord-00002-of-01024 imagenet2012-train.tfrecord-00005-of-01024 imagenet2012-train.tfrecord-00008-of-01024 root@uefi-popos-20:/tfrecord-viewer/src/tfrecord-viewer# python3 ./tfviewer.py /datasets/imagenet2012/5.1.0/imagenet2012-train.tfrecord-00000-of-01024 --overlay classification...
Resolves #19. Variable `attachment_filename` has been renamed `download_name` as mentioned in this [Stack Overflow thread](https://stackoverflow.com/questions/73276384/getting-an-error-attachment-filename-does-not-exist-in-my-docker-environment).
The flask function 'send_file', used on line 173 of tfviewer.py, doesn't use the 'attachment_filename' keyword as of Flask 2.2. It seems to have been replaced with the 'download_name' keyword.
First, thanks for making this. It's super useful! ## The Problem For objects that are very small compared to the total image size, the label might block the object. I'm...
When detecting small objects in large pictures, the label sometimes cover the whole bounding box. Moving the label up gives the same visual semantics and allows to see the object...
Hi, Thank you for developing this , but in your viewer file it only takes xmin , ymin , xmax and ymax.But I am doing segmentation so I need to...