Vatic is an image and video label software.
This is the tutorial for installing Vatic on your Mac. An online JS version of Vatic can be found here: https://dbolkensteyn.github.io/vatic.js/
Reference:
https://glentimemaker.github.io/Install-and-Use-Vatic-Annotation-Tool/
https://github.com/cvondrick/vatic (Offcial)
Following steps are tested on Mac OS. For windows system, you may need to install some command lines and add them to PATH.
String <???***???>
should be replaced by your own address/filename.
1.Install Docker
Install Docker from https://www.docker.com/
Register, Login, Start Docker.
2.Creat Local Folder
Creat a folder named “data”. Put videos inside, then creat a folder named “frames” inside the folder “data”.
Open terminal, cd to your “data”‘s parent folder. Do following:
1 | DATA_DIR=`pwd`/data/ |
3.Start Vatic Server, MySQL and Apache
1 | docker run -it -p 8080:80 -v $DATA_DIR:/home/vagrant/vagrant_data jldowns/vatic-docker-contrib:0.1 |
Then cd to the vatic path:
1 | cd /home/vagrant/vatic |
4.Extract frames from video
1 | turkic extract /home/vagrant/vagrant_data/<???video_name.mp4???> /home/vagrant/vagrant_data/frames/ |
Now you can use turkic
command to operate your videos and labels.
1 | ~/vatic# turkic |
More turkic
command on offcial website.
5.Load & Publish
1 | turkic load <???Job ID???> /home/vagrant/vagrant_data/frames/ <???LabelName1 LabelName2 LabelName3..???> --offline |
6.Reopen Closed Vatic:
Reopen your Docker then cd to your folder path:
1 | DATA_DIR=`pwd`/data/ |