<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
def base64_to_image(base64_code): img_data = base64.b64decode(base64_code) img_array = numpy.fromstring(img_data, numpy.uint8) # img_array = np.frombuffer(image_bytes, dtype=np.uint8) #可選 image_base64_dec = cv2.imdecode(img_array, cv2.COLOR_RGB2BGR) return image_base64_dec def image_to_base64(full_path): with open(full_path, "rb") as f: data = f.read() image_base64_enc = base64.b64encode(data) image_base64_enc = str(image_base64_enc, 'utf-8') return image_base64_enc #傳base64 img_bytes = request.json["img_stream"] img_cv = base64_to_image(img_bytes) uuid_str = str(uuid.uuid1()) img_path = uuid_str +".jpg" cv2.imwrite(img_path,img_cv)
import cv2 import base64 def cv2_base64(image): img = cv2.imread(image) binary_str = cv2.imencode('.jpg', img)[1].tostring()#編碼 base64_str = base64.b64encode(binary_str)#解碼 base64_str = base64_str.decode('utf-8') myjson={"bs64":cv2_base64("1.jpg")} print(myjson) return base64_str
import cv2 import base64 def cv2_binary(image): img = cv2.imread(image) binary_str = cv2.imencode('.jpg', img)[1].tostring()#編碼 print(binary_str) # base64_str = base64.b64encode(binary_str)#解碼 # base64_str = base64_str.decode('utf-8') # print(base64_str) return binary_str cv2_binary("1.jpg") # 或者 image_file =r"1.jpg" image_bytes = open(image_file, "rb").read() print(image_bytes)# 二進位制資料
# python+OpenCV讀取影象並轉換為二進位制格式檔案的程式碼 # coding=utf-8 ''' Created on 2016年3月24日 使用Opencv讀取影象將其儲存為二進位制格式檔案,再讀取該二進位制檔案,轉換為影象進行顯示 @author: hanchao ''' import cv2 import numpy as np import struct image = cv2.imread("1.jpg") # imageClone = np.zeros((image.shape[0],image.shape[1],1),np.uint8) # image.shape[0]為rows # image.shape[1]為cols # image.shape[2]為channels # image.shape = (480,640,3) rows = image.shape[0] cols = image.shape[1] channels = image.shape[2] # 把影象轉換為二進位制檔案 # python寫二進位制檔案,f = open('name','wb') # 只有wb才是寫二進位制檔案 fileSave = open('patch.bin', 'wb') for step in range(0, rows): for step2 in range(0, cols): fileSave.write(image[step, step2, 2]) for step in range(0, rows): for step2 in range(0, cols): fileSave.write(image[step, step2, 1]) for step in range(0, rows): for step2 in range(0, cols): fileSave.write(image[step, step2, 0]) fileSave.close() # 把二進位制轉換為影象並顯示 # python讀取二進位制檔案,用rb # f.read(n)中n是需要讀取的位元組數,讀取後需要進行解碼,使用struct.unpack("B",fileReader.read(1))函數 # 其中「B」為無符號整數,佔一個位元組,「b」為有符號整數,佔1個位元組 # 「c」為char型別,佔一個位元組 # 「i」為int型別,佔四個位元組,I為有符號整形,佔4個位元組 # 「h」、「H」為short型別,佔四個位元組,分別對應有符號、無符號 # 「l」、「L」為long型別,佔四個位元組,分別對應有符號、無符號 fileReader = open('patch.bin', 'rb') imageRead = np.zeros(image.shape, np.uint8) for step in range(0, rows): for step2 in range(0, cols): a = struct.unpack("B", fileReader.read(1)) imageRead[step, step2, 2] = a[0] for step in range(0, rows): for step2 in range(0, cols): a = struct.unpack("b", fileReader.read(1)) imageRead[step, step2, 1] = a[0] for step in range(0, rows): for step2 in range(0, cols): a = struct.unpack("b", fileReader.read(1)) imageRead[step, step2, 0] = a[0] fileReader.close() cv2.imshow("source", image) cv2.imshow("read", imageRead) cv2.imwrite("2.jpg",imageRead) cv2.waitKey(0)
def binary_cv2(bytes): file = open("4.jpg","wb") file.write(bytes) binary_cv2("bytes") #或者 from PIL import Image import io img = Image.open(io.BytesIO("bytes")) img.save("5.jpg")
def base64_cv2(base64code): img_data = base64.b64decode(base64code) file = open("2.jpg","wb") file.write(img_data) file.close() base64_cv2("base64code") ============================================ with open("1.txt","r") as f: img_data = base64.b64decode(f.read()) file = open("3.jpg","wb") file.write(img_data) file.close()
def base64_to_image(base64_code): img_data = base64.b64decode(base64_code) img_array = numpy.fromstring(img_data, numpy.uint8) image_base64_dec = cv2.imdecode(img_array, cv2.COLOR_RGB2BGR) return image_base64_dec #影象矩陣,需要cv2.imwrite寫入cv2.imwrite("1.jpg",img) def image_to_base64(full_path): with open(full_path, "rb") as f: data = f.read() image_base64_enc = base64.b64encode(data) image_base64_enc = str(image_base64_enc, 'utf-8') return image_base64_enc
def binary_base64(binary): img_stream = base64.b64encode(binary) bs64 = img_stream.decode('utf-8') print(bs64)
import base64 bs64 = "" img_data = base64.b64decode(bs64) print(img_data)
以上就是Python實現影象的二進位制與base64互轉的詳細內容,更多關於Python影象二進位制轉base64的資料請關注it145.com其它相關文章!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45