Metadata-Version: 2.1
Name: ipwebcam
Version: 0.2.1
Summary: This is a simple module that helps in accessing the image from the Android App IPWebcam and to be able to display it in pygame
Home-page: https://github.com/Michael-Jalloh/ipwebcam
Author: Michael Jalloh
Author-email: michaeljalloh19@gmail.com
License: MIT
Download-URL: https://github.com/Michael-Jalloh/ipwebcam/archive/v_02.1.tar.gz
Description: This is a simple script that helps in accessing the image from the Android App
        IPWebcam and to be able to display it in pygame
        
        
        # Requirements
        1. **opencv 2**
        2. **numpy**
        3. **pygame**
        
        # Usage
        
        ```python
        import sys
        import pygame
        from IPWebCam import *
        
        pygame.init()
        
        clock = pygame.time.Clock()
        screen = pygame.display.set_mode((176,144))
        
        ipcam = IPWEBCAM('192.168.1.103:8080') # thats the server address shown on the IP webcam, don't add 'http://' the class adds it
        
        run = True
        while run:
          for event in pygame.event.get():
            if event.type == pygame.QUIT:
              run = False
              pygame.quit()
              sys.exit()
          screen.blit(ipcam.get_pygame_image(),(0,0))
          pygame.display.flip()
          clock.tick(0)
        ```
        
        # Features
        - Camera Swap
        - Overlay control
        - Flash light control
        - Set quality
        - Set orientation
        - Set resolution
        - Zoom
        
Keywords: ipwebcam,pygame,opencv,cv3,cv2
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.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
