Metadata-Version: 2.1
Name: py-imagizer
Version: 0.0.2
Summary: It is one stop app that is used for Image Processing and Image Editing.The app has ability to change any image into its dense pencil sketches, colour pencil sketch, colour paints, cartoon image, water colour paints effect, etc. We have use Open CV and Numpy as dependencies that run the Package and you and freely contribute new pieces of code on Github
Home-page: https://github.com/Kush-munot/CG_Assignment
Author: Kush Munot
Keywords: image processing,numpy,opencv,kush munot,py-imagizer,imagizer,image filters,filters,image to sketch,image to cartoon,image to oil paint,image to water color,blur image
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10.0
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: opencv-python
Requires-Dist: numpy
Requires-Dist: opencv-contrib-python

# Image Manuplation Library using Open CV

[![forthebadge made-with-python](http://ForTheBadge.com/images/badges/made-with-python.svg)](https://www.python.org/)                 
[![Python 3.10](https://img.shields.io/badge/python-3.10-blue.svg)](https://www.python.org/downloads/release/python-360/)   

## Functionality of the Library
- Image to Sketch Conversion
- Image to Cartoon Conversion
- Image to Water Color Conversion
- Image to Oil Paint Conversion
- Image to Color Pencil Painting
- Image to Dense Pencil Sketch
- Image Addition
- Image Subtraction
- RGB Image to HSV Conversion
- Image Translation
- Image Smoothening
- Image Translation
- Image Bilateral Filter



## Usage

- Make sure you have Python 3.10 installed in your system.
- Run Following command in the CMD.
 ```
  pip install py-imagizer
  ```
## Example

 ```python
# test.py
import py-imagizer as pi

## Make sure all the images to be used are in assets folder with proper path
image_path = "./assets/demo2.jpg"

# If you want to convert image to sketch then use following commands
image1_path = "./assets/demo2.jpg"
pi.image_to_sketch(image1_path)
  ```

## Run the following Script.
 ```
  python main.py
 ```

## Screenshots
<img src="./assets/demo2.jpg"><img>
is converted to 
<img src="sketch.jpg">

## Different Functions

```python
    image_to_sketch()
    image_to_oilPaint()
    image_to_colorSketch()
    image_to_darkSketch()
    image_to_waterColor()
    image_addition()
    image_subtraction()
    bgr_hsv()
    smooth_image()
    image_translation()
    bilateral_filter()
```
