Fix create manifest command (#5172)

main
Maria Khrustaleva 3 years ago committed by GitHub
parent c30c97b6af
commit e4e8da281a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -59,6 +59,7 @@ non-ascii paths while adding files from "Connected file share" (issue #4428)
- Skeleton points exported out of order in the COCO Keypoints format - Skeleton points exported out of order in the COCO Keypoints format
(<https://github.com/opencv/cvat/issues/5048>) (<https://github.com/opencv/cvat/issues/5048>)
- Changing an object causes current z layer to be set to the maximum (<https://github.com/opencv/cvat/pull/5145>) - Changing an object causes current z layer to be set to the maximum (<https://github.com/opencv/cvat/pull/5145>)
- Create manifest with cvat/server docker container command (<https://github.com/opencv/cvat/pull/5172>)
### Security ### Security
- TDB - TDB

@ -60,8 +60,7 @@ optional arguments:
### Alternative way to use with cvat/server ### Alternative way to use with cvat/server
```bash ```bash
docker run -it --entrypoint python3 -v /path/to/host/data/:/path/inside/container/:rw cvat/server docker run -it -u root --entrypoint bash -v /path/to/host/data/:/path/inside/container/:rw cvat/server -c "pip3 install -r utils/dataset_manifest/requirements.txt && python3 utils/dataset_manifest/create.py --output-dir /path/to/manifest/directory/ /path/to/data/"
utils/dataset_manifest/create.py --output-dir /path/to/manifest/directory/ /path/to/data/
``` ```
### Examples of using ### Examples of using

Loading…
Cancel
Save