Metadata-Version: 2.3
Name: Screenton_maker_rs
Version: 0.1.5
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Scientific/Engineering :: Image Processing
Requires-Dist: numpy >=1.16.0
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

[Pypi](https://pypi.org/project/screenton-maker-rs/)
```py
import cv2
import numpy as np
from screenton_maker import Screenton

img = cv2.cvtColor(cv2.imread("1708268835.555137.png"), cv2.COLOR_RGB2GRAY).astype(np.float32) / 255
s = Screenton(7) #Screenton(7,lx_plus=3,ly_plus=3))  automatic values lx_plus = dot_size/2, ly_plus = dot_size/2
img = s.run(img)
cv2.imwrite("2.png", img * 255)
```

