Playful interface for the COCO dataset.
Go to file
Ruben van de Ven 9e27122873 font-sizing 2020-03-10 15:27:30 +01:00
coco WIP backgrounds 2020-03-10 08:44:19 +01:00
www font-sizing 2020-03-10 15:27:30 +01:00
README.md Version with save option 2020-03-04 22:24:49 +01:00
coco.sql Version with save option 2020-03-04 22:24:49 +01:00
create_shapes.py WIP backgrounds 2020-03-10 08:44:19 +01:00
generate_lonely_segments.py First version 2019-12-16 12:19:48 +01:00
plottingdata_coco.service Systemd service file to new user and dir 2020-03-10 08:49:31 +01:00
requirements.txt Version with save option 2020-03-04 22:24:49 +01:00
server.py font-sizing 2020-03-10 15:27:30 +01:00
tools.py Version with save option 2020-03-04 22:24:49 +01:00

README.md

server.py
Server for the web interface
create_shapes.py
Create an svg file per image, with classes on the shapes according to their classes
zoom_animation.py
Create svg frames for a category. Ordered by the area of the shapes.
generate_lonely_segments.py
Find and download the images with only one object in them.
tools.py
Turn a COCO json file (eg instances_val2017.json) into a database format (eg coco_train.db)

Build array of images sorted by size:

python zoom_animation.py --annotations ../../datasets/COCO/annotations/instances_train2017.json --output zoom --category_id 18

Turn into png

cd zoom/dog
for file in *.svg; do inkscape -z -f "${file}" -w 640 -e "../dog_png/${file}.png"; done

Turn png into mp4

cd ../dog_png
#ffmpeg -r 1 -i %d_*.png -pix_fmt yuv420p bloch2.mp4
ffmpeg -f image2 -pattern_type glob -i '*.png' ../dog.mp4

To run as server:

cp plottingdata_coco.service /etc/systemd/system/
systemctl daemon-reload
systemctl enable plottingdata_coco.service
systemctl start plottingdata_coco.service
rsync . --exclude zoom --exclude venv --exclude archive -av here.rubenvandeven.com:/home/ruben/coco/  --exclude shapes --exclude lonely --exclude .git --exclude __pycache__ --info progress2