Metadata-Version: 2.1
Name: img2sketch
Version: 0.0.1
Summary: A Python package to convert your photos into pencil art or pencil sketch.
Home-page: https://github.com/nikhilkumarsingh/weather-reporter
Author: Pavan Sai Eshwar Chandra
Author-email: bpavansai1998@gmail.com
License: MIT
Description: This is a simple Python package that converts your beautiful photos to
        pencil art. The transformed photo just looks like a photo which is drawn using pencil.
        
        For this package to run without any errors the following packages should be installed on your system
        opencv-python
        numpy
        
        All you have to do is just download the package as 
        	
        	pip install img2sketch
        
        You can use this package in your code as
        	
        	img2sketch("/path/of/your/original/photo.jpg", "/path/where/your/newphoto/tobe/saved.jpg")
        
        For example:
        I have pavan.jpg photo under /home/pavan/Desktop/pavan.jpg 
        I want the new transfromed photo at the same folder (Desktop) as new.jpg
        Here my code looks like
        
        	img2sketch("/home/pavan/Desktop/pavan.jpg", "/home/pavan/Desktop/new.jpg")
        
        After the program executes the transformed photo is saved under the path you have provided.
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
