内容简介:本次Kornia 的更新中,主要增加对Canny的支持以及新增了多种图像处理容器(例如,视频容器,图像增广容器)。 例如对于数据增广中的各种常见格式(mask, bbox, keypoints),以及图像变换的inverse: aug_list...
本次Kornia 的更新中,主要增加对Canny的支持以及新增了多种图像处理容器(例如,视频容器,图像增广容器)。
例如对于数据增广中的各种常见格式(mask, bbox, keypoints),以及图像变换的inverse:
aug_list = AugmentationSequential(
K.ColorJitter(0.1, 0.1, 0.1, 0.1, p=1.0),
K.RandomAffine(360, [0.1, 0.1], [0.7, 1.2], [30., 50.], p=1.0),
K.RandomPerspective(0.5, p=1.0),
data_keys=["input", "bbox", "keypoints", "mask"], # Just to define the future input here.
return_transform=False,
same_on_batch=False,
)
# forward the operation
out_tensors = aug_list(img_tensor, bbox, keypoints, mask)
# Inverse the operation
out_tensor_inv = aug_list.inverse(*out_tensor)
此外,我们新增了PatchAugmentSequential来支持更多最新的图像增强方法。
[0.5.4] - 2021-06-11
Added
- Add Canny edge detection (#1020)
- Added Batched forward function (#1058)
- Added denormalize homography function (#1061)
- Added more augmentations containers (#1014)
- Added calibration module and Undistort 2D points function (#1026)
- Added patch augmentation container (#1095)
Fixed
- Remove lena (#1059) :)
Changed
- Resize regardless of number of dims, considering the last two dims as image (#1047)
- Raise error if converting to unit8 image to gray with float weights (#1057)
- Filter 2D->2d, 3D->3d (#1069)
- Removed augmentation functional module. (#1067)
- Make Morphology compatible with both OpenCV and Scipy (#1084)
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- AutoML数据增广 原 荐
- EDA:最简单的自然语言处理数据增广方法
- 谷歌简单粗暴 “复制-粘贴” 数据增广,刷新 COCO 目标检测与实例分割新高度
- WookTeam 1.2 发布,新增知识库markdown编辑器,新增知识库协作更新通知
- rails - 新增middleware
- 如何正确新增字段
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
算法设计与应用
迈克尔 T. 古德里奇(Michael T. Goodrich)、罗伯特·塔马契亚(Roberto Tamas / 乔海燕、李悫炜、王烁程 / 机械工业出版社 / 2017-11-20 / CNY 139.00
本书全面系统地介绍算法设计和算法应用的各个领域,内容涵盖经典数据结构、经典算法、算法分析方法、算法设计方法以及算法在各个领域的应用,还包含一些高级主题。本书采用应用驱动的方法引入各章内容,内容编排清晰合理,讲解由浅入深。此外,各章都附有巩固练习、创新练习和应用练习三种类型的题目,为读者理解和掌握算法设计和应用提供了很好的素材。 本书可作为高等院校计算机及相关专业“数据结构和算法”课程的本科生......一起来看看 《算法设计与应用》 这本书的介绍吧!