1 Star 3 Fork 3

狼狼/Turix-9Hv2

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
JPG2BGR.py 651 Bytes
一键复制 编辑 原始数据 按行查看 历史
Le_Loup 提交于 2021-11-01 22:50 . 代码公开
import os
import cv2
from numpy import *
import numpy as np
img = "./dog_bike_car_320x320.jpg"
output = "./dog_bike_car_320x320.bgr"
def png2bgr(img, output):
img_cv2 = cv2.imread(img)
shape = img_cv2.shape
print(shape) # [w, h, 3]
(B, G, R) = cv2.split(img_cv2)
with open (output, 'wb') as fp:
for i in range(320):
for j in range(320):
fp.write(B[i, j])
for i in range(320):
for j in range(320):
fp.write(G[i, j])
for i in range(320):
for j in range(320):
fp.write(R[i, j])
print("done")
png2bgr(img, output)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Le_Loup/turix-9hv2.git
git@gitee.com:Le_Loup/turix-9hv2.git
Le_Loup
turix-9hv2
Turix-9Hv2
master

搜索帮助