├── .gitignore ├── LICENSE ├── README.md ├── basenet ├── __init__.py └── vgg16_bn.py ├── craft.py ├── craft_utils.py ├── figures └── craft_example.gif ├── file_utils.py ├── imgproc.py ├── refinenet.py ├── requirements.txt └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/CRAFT-pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/CRAFT-pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/CRAFT-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /basenet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /basenet/vgg16_bn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/CRAFT-pytorch/HEAD/basenet/vgg16_bn.py -------------------------------------------------------------------------------- /craft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/CRAFT-pytorch/HEAD/craft.py -------------------------------------------------------------------------------- /craft_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/CRAFT-pytorch/HEAD/craft_utils.py -------------------------------------------------------------------------------- /figures/craft_example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/CRAFT-pytorch/HEAD/figures/craft_example.gif -------------------------------------------------------------------------------- /file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/CRAFT-pytorch/HEAD/file_utils.py -------------------------------------------------------------------------------- /imgproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/CRAFT-pytorch/HEAD/imgproc.py -------------------------------------------------------------------------------- /refinenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/CRAFT-pytorch/HEAD/refinenet.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/CRAFT-pytorch/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/CRAFT-pytorch/HEAD/test.py --------------------------------------------------------------------------------