Metadata-Version: 1.2
Name: SMDTest
Version: 1.0.0
Summary: calculate the disparity from a stereo image using PSMNet
Home-page: https://github.com/NewBee
Author: Faliu
Author-email: yifaliu86@gmail.com
Maintainer: Faliu
Maintainer-email: yifaliu86@gmail.com
License: BSD License
Description: 
        SMDTest
        ======
        
        A simple python wrapper for disparity calculation.
        
        The PSMNet is from: https://github.com/JiaRenChang/PSMNet
        
        
        The code is Python 2, but Python 3 compatible.
        
        Installation
        ============
        
        Fast install:
        
        ```
        for python2: pip install SMDTest
        
        for python3: pip3 install SMDTest
        ```    
        
        
        Example:
        
        
        ```
        from PSMNet import smd
        disparity_img = smd.calculate_disparity(imgL,imgR)
        corrected_img = smd.correct_img(imgR,disparity_img)
        ```
        
        
Platform: all
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: Implementation
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries
