Metadata-Version: 2.4
Name: scalableCVs
Version: 0.3.0
Summary: My Python package related to scaling computer vision packages
Author-email: Prakhar Gandhi <gprakhar0@gmail.com>
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: mpire
Requires-Dist: litecv

# scalableCVs


Python package related to scaling computer vision related functions

```python
import scalableCVs 
from scalableCVs import cv
from pprint import pprint


if __name__ == "__main__":

    
    filters_list = [
        {
            "image_file_path":r"C:\Users\gprak\Downloads\Github Repos\Portfolio-Site\brandImages\logo1.png",
            "brightness":1.2,
            "contrast":0.9,
            "saturation":None
        },
        {
            "image_file_path":r"C:\Users\gprak\Downloads\Github Repos\Portfolio-Site\brandImages\logo1.png",
            "brightness":1.2,
            "contrast":0.8,
            "saturation":1.2
        }
    ]
    show_progress = True
    results = cv.apply_filters(filters_list,show_progress)
    pprint(results)
    
```

