CRAFT for text detection and location in images, implemented in python and pytorch
#ai #document-processing #text-detection #ocr #fer-r-and-d #Fern-R&D
|
1 an în urmă | |
---|---|---|
CRAFT | 1 an în urmă | |
images | 2 ani în urmă | |
.gitignore | 2 ani în urmă | |
README.md | 2 ani în urmă | |
example.ipynb | 2 ani în urmă | |
requirements.txt | 2 ani în urmă | |
setup.py | 2 ani în urmă | |
test.py | 2 ani în urmă |
An unofficial PyTorch implementation of CRAFT text detector with better interface and fp16 support
This is not official implementation. I partially use code from the original repository
Main features of this implementation:
Recommended:
pip install git+https://github.com/boomb0om/CRAFT-text-detection/
or
git clone https://github.com/boomb0om/CRAFT-text-detection
cd CRAFT-text-detection/
pip install -r requirements.txt
To test model you can run test.py
file.
from PIL import Image
from CRAFT import CRAFTModel, draw_polygons
model = CRAFTModel('weights/', 'cuda', use_refiner=True, fp16=True)
img = Image.open('images/cafe_sign.jpg')
polygons = model.get_polygons(img)
result = draw_polygons(img, polygons)
You can find more usage examples in example.ipynb
Detected polygons: