Metadata-Version: 2.1
Name: cv2imageload
Version: 1.0.1
Summary: python cv2 load image from image file, url or base64 code of image
Home-page: https://github.com/ShawnZhang31/cv2ImageLoad.git
Author: Shawn Zhang
Author-email: shawnzhang31@gmail.com
License: UNKNOWN
Description: # cv2ImageLoad
        python cv2通过图片文件、图片url、图片的base64编码加载图片。[cv2ImageLoad](https://github.com/ShawnZhang31/cv2ImageLoad/blob/master/README.md)
        
        ## 安装
        ```
        pip install cv2imageload
        ```
        ## 使用
        ```
        from cv2imageload import ImageLoad, ImageLoadError
        
        file = 'th-108.jpg'
        url = 'http://*.com/test.png'
        base64_str = '图片的base64编码字符串'
        
        # 加载图片文件
        try:
            image = ImageLoad.loadImage(file)
        except ImageLoadError as e:
            print(e.reason)
        ```
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.0
Description-Content-Type: text/markdown
