加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
show_image.py 915 Bytes
一键复制 编辑 原始数据 按行查看 历史
YunYang1994 提交于 2019-07-18 09:11 . yymnist
#! /usr/bin/env python
# coding=utf-8
#================================================================
# Copyright (C) 2019 * Ltd. All rights reserved.
#
# Editor : VIM
# File name : show_image.py
# Author : YunYang1994
# Created date: 2019-07-13 09:12:53
# Description :
#
#================================================================
import cv2
import numpy as np
from PIL import Image
ID = 0
label_txt = "./yymnist/labels.txt"
image_info = open(label_txt).readlines()[ID].split()
image_path = image_info[0]
image = cv2.imread(image_path)
for bbox in image_info[1:]:
bbox = bbox.split(",")
image = cv2.rectangle(image,(int(float(bbox[0])),
int(float(bbox[1]))),
(int(float(bbox[2])),
int(float(bbox[3]))), (255,0,0), 2)
image = Image.fromarray(np.uint8(image))
image.show()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化