This app helps to review all the images and the box drawn in CVAT. The app accepts all the parameter in the query URL. Allowed arguments:
xmlDump
,URL of the dump annotation file.startImgId
e.g1
stopImgId
e.g1000
columns
, number of columns to display the images e.g3
.attr
, filter images by attributes e.gcondition:average
.
Example: "?xmlDump=&startImgId=1&stopImgId=1000&columns=3&attr=condition:average"
- Fixing a wrong tag from garage to window.
- Display number of columns per row.
yarn start
developement modeyarn build
build the app.
In order to run the app and access to the images, we need to build first and put the app in the same server where is running the CVAT, or we need to add the IP or domain in ALLOWED_HOSTS
of CVAT.
Start up the app
git clone https://github.com/developmentseed/cvat-images-validator
cd cvat-images-validator/
yarn install
yarn build
cd build/
python3 -m http.server 3000
Start up the app using docker
git clone https://github.com/developmentseed/cvat-images-validator
cd cvat-images-validator/
docker-compose build
docker-compose up -d