Metadata-Version: 2.1
Name: python-DrowsyDetection
Version: 0.1.2
Summary: Library for drowsiness detection using deep learning
Home-page: UNKNOWN
Author: Ajit Singh Rathore
Author-email: ajitsinghrathore64277@gmail.com
License: MIT
Description: This library uses deep learning to detect drowsiness of a person
        
        Before using this library make sure you have installed following libraries which are needed
        
        1. Tensorflow ( pip install tensorflow )
        2. keras ( pip install keras )
        3. pyaudio
        4. pyttsx3
        
        
        
        
        
        
        
        To use it just follow the steps
        
        initialize detector inside __name__ == "__main__"  (as for processing frames library will create a new process
        so if code will be outside this if condition then in some os like windows script may get stuck in infinite loop) :
        
        1.  import it in your project
             from DrowsinessDetection.DrowsinessDetector import  getDetector
        
        2.   initializing the detector
             d = getDetector()(UseAssistant=True)
        
        3.   starting the detector in separate thread
             d.start()
        
             # your other code .........
        
        4.   d.join()
        
        
         Use Voice Assistant  to control the sensitivity of detector and for quiting
        
         voice commands are ----->>>
         1.  sensitivity low
         2. sensitivity medium
         3. sensitivity high
         4. quit
        
        Change Log
        
        ===============
        
        
        0.0.4
        -------------
        -  will install tensorflow and keras for you
        
        0.0.5
        ---------------
        - you can use your version of tensorflow and keras which you have
        
        
        0.0.6
        ----------------
        - you can give your own  audio file to play
        
        0.0.7
        ------------------
        -  audio commands added
        
        
        0.1.0
        -------------------
        -   optimizations
        
        0.1.1
        -------------
        - changed model
        
Keywords: Drowsiness
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Education
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/plain
