实例介绍
Tensorflow文字定位、tesseract识别
【实例截图】
【核心代码】
c6dd307f-4ca1-4059-b0ed-7e1904184de6
└── text_Detection
├── data
│ ├── pretrain
│ │ └── VGG_imagenet.npy
│ └── VOCdevkit2007
│ └── VOC2007
│ ├── Annotations
│ │ └── img_1423.xml
│ ├── ImageSets
│ │ └── Main
│ │ ├── dontcare_train.txt
│ │ ├── dontcare_trainval.txt
│ │ ├── dontcare_val.txt
│ │ ├── text_train.txt
│ │ ├── text_trainval.txt
│ │ ├── text_val.txt
│ │ ├── train.txt
│ │ ├── trainval.txt
│ │ └── val.txt
│ └── JPEGImages
│ └── img_1423.jpg
├── img
│ └── 01.jpg
├── lib
│ ├── datasets
│ │ ├── ds_utils.py
│ │ ├── ds_utils.pyc
│ │ ├── factory.py
│ │ ├── factory.pyc
│ │ ├── imdb.py
│ │ ├── imdb.pyc
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── pascal_voc.py
│ │ ├── pascal_voc.pyc
│ │ └── __pycache__
│ │ ├── ds_utils.cpython-35.pyc
│ │ ├── factory.cpython-35.pyc
│ │ ├── imdb.cpython-35.pyc
│ │ ├── __init__.cpython-35.pyc
│ │ └── pascal_voc.cpython-35.pyc
│ ├── fast_rcnn
│ │ ├── bbox_transform.py
│ │ ├── bbox_transform.pyc
│ │ ├── config.py
│ │ ├── config.pyc
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── nms_wrapper.py
│ │ ├── nms_wrapper.pyc
│ │ ├── __pycache__
│ │ │ ├── bbox_transform.cpython-35.pyc
│ │ │ ├── config.cpython-35.pyc
│ │ │ ├── __init__.cpython-35.pyc
│ │ │ ├── nms_wrapper.cpython-35.pyc
│ │ │ ├── test.cpython-35.pyc
│ │ │ └── train.cpython-35.pyc
│ │ ├── test.py
│ │ ├── test.pyc
│ │ ├── train.py
│ │ └── train.pyc
│ ├── __init__.py
│ ├── __init__.pyc
│ ├── networks
│ │ ├── factory.py
│ │ ├── factory.pyc
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── network.py
│ │ ├── network.pyc
│ │ ├── __pycache__
│ │ │ ├── factory.cpython-35.pyc
│ │ │ ├── __init__.cpython-35.pyc
│ │ │ ├── network.cpython-35.pyc
│ │ │ ├── VGGnet_test.cpython-35.pyc
│ │ │ └── VGGnet_train.cpython-35.pyc
│ │ ├── VGGnet_test.py
│ │ ├── VGGnet_test.pyc
│ │ ├── VGGnet_train.py
│ │ └── VGGnet_train.pyc
│ ├── __pycache__
│ │ └── __init__.cpython-35.pyc
│ ├── roi_data_layer
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── layer.py
│ │ ├── layer.pyc
│ │ ├── minibatch.py
│ │ ├── minibatch.pyc
│ │ ├── __pycache__
│ │ │ ├── __init__.cpython-35.pyc
│ │ │ ├── layer.cpython-35.pyc
│ │ │ ├── minibatch.cpython-35.pyc
│ │ │ └── roidb.cpython-35.pyc
│ │ ├── roidb.py
│ │ └── roidb.pyc
│ ├── rpn_msr
│ │ ├── anchor_target_layer_tf.py
│ │ ├── anchor_target_layer_tf.pyc
│ │ ├── generate_anchors.py
│ │ ├── generate_anchors.pyc
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── proposal_layer_tf.py
│ │ ├── proposal_layer_tf.pyc
│ │ └── __pycache__
│ │ ├── anchor_target_layer_tf.cpython-35.pyc
│ │ ├── generate_anchors.cpython-35.pyc
│ │ ├── __init__.cpython-35.pyc
│ │ └── proposal_layer_tf.cpython-35.pyc
│ ├── text_connector
│ │ ├── detectors.py
│ │ ├── detectors.pyc
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── other.py
│ │ ├── other.pyc
│ │ ├── __pycache__
│ │ │ ├── detectors.cpython-35.pyc
│ │ │ ├── __init__.cpython-35.pyc
│ │ │ ├── other.cpython-35.pyc
│ │ │ ├── text_connect_cfg.cpython-35.pyc
│ │ │ ├── text_proposal_connector.cpython-35.pyc
│ │ │ ├── text_proposal_connector_oriented.cpython-35.pyc
│ │ │ └── text_proposal_graph_builder.cpython-35.pyc
│ │ ├── text_connect_cfg.py
│ │ ├── text_connect_cfg.pyc
│ │ ├── text_proposal_connector_oriented.py
│ │ ├── text_proposal_connector_oriented.pyc
│ │ ├── text_proposal_connector.py
│ │ ├── text_proposal_connector.pyc
│ │ ├── text_proposal_graph_builder.py
│ │ └── text_proposal_graph_builder.pyc
│ └── utils
│ ├── bbox.c
│ ├── bbox.cpython-35m-x86_64-linux-gnu.so
│ ├── bbox.o
│ ├── bbox.o-
│ ├── bbox.pyx
│ ├── bbox.so
│ ├── blob.py
│ ├── blob.pyc
│ ├── boxes_grid.py
│ ├── boxes_grid.pyc
│ ├── build
│ │ ├── lib.linux-x86_64-3.5
│ │ │ ├── bbox.cpython-35m-x86_64-linux-gnu.so
│ │ │ └── cython_nms.cpython-35m-x86_64-linux-gnu.so
│ │ ├── temp.linux-x86_64-2.7
│ │ │ ├── bbox.o
│ │ │ └── cython_nms.o
│ │ └── temp.linux-x86_64-3.5
│ │ ├── bbox.o
│ │ └── cython_nms.o
│ ├── cython_nms.c
│ ├── cython_nms.cpython-35m-x86_64-linux-gnu.so
│ ├── cython_nms.o
│ ├── cython_nms.o-
│ ├── cython_nms.pyx
│ ├── cython_nms.so
│ ├── gpu_nms.c
│ ├── gpu_nms.cpp
│ ├── gpu_nms.hpp
│ ├── gpu_nms.pyx
│ ├── __init__.py
│ ├── __init__.pyc
│ ├── make.sh
│ ├── nms_kernel.cu
│ ├── __pycache__
│ │ ├── blob.cpython-35.pyc
│ │ ├── boxes_grid.cpython-35.pyc
│ │ ├── __init__.cpython-35.pyc
│ │ └── timer.cpython-35.pyc
│ ├── setup.py
│ ├── timer.py
│ └── timer.pyc
├── model
│ ├── checkpoint
│ ├── VGGnet_fast_rcnn_iter_50000.ckpt.data-00000-of-00001
│ ├── VGGnet_fast_rcnn_iter_50000.ckpt.index
│ └── VGGnet_fast_rcnn_iter_50000.ckpt.meta
├── result.jpg
├── test.py
├── train
│ ├── data
│ │ └── results
│ │ └── res_01.txt
│ ├── __init__.py
│ └── text.yml
└── train.py
34 directories, 156 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论