├── .gitignore ├── README.md ├── ckpt └── README.md ├── cphoc ├── README.md └── cphoc.c ├── datasets └── README.md ├── eval_STR.py ├── heineken.gif ├── oreo.gif ├── singleshotstr.png ├── utils.py └── yolo_models.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lluisgomez/single-shot-str/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lluisgomez/single-shot-str/HEAD/README.md -------------------------------------------------------------------------------- /ckpt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lluisgomez/single-shot-str/HEAD/ckpt/README.md -------------------------------------------------------------------------------- /cphoc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lluisgomez/single-shot-str/HEAD/cphoc/README.md -------------------------------------------------------------------------------- /cphoc/cphoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lluisgomez/single-shot-str/HEAD/cphoc/cphoc.c -------------------------------------------------------------------------------- /datasets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lluisgomez/single-shot-str/HEAD/datasets/README.md -------------------------------------------------------------------------------- /eval_STR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lluisgomez/single-shot-str/HEAD/eval_STR.py -------------------------------------------------------------------------------- /heineken.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lluisgomez/single-shot-str/HEAD/heineken.gif -------------------------------------------------------------------------------- /oreo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lluisgomez/single-shot-str/HEAD/oreo.gif -------------------------------------------------------------------------------- /singleshotstr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lluisgomez/single-shot-str/HEAD/singleshotstr.png -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lluisgomez/single-shot-str/HEAD/utils.py -------------------------------------------------------------------------------- /yolo_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lluisgomez/single-shot-str/HEAD/yolo_models.py --------------------------------------------------------------------------------