python实现图像随机裁剪的示例代码


Posted in Python onDecember 10, 2020

实验条件:

  1. 从1张图像随机裁剪100张图像
  2. 裁剪出图像的大小为 60 x 60
  3. IoU 大于等于 th=0.6 的裁剪框用红色标出,其它裁剪框用蓝色标出
  4. IoU 比对原始区域用绿框标出

实验代码:

import cv2 as cv 
import numpy as np

np.random.seed(0)

# get IoU overlap ratio
def iou(a, b):
	# get area of a
 area_a = (a[2] - a[0]) * (a[3] - a[1])
	# get area of b
 area_b = (b[2] - b[0]) * (b[3] - b[1])

	# get left top x of IoU
 iou_x1 = np.maximum(a[0], b[0])
	# get left top y of IoU
 iou_y1 = np.maximum(a[1], b[1])
	# get right bottom of IoU
 iou_x2 = np.minimum(a[2], b[2])
	# get right bottom of IoU
 iou_y2 = np.minimum(a[3], b[3])

	# get width of IoU
 iou_w = iou_x2 - iou_x1
	# get height of IoU
 iou_h = iou_y2 - iou_y1

	# get area of IoU
 area_iou = iou_w * iou_h
	# get overlap ratio between IoU and all area
 iou = area_iou / (area_a + area_b - area_iou)

 return iou


# crop and create database
def crop_bbox(img, gt, Crop_N=200, L=60, th=0.5):
 # get shape
 H, W, C = img.shape

 # each crop
 for i in range(Crop_N):
  # get left top x of crop bounding box
  x1 = np.random.randint(W - L)
  # get left top y of crop bounding box
  y1 = np.random.randint(H - L)
  # get right bottom x of crop bounding box
  x2 = x1 + L
  # get right bottom y of crop bounding box
  y2 = y1 + L

  # crop bounding box
  crop = np.array((x1, y1, x2, y2))

  # get IoU between crop box and gt
  _iou = iou(gt, crop)

  # assign label
  if _iou >= th:
   cv.rectangle(img, (x1, y1), (x2, y2), (0,0,255), 1)
   label = 1
  else:
   cv.rectangle(img, (x1, y1), (x2, y2), (255,0,0), 1)
   label = 0

 return img

# read image
img = cv.imread("../xiyi.jpg")
img1 = img.copy()
# gt bounding box
gt = np.array((87, 51, 169, 113), dtype=np.float32)

# get crop bounding box
img = crop_bbox(img, gt, Crop_N=100, L=60, th=0.6)

# draw gt
cv.rectangle(img, (gt[0], gt[1]), (gt[2], gt[3]), (0,255,0), 1)
cv.rectangle(img1,(gt[0], gt[1]), (gt[2], gt[3]), (0,255,0), 1)

cv.imshow("result1",img1)
cv.imshow("result", img)
cv.imwrite("out.jpg", img)
cv.waitKey(0)
cv.destroyAllWindows()

实验结果:

python实现图像随机裁剪的示例代码

以上就是python实现图像随机裁剪的示例代码的详细内容,更多关于python 图像裁剪的资料请关注三水点靠木其它相关文章!

Python 相关文章推荐
python处理json数据中的中文
Mar 06 Python
Python实现在Linux系统下更改当前进程运行用户
Feb 04 Python
python 实时遍历日志文件
Apr 12 Python
Python 提取dict转换为xml/json/table并输出的实现代码
Aug 28 Python
Python用list或dict字段模式读取文件的方法
Jan 10 Python
Python 数据结构之旋转链表
Feb 25 Python
利用Python-iGraph如何绘制贴吧/微博的好友关系图详解
Nov 02 Python
Python+matplotlib+numpy绘制精美的条形统计图
Jan 02 Python
python3+PyQt5泛型委托详解
Apr 24 Python
pycharm修改文件的默认打开方式的步骤
Jul 29 Python
python使用SQLAlchemy操作MySQL
Jan 02 Python
如何使用python传入不确定个数参数
Feb 18 Python
python opencv图像处理(素描、怀旧、光照、流年、滤镜 原理及实现)
Dec 10 #Python
python 实现的IP 存活扫描脚本
Dec 10 #Python
class类在python中获取金融数据的实例方法
Dec 10 #Python
Python制作简单的剪刀石头布游戏
Dec 10 #Python
python给list排序的简单方法
Dec 10 #Python
详解java调用python的几种用法(看这篇就够了)
Dec 10 #Python
Python利用imshow制作自定义渐变填充柱状图(colorbar)
Dec 10 #Python
You might like
写php分页时出现的Fatal error的解决方法
2011/04/18 PHP
PHP中实现中文字符进制转换原理分析
2011/12/06 PHP
php命令行用法入门实例教程
2014/10/27 PHP
yii分页组件用法实例分析
2015/12/28 PHP
thinkphp 手机号和用户名同时登录
2017/01/20 PHP
PHP+AjaxForm异步带进度条上传文件实例代码
2017/08/14 PHP
JavaScript中继承的一些示例方法与属性参考
2010/08/07 Javascript
jQuery EasyUI API 中文文档 - Panel面板
2011/09/30 Javascript
jQuery固定元素插件scrolltofixed使用指南
2015/04/21 Javascript
Jquery Ajax Error 调试错误的技巧
2015/11/20 Javascript
json传值以及ajax接收详解
2016/05/24 Javascript
Vue2.0 从零开始_环境搭建操作步骤
2017/06/14 Javascript
React学习之事件绑定的几种方法对比
2017/09/24 Javascript
node.js利用socket.io实现多人在线匹配联机五子棋
2018/05/31 Javascript
微信小程序项目总结之记账小程序功能的实现(包括后端)
2019/08/20 Javascript
解决vue 退出动画无效的问题
2020/08/09 Javascript
Python对两个有序列表进行合并和排序的例子
2014/06/13 Python
Python入门_浅谈逻辑判断与运算符
2017/05/16 Python
Python lambda函数基本用法实例分析
2018/03/16 Python
python存储16bit和32bit图像的实例
2018/12/05 Python
利用python实现简易版的贪吃蛇游戏(面向python小白)
2018/12/30 Python
对Xpath 获取子标签下所有文本的方法详解
2019/01/02 Python
Python何时应该使用Lambda函数
2019/07/02 Python
python函数不定长参数使用方法解析
2019/12/14 Python
Python常用库Numpy进行矩阵运算详解
2020/07/21 Python
html5跨域通讯之postMessage的用法总结
2013/11/07 HTML / CSS
巴西最大的珠宝连锁店:Vivara
2019/04/18 全球购物
Camille Jewelry官网:现代女性时尚首饰
2019/07/07 全球购物
Wedgwood英国官方网站:英式精致骨瓷餐具、礼品与生活精品,源于1759年
2019/09/02 全球购物
五年后的职业生涯规划
2014/03/04 职场文书
综合实践活动总结
2014/05/05 职场文书
红色旅游心得体会
2014/09/03 职场文书
2014年保育员个人工作总结
2014/12/02 职场文书
消防安全主题班会
2015/08/12 职场文书
springboot如何接收application/x-www-form-urlencoded类型的请求
2021/11/02 Java/Android
windows11怎么查看自己安装的版本号? win11版本号的查看方法
2021/11/21 数码科技