Metadata-Version: 2.1
Name: cannycam
Version: 0.0.2
Summary: A facial and anatomical recognition program
Home-page: http://github.com/cooltoast/CannyCam
Author: cooltoast
License: MIT
Description: CannyCam
        ========
        
        Uses webcam stream and performs Canny Edge Detection and Haar Cascade image detection.
        
        Canny Edge Detection removes noise from image, giving black background and white outline. This accentuates sharp edges in the image, making it very easy to detect a target.
        
        Haar Cascade image detection actually detects the target, given a training set of positive images (pictures of the target) and negative images (pictures not containing target, should be images of the physical backgroud used for the experiment).
        
        Together, they take a video as a stream of images, to isolate and detect the target.
        
        Targets used: face, upper body, lower body, hands. Knee, elbow, smaller body parts are work in progress.
        
        Next step is to implement this into a diagnostic image detection program for assisting doctors. E.g. patient goes to doctor with broken ankle, doctor takes x-ray, diagnostic image detection program may be able to detect certain problems with patient's ankle upon scanning the x-ray. 
        
        CannyCam. Better than a nannycam.
        
        Installation
        ----
        ```bash
        pip install cannycam
        ```
        
        Run
        ---
        From the command line
        ```bash
        python -m cannycam.cannycam
        python -m cannycam.haarcam
        python -m cannycam.cannyhaarcam
        ```
        
        Or in python
        ```python
        import cannycam
        
        cannycam.cannycam.main()
        cannycam.haarcam.main()
        cannycam.cannyhaarcam.main()
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Scientific/Engineering :: Image Recognition
Description-Content-Type: text/markdown
