1 Star 0 Fork 1

fastsafe/keras-yolo3-detection

forked from MSNH/keras-yolo3-detection 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
boxes_drawer.py 840 Bytes
一键复制 编辑 原始数据 按行查看 历史
wcl1 提交于 2018-07-11 11:19 . update
#!/usr/bin/env python
# -- coding: utf-8 --
"""
Copyright (c) 2018. All rights reserved.
Created by C. L. Wang on 2018/7/11
"""
import cv2
import os
from root_dir import ROOT_DIR
def draw_img(image, boxes):
img = cv2.imread(image)
for box in boxes:
x_min, y_min, x_max, y_max = box
i1_pt1 = (int(x_min), int(y_min))
i1_pt2 = (int(x_max), int(y_max))
cv2.rectangle(img, pt1=i1_pt1, pt2=i1_pt2, thickness=3, color=(255, 0, 255))
cv2.imshow('Image', img)
cv2.imwrite('./data/img_346.bbox.jpg', img)
cv2.waitKey(0)
if __name__ == '__main__':
img_path = os.path.join(ROOT_DIR, 'dataset', 'originalPics', '2002/08/22/big/img_734.jpg')
print(img_path)
boxes = [(87, 0, 229, 215), (149, 263, 163, 283), (178, 260, 192, 282), (205, 270, 220, 291)]
draw_img(img_path, boxes)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/fastsafe/keras-yolo3-detection.git
git@gitee.com:fastsafe/keras-yolo3-detection.git
fastsafe
keras-yolo3-detection
keras-yolo3-detection
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385