Metadata-Version: 2.3
Name: pepeline
Version: 0.1.4
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Dist: numpy >=1.16.0
License-File: LICENSE
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# pipeline-rs
Fast rust-python librarian for internal needs of an organization
```py
from pepeline import read_gray, screenton, fast_color_level,normolize,save #read - read color image rgb8
import numpy as np
img = np.array(read_gray(<"img path">)).astype(np.float32)/255
img = fast_color_level(
    img,     
    in_low = 10,
    in_high = 240,
    out_low = 0,
    out_high = 255,
    gamma = 1.0
)
img = screenton(img, dot_size=7)
save((img * 255).astype(np.uint8), "out2.png")

