Cross platform app for labeling the comma 10k dataset.
yarn install --frozen-lockfile
In browser
# Run dev mode and point the server endpoint to prod
yarn dev:prod
On iOS or Android
# Run dev mode and point the server endpoint to prod
yarn build
yarn cap open ios
yarn cap open android
yarn dev:prod
# in another terminal
yarn test
-
Add the ability to draw on layers
-
Start off with an automatically segmented image
Made using intel's MiDaS depth detection model
Source | Map |
---|---|
Applied filter |
---|
depth map gif |
# Notes
# Convert to jpg
for i in *.png; do mogrify -format jpg "$i" && rm "$i"; echo "$i converted to ${i%.*}.jpg"; done
# Compress
for i in *.jpg; do convert $i -sampling-factor 4:2:0 -strip -quality 85 -interlace JPEG -colorspace RGB $i; echo "compressed $i"; done