Metadata-Version: 2.1
Name: opencv-utf-8
Version: 0.0.4
Summary: Support opencv read and write image using utf-8 paths
Home-page: https://github.com/azzhu/opencv-utf-8
Author: azzhu
Author-email: zhu.qingjie@qq.com
License: MIT
Project-URL: Source Code, https://github.com/azzhu/opencv-utf-8
Project-URL: Bug Tracker, https://github.com/azzhu/opencv-utf-8/issues
Project-URL: Documentation, https://github.com/azzhu/opencv-utf-8
Description: 
        ## Opencv读写文件的路径对utf-8（包括中文路径）的支持
        
        **Support opencv reading and writing image using utf-8 paths.**
        
        ### Install
        
        Install using pip:
        
        ```commandline
        pip install opencv-utf-8
        ```
        
        or:
        
        ```commandline
        pip install -i https://pypi.org/simple/ opencv-utf-8
        ```
        
        ### Usage
        
        ```python
        import cv2_ext
        import cv2
        
        img = cv2_ext.imread(r'E:\壁纸\pc-twoup-weibu.jpg')
        cv2.imshow('', img)
        cv2.waitKey()
        
        cv2_ext.imwrite(r'E:\壁纸\pc-twoup-weibu_中文.tif', img)
        ```
        
        
        Thanks.
        
        Good luck bro.
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3
Description-Content-Type: text/markdown
