├── 01.jpg ├── 02.jpg ├── 03.jpg ├── 06.jpg ├── CTPN ├── .gitignore ├── Makefile ├── models │ └── deploy.prototxt ├── src │ ├── anchor.py │ ├── detectors.py │ ├── layers │ │ ├── __init__.py │ │ └── text_proposal_layer.py │ ├── other.py │ ├── text_proposal_connector.py │ ├── text_proposal_graph_builder.py │ └── utils │ │ ├── __init__.py │ │ ├── cpu_nms.pyx │ │ └── timer.py ├── tools │ ├── cfg.py │ └── demo.py └── 缂栬瘧杩愯璇存槑.txt ├── README.md ├── crnn ├── dataset.py ├── dataset.pyc ├── keys.py ├── keys.pyc ├── models │ ├── __init__.py │ ├── __init__.pyc │ ├── crnn.py │ ├── crnn.pyc │ ├── utils.py │ └── utils.pyc ├── test.py ├── util.py └── util.pyc ├── crnnport.py ├── crnnport.pyc ├── ctpnport.py ├── ctpnport.pyc ├── demo.py └── img ├── 1755.jpg ├── 21.bmp ├── 6408.bmp └── t37.jpg /01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/01.jpg -------------------------------------------------------------------------------- /02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/02.jpg -------------------------------------------------------------------------------- /03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/03.jpg -------------------------------------------------------------------------------- /06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/06.jpg -------------------------------------------------------------------------------- /CTPN/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/CTPN/.gitignore -------------------------------------------------------------------------------- /CTPN/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/CTPN/Makefile -------------------------------------------------------------------------------- /CTPN/models/deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/CTPN/models/deploy.prototxt -------------------------------------------------------------------------------- /CTPN/src/anchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/CTPN/src/anchor.py -------------------------------------------------------------------------------- /CTPN/src/detectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/CTPN/src/detectors.py -------------------------------------------------------------------------------- /CTPN/src/layers/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'tianzhi' 2 | -------------------------------------------------------------------------------- /CTPN/src/layers/text_proposal_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/CTPN/src/layers/text_proposal_layer.py -------------------------------------------------------------------------------- /CTPN/src/other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/CTPN/src/other.py -------------------------------------------------------------------------------- /CTPN/src/text_proposal_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/CTPN/src/text_proposal_connector.py -------------------------------------------------------------------------------- /CTPN/src/text_proposal_graph_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/CTPN/src/text_proposal_graph_builder.py -------------------------------------------------------------------------------- /CTPN/src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'zhitian' 2 | -------------------------------------------------------------------------------- /CTPN/src/utils/cpu_nms.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/CTPN/src/utils/cpu_nms.pyx -------------------------------------------------------------------------------- /CTPN/src/utils/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/CTPN/src/utils/timer.py -------------------------------------------------------------------------------- /CTPN/tools/cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/CTPN/tools/cfg.py -------------------------------------------------------------------------------- /CTPN/tools/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/CTPN/tools/demo.py -------------------------------------------------------------------------------- /CTPN/缂栬瘧杩愯璇存槑.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/CTPN/缂栬瘧杩愯璇存槑.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/README.md -------------------------------------------------------------------------------- /crnn/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/crnn/dataset.py -------------------------------------------------------------------------------- /crnn/dataset.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/crnn/dataset.pyc -------------------------------------------------------------------------------- /crnn/keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/crnn/keys.py -------------------------------------------------------------------------------- /crnn/keys.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/crnn/keys.pyc -------------------------------------------------------------------------------- /crnn/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crnn/models/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/crnn/models/__init__.pyc -------------------------------------------------------------------------------- /crnn/models/crnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/crnn/models/crnn.py -------------------------------------------------------------------------------- /crnn/models/crnn.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/crnn/models/crnn.pyc -------------------------------------------------------------------------------- /crnn/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/crnn/models/utils.py -------------------------------------------------------------------------------- /crnn/models/utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/crnn/models/utils.pyc -------------------------------------------------------------------------------- /crnn/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/crnn/test.py -------------------------------------------------------------------------------- /crnn/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/crnn/util.py -------------------------------------------------------------------------------- /crnn/util.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/crnn/util.pyc -------------------------------------------------------------------------------- /crnnport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/crnnport.py -------------------------------------------------------------------------------- /crnnport.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/crnnport.pyc -------------------------------------------------------------------------------- /ctpnport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/ctpnport.py -------------------------------------------------------------------------------- /ctpnport.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/ctpnport.pyc -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/demo.py -------------------------------------------------------------------------------- /img/1755.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/img/1755.jpg -------------------------------------------------------------------------------- /img/21.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/img/21.bmp -------------------------------------------------------------------------------- /img/6408.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/img/6408.bmp -------------------------------------------------------------------------------- /img/t37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bear63/sceneReco/HEAD/img/t37.jpg --------------------------------------------------------------------------------