Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shinjayne/textboxes
Textboxes implementation with Tensorflow (python)
https://github.com/shinjayne/textboxes
ocr
Last synced: about 11 hours ago
JSON representation
Textboxes implementation with Tensorflow (python)
- Host: GitHub
- URL: https://github.com/shinjayne/textboxes
- Owner: shinjayne
- License: mit
- Created: 2017-07-10T07:25:38.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-03-28T05:25:23.000Z (over 7 years ago)
- Last Synced: 2024-08-02T11:16:03.945Z (3 months ago)
- Topics: ocr
- Language: Python
- Homepage:
- Size: 25.4 KB
- Stars: 20
- Watchers: 3
- Forks: 12
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tb_tensorflow
A python implementation of TextBoxes## Dependencies
* TensorFlow r1.0
* OpenCV2Code from Chaoyue Wang
03/09/2017 Update:
1.Debugging optimizer function in trainer.py, still with same issue.
2.Fixed several bugs of match box computation.03/05/2017 Update:
1.Changed and added image processing function to pre and post process input and output data.
2.Tested training, but optimizer initialization function has segmentation fault issue.03/03/2017 Update:
1.Added svt_data_loader.py to parse svt dataset xml config file.
2.Modified trainer.py to adapt textboxes training and test.03/01/2017 Update:
1.Revised default_boxes function to use numpy ndarray. Because TextBoxes need more default boxes than SSD, python list cannot handle them.
2.Adjusted the architecture of directory.02/25/2017 Update:
1.Revised convolution layers setting.
2.Removed useless functions(webcam support).02/22/2017 Update:
1.Forked reference code from seann999/ssd_tensorflow.