确定性地为图像生成一个随机扭曲的边界框。
用法
tf.raw_ops.StatelessSampleDistortedBoundingBox(
image_size, bounding_boxes, min_object_covered, seed, aspect_ratio_range=[0.75,
1.33], area_range=[0.05, 1], max_attempts=100,
use_image_if_no_bounding_boxes=False, name=None
)
参数
-
image_size
一个Tensor
。必须是以下类型之一:uint8
,int8
,int16
,int32
,int64
。一维,包含[height, width, channels]
。 -
bounding_boxes
Tensor
类型为float32
。 3-D,形状为[batch, N, 4]
,说明了与图像相关的 N 个边界框。 -
min_object_covered
Tensor
类型为float32
。图像的裁剪区域必须至少包含所提供的任何边界框的这一部分。此参数的值应为非负数。在 0 的情况下,裁剪区域不需要与提供的任何边界框重叠。 -
seed
一个Tensor
。必须是以下类型之一:int32
,int64
。一维形状[2]
。随机数生成器的种子。必须具有数据类型int32
或int64
。 (使用 XLA 时,仅允许使用int32
。) -
aspect_ratio_range
floats
的可选列表。默认为[0.75, 1.33]
。图像的裁剪区域必须在此范围内具有纵横比 = 宽度 /高度。 -
area_range
floats
的可选列表。默认为[0.05, 1]
。图像的裁剪区域必须包含此范围内提供的图像的一小部分。 -
max_attempts
可选的int
。默认为100
。尝试生成具有指定约束的图像的裁剪区域的次数。max_attempts
失败后,返回整个图像。 -
use_image_if_no_bounding_boxes
可选的bool
。默认为False
。如果未提供边界框,则控制行为。如果为真,则假设一个隐式边界框覆盖整个输入。如果为 false,则引发错误。 -
name
操作的名称(可选)。
返回
-
Tensor
对象的元组(开始、大小、bbox)。 -
begin
一个Tensor
。具有与image_size
相同的类型。 -
size
一个Tensor
。具有与image_size
相同的类型。 -
bboxes
Tensor
类型为float32
。
在图像识别或对象定位任务中,除了 ground-truth 标签之外,通常还提供边界框注释。训练这种系统的常用技术是在保留其内容的同时随机扭曲图像,即数据增强。这个操作,给定相同的 seed
,确定性地输出对象的随机失真定位,即边界框,给定 image_size
, bounding_boxes
和一系列约束。
这个 Op 的输出是一个单一的边界框,可以用来裁剪原始图像。输出作为 3 个张量返回:begin
, size
和 bboxes
。前 2 个张量可以直接输入 tf.slice
以裁剪图像。后者可以提供给tf.image.draw_bounding_boxes
以可视化边界框的外观。
边界框以 [y_min, x_min, y_max, x_max]
的形式提供和返回。边界框坐标是 [0.0, 1.0]
中相对于底层图像的宽度和高度的浮点数。
在给定相同的 seed
的情况下,此操作的输出保证相同,并且与调用函数的次数无关,并且与全局种子设置(例如 tf.random.set_seed
)无关。
示例用法:
image = np.array([[[1], [2], [3]], [[4], [5], [6]], [[7], [8], [9]]])
bbox = tf.constant(
[0.0, 0.0, 1.0, 1.0], dtype=tf.float32, shape=[1, 1, 4])
seed = (1, 2)
# Generate a single distorted bounding box.
bbox_begin, bbox_size, bbox_draw = (
tf.image.stateless_sample_distorted_bounding_box(
tf.shape(image), bounding_boxes=bbox, seed=seed))
# Employ the bounding box to distort the image.
tf.slice(image, bbox_begin, bbox_size)
<tf.Tensor:shape=(2, 2, 1), dtype=int64, numpy=
array([[[1],
[2]],
[[4],
[5]]])>
# Draw the bounding box in an image summary.
colors = np.array([[1.0, 0.0, 0.0], [0.0, 0.0, 1.0]])
tf.image.draw_bounding_boxes(
tf.expand_dims(tf.cast(image, tf.float32),0), bbox_draw, colors)
<tf.Tensor:shape=(1, 3, 3, 1), dtype=float32, numpy=
array([[[[1.],
[1.],
[3.]],
[[1.],
[1.],
[6.]],
[[7.],
[8.],
[9.]]]], dtype=float32)>
请注意,如果没有可用的边界框信息,设置 use_image_if_no_bounding_boxes = true
将假定有一个隐式边界框覆盖整个图像。如果use_image_if_no_bounding_boxes
为假且未提供边界框,则会引发错误。
相关用法
- Python tf.raw_ops.StatelessCase用法及代码示例
- Python tf.raw_ops.StringStrip用法及代码示例
- Python tf.raw_ops.StopGradient用法及代码示例
- Python tf.raw_ops.StringToHashBucketStrong用法及代码示例
- Python tf.raw_ops.StringLength用法及代码示例
- Python tf.raw_ops.StringToHashBucketFast用法及代码示例
- Python tf.raw_ops.StringToNumber用法及代码示例
- Python tf.raw_ops.StringJoin用法及代码示例
- Python tf.raw_ops.StringSplitV2用法及代码示例
- Python tf.raw_ops.StringUpper用法及代码示例
- Python tf.raw_ops.StridedSlice用法及代码示例
- Python tf.raw_ops.StringLower用法及代码示例
- Python tf.raw_ops.SelfAdjointEigV2用法及代码示例
- Python tf.raw_ops.Size用法及代码示例
- Python tf.raw_ops.ScatterUpdate用法及代码示例
- Python tf.raw_ops.ScatterNdUpdate用法及代码示例
- Python tf.raw_ops.SparseCrossV2用法及代码示例
- Python tf.raw_ops.ScatterAdd用法及代码示例
- Python tf.raw_ops.Sub用法及代码示例
- Python tf.raw_ops.SparseCross用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.raw_ops.StatelessSampleDistortedBoundingBox。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。