13 lines
235 B
Bash
13 lines
235 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
opencv_createsamples \
|
|
-img ./positive_images/img1.png\
|
|
-bg ./negatives.txt \
|
|
-info ./annotations/annotations.lst\
|
|
-pngoutput \
|
|
-maxxangle 0.1 \
|
|
-maxyangle 0.1 \
|
|
-maxzangle 0.1
|