python cv2展示网络图片、图片编解码、及与base64转换

系统 1989 0

从网络读取图像数据并展示

  • 需要使用 cv2.imdecode() 函数,从指定的内存缓存中读取数据,并把数据转换(解码)成图像格式;主要用于从网络传输数据中恢复出图像。
            
              
                # -*- coding: utf-8 -*-
              
              
                import
              
               numpy 
              
                as
              
               np

              
                from
              
               urllib 
              
                import
              
               request

              
                import
              
               cv2
 
url 
              
                =
              
              
                'https://www.baidu.com/img/superlogo_c4d7df0a003d3db9b65e9ef0fe6da1ec.png?where=super'
              
              
resp 
              
                =
              
               request
              
                .
              
              urlopen
              
                (
              
              url
              
                )
              
              
image 
              
                =
              
               np
              
                .
              
              asarray
              
                (
              
              
                bytearray
              
              
                (
              
              resp
              
                .
              
              read
              
                (
              
              
                )
              
              
                )
              
              
                ,
              
               dtype
              
                =
              
              
                "uint8"
              
              
                )
              
              
image 
              
                =
              
               cv2
              
                .
              
              imdecode
              
                (
              
              image
              
                ,
              
               cv2
              
                .
              
              IMREAD_COLOR
              
                )
              
              
cv2
              
                .
              
              imshow
              
                (
              
              
                'url_image_show'
              
              
                ,
              
               image
              
                )
              
              
                if
              
               cv2
              
                .
              
              waitKey
              
                (
              
              
                10000
              
              
                )
              
              
                &
              
              
                0xFF
              
              
                ==
              
              
                ord
              
              
                (
              
              
                'q'
              
              
                )
              
              
                :
              
              
    cv2
              
                .
              
              destroyAllWindows
              
                (
              
              
                )
              
            
          

展示图片:
python cv2展示网络图片、图片编解码、及与base64转换_第1张图片

图片编码保存到本地,读取本地文件解码恢复成图片格式并展示

  • 需要使用 cv2.imencode() 函数,将图片格式转换(编码)成流数据,赋值到内存缓存;主要用于图像数据格式的压缩,方便网络传输。
            
              
                # -*- coding: utf-8 -*-
              
              
                import
              
               numpy 
              
                as
              
               np

              
                import
              
               cv2
 
img 
              
                =
              
               cv2
              
                .
              
              imread
              
                (
              
              
                'cat.jpg'
              
              
                )
              
              
                '''
cv2.imencode()函数是将图片格式转换(编码)成流数据,赋值到内存缓存中;主要用于图像数据格式的压缩,方便网络传输
'.jpg'表示把当前图片img按照jpg格式编码,按照不同格式编码的结果不一样
'''
              
              
img_encode 
              
                =
              
               cv2
              
                .
              
              imencode
              
                (
              
              
                '.jpg'
              
              
                ,
              
               img
              
                )
              
              
                [
              
              
                1
              
              
                ]
              
              
                # imgg = cv2.imencode('.png', img)
              
              
 
data_encode 
              
                =
              
               np
              
                .
              
              array
              
                (
              
              img_encode
              
                )
              
              
str_encode 
              
                =
              
               data_encode
              
                .
              
              tostring
              
                (
              
              
                )
              
              
                # 缓存数据保存到本地,以txt格式保存
              
              
                with
              
              
                open
              
              
                (
              
              
                'img_encode.txt'
              
              
                ,
              
              
                'wb'
              
              
                )
              
              
                as
              
               f
              
                :
              
              
    f
              
                .
              
              write
              
                (
              
              str_encode
              
                )
              
              
    f
              
                .
              
              flush
 

              
                with
              
              
                open
              
              
                (
              
              
                'img_encode.txt'
              
              
                ,
              
              
                'rb'
              
              
                )
              
              
                as
              
               f
              
                :
              
              
    str_encode 
              
                =
              
               f
              
                .
              
              read
              
                (
              
              
                )
              
              
 
nparr 
              
                =
              
               np
              
                .
              
              fromstring
              
                (
              
              str_encode
              
                ,
              
               np
              
                .
              
              uint8
              
                )
              
              
img_decode 
              
                =
              
               cv2
              
                .
              
              imdecode
              
                (
              
              nparr
              
                ,
              
               cv2
              
                .
              
              IMREAD_COLOR
              
                )
              
              
                '''
# 或
nparr = np.asarray(bytearray(str_encode), dtype="uint8")
img_decode = cv2.imdecode(image, cv2.IMREAD_COLOR)
'''
              
              
cv2
              
                .
              
              imshow
              
                (
              
              
                "img_decode"
              
              
                ,
              
               img_decode
              
                )
              
              
                if
              
               cv2
              
                .
              
              waitKey
              
                (
              
              
                10000
              
              
                )
              
              
                &
              
              
                0xFF
              
              
                ==
              
              
                ord
              
              
                (
              
              
                'q'
              
              
                )
              
              
                :
              
              
        cv2
              
                .
              
              destroyAllWindows
              
                (
              
              
                )
              
            
          

展示图片:
python cv2展示网络图片、图片编解码、及与base64转换_第2张图片

将np图片(imread后的图片)转码为base64格式

            
              
                def
              
              
                image_to_base64
              
              
                (
              
              image_np
              
                )
              
              
                :
              
              
 
    image 
              
                =
              
               cv2
              
                .
              
              imencode
              
                (
              
              
                '.jpg'
              
              
                ,
              
              image_np
              
                )
              
              
                [
              
              
                1
              
              
                ]
              
              
    image_code 
              
                =
              
              
                str
              
              
                (
              
              base64
              
                .
              
              b64encode
              
                (
              
              image
              
                )
              
              
                )
              
              
                [
              
              
                2
              
              
                :
              
              
                -
              
              
                1
              
              
                ]
              
              
                return
              
               image_code

            
          

将base64编码解析成opencv可用图片

            
              
                def
              
              
                base64_to_image
              
              
                (
              
              base64_code
              
                )
              
              
                :
              
              
                # base64解码
              
              
    img_data 
              
                =
              
               base64
              
                .
              
              b64decode
              
                (
              
              base64_code
              
                )
              
              
                # 转换为np数组
              
              
    img_array 
              
                =
              
               np
              
                .
              
              fromstring
              
                (
              
              img_data
              
                ,
              
               np
              
                .
              
              uint8
              
                )
              
              
                # 转换成opencv可用格式
              
              
    img 
              
                =
              
               cv2
              
                .
              
              imdecode
              
                (
              
              img_array
              
                ,
              
               cv2
              
                .
              
              COLOR_RGB2BGR
              
                )
              
              
                return
              
               img

            
          

更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论