Skip to content

Commit

Permalink
added missing --format flag
Browse files Browse the repository at this point in the history
  • Loading branch information
monocongo committed Feb 5, 2020
1 parent 58443cc commit 08b9883
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,11 @@ supports limiting the number of bounding boxes per class type. The filtered data
will contain annotation files with bounding boxes only for the class labels specified
and limited to the number of boxes specified for each class label. For example:
```bash
$ cvdata_filter --src_annotations /data/darknet --dest_annotations /data/filtered_darknet \
--src_images /data/images --dest_images /data/filtered_images \
$ cvdata_filter --format darknet \
--src_annotations /data/darknet \
--dest_annotations /data/filtered_darknet \
--src_images /data/images \
--dest_images /data/filtered_images \
--darknet_labels /data/darknet/labels.txt \
--boxes_per_class car:6000 truck:6000
```
Expand Down

0 comments on commit 08b9883

Please sign in to comment.