kent010341 / image-utils

A comprehensive Python package for advanced image processing utilities, providing versatile command-line tools for various image manipulation tasks.
MIT License
3 stars 0 forks source link

Make the processors able to be easily used like RxJS pipe #3

Closed kent010341 closed 2 months ago

kent010341 commented 2 months ago

Since it can be used with pipeline in command-line, the Pipeline Design Pattern should suitable for this project.

for example, it may look like

output_img = input_img.pipe(
    crop(),
    resize(width=500)
)