Metadata-Version: 1.1
Name: filterv
Version: 0.0.3
Summary: Visualizing what the filter values do to an image made easy! Just a few steps and you're good to go!
Home-page: https://github.com/ParthikB/filterv
Author: Parthik Bhandari
Author-email: connect2parthik@gmail.com
License: MIT
Download-URL: https://github.com/ParthikB/filterv/archive/v0.0.3.tar.gz
Description: # filterV
        
        
        [![Build Status](https://travis-ci.org/joemccann/dillinger.svg?branch=master)](https://travis-ci.org/joemccann/dillinger)
        
        *filterV is a short program that enables the user to visualize how any image would look after applying the Convolutional filters.*
        
        
        ### Installation
        
        filterV requires python3 to run.
        
        Enter the following command in your command-line (windows):
        ```sh
        pip install filterv
        ```
        
        ### Using filterV
        
        It's super easy to use...!
        
            import filterv.filter as f             # import the library
            F = f.Filter()                         # create a Class Instance
        
            input_img  = F.load_img(path_to_image) # load the image
            F.parameters()                         # Initialize the parameters
            output_img = F.convert()               # Filter the Image
            
            F.plot(input_img, output_img)          # Plot the outputs
            
        License
        --------
        
        MIT
        
        
        **Free Software, Hell Yeah!**
        
        
Keywords: filter,visual,machine learning,CNN,Convolutional,images,plot
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
