lanms-nova is a python binding for LANMS - Locality-Aware Non-Max Suppression
Project description
Locality-Aware Non-Maximum Suppression (LANMS)
This is a python binding for LANMS as described by Zhout et al. in their paper "EAST: An Efficient and Accurate Scene Text Detector", CVPR 2017. The C++ code is taken from the implementation available on: https://github.com/argman/EAST
Installation
pip install lanms-nova
Usage example
import numpy as np
import lanms
boxes = np.array([
[137.0, 113.6, 162.3, 113.3, 162.4, 122.2, 137.2, 122.6, 0.75],
[137.2, 113.8, 163.2, 114.6, 163.0, 122.6, 137.0, 121.9, 0.97],
[136.8, 113.4, 163.2, 114.5, 162.9, 122.7, 136.5, 121.6, 0.15],
[136.6, 112.9, 163.3, 114.5, 162.8, 122.9, 136.1, 121.3, 0.95],
[136.4, 112.6, 163.4, 114.5, 162.8, 123.0, 135.8, 121.2, 0.96],
[131.4, 89.2, 137.8, 89.0, 138.2, 98.5, 131.8, 98.7, 0.98],
[131.6, 89.2, 137.8, 89.1, 138.1, 98.6, 131.8, 98.8, 0.32],
[131.5, 89.2, 137.9, 89.1, 138.0, 98.6, 131.6, 98.7, 0.99],
[131.5, 89.2, 138.0, 89.1, 138.1, 98.5, 131.6, 98.5, 0.87],
[131.5, 89.3, 137.8, 89.0, 138.2, 98.4, 132.0, 98.7, 0.97]
], dtype=np.float32)
boxes = lanms.merge_quadrangle_n9(boxes, nms_thresh=0.5)
print(boxes)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
lanms-nova-1.0.3.tar.gz
(219.3 kB
view details)
File details
Details for the file lanms-nova-1.0.3.tar.gz
.
File metadata
- Download URL: lanms-nova-1.0.3.tar.gz
- Upload date:
- Size: 219.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5ab1eb97edf4ecf13d794db7a0ecbf861c96053a625bca4f40ff967e5d548272 |
|
MD5 | 7e1eb43d27c511ec9e6463cecf954d46 |
|
BLAKE2b-256 | 96d58f5d23d0fa49f96ff2b82d7047160311430199eeb15e5163f36b6213af2d |