テンソルフロー::作戦::サンプルDistortedBoundingBoxV2
#include <image_ops.h>
画像に対してランダムに歪んだ単一の境界ボックスを生成します。
まとめ
多くの場合、境界ボックスの注釈は、画像認識タスクやオブジェクト位置特定タスクでグラウンドトゥルース ラベルに加えて提供されます。このようなシステムをトレーニングするための一般的な手法は、コンテンツを維持しながら画像をランダムに歪ませる、つまりデータ拡張です。この Op は、 image_size
、 bounding_boxes
および一連の制約を指定して、ランダムに歪んだオブジェクトの位置、つまりバウンディング ボックスを出力します。
この Op の出力は、元の画像をトリミングするために使用できる単一の境界ボックスです。出力は、 begin
、 size
、 bboxes
の 3 つのテンソルとして返されます。最初の 2 つのテンソルをtf.slice
に直接入力して画像をトリミングできます。後者は、境界ボックスがどのように見えるかを視覚化するためにtf.image.draw_bounding_boxes
に指定できます。
境界ボックスは[y_min, x_min, y_max, x_max]
として指定され、返されます。境界ボックスの座標は、下にある画像の幅と高さを基準にして[0.0, 1.0]
の浮動小数点数です。
例えば、
# Generate a single distorted bounding box. begin, size, bbox_for_draw = tf.image.sample_distorted_bounding_box( tf.shape(image), bounding_boxes=bounding_boxes)
# Draw the bounding box in an image summary. image_with_box = tf.image.draw_bounding_boxes(tf.expand_dims(image, 0), bbox_for_draw) tf.summary.image('images_with_box', image_with_box)
# Employ the bounding box to distort the image. distorted_image = tf.slice(image, begin, size)
境界ボックス情報が利用できない場合、 use_image_if_no_bounding_boxes = true
に設定すると、画像全体をカバーする単一の暗黙的な境界ボックスがあると想定されることに注意してください。 use_image_if_no_bounding_boxes
が false で、境界ボックスが指定されていない場合、エラーが発生します。
引数:
- スコープ:スコープオブジェクト
- image_size: 1-D、
[height, width, channels]
を含みます。 - bounding_boxes: 画像に関連付けられた N 個の境界ボックスを表す形状
[batch, N, 4]
の 3 次元。 - min_object_covered: 画像のトリミングされた領域には、指定された境界ボックスの少なくともこの部分が含まれている必要があります。このパラメータの値は負ではない必要があります。 0 の場合、トリミングされた領域は、指定された境界ボックスのいずれとも重なる必要はありません。
オプションの属性 ( Attrs
を参照):
- シード:
seed
またはseed2
いずれかがゼロ以外に設定されている場合、乱数ジェネレーターは指定されたseed
によってシードされます。それ以外の場合は、ランダム シードによってシードされます。 - シード2: シードの衝突を避けるための 2 番目のシード。
- spect_ratio_range: 画像のトリミングされた領域のアスペクト比 = 幅 / 高さがこの範囲内である必要があります。
- area_range: 画像のトリミングされた領域には、この範囲内の指定された画像の一部が含まれている必要があります。
- max_attempts: 指定された制約の画像の切り取られた領域を生成する試行回数。
max_attempts
回の失敗の後、イメージ全体を返します。 - use_image_if_no_bounding_boxes: 境界ボックスが指定されていない場合の動作を制御します。 true の場合、入力全体をカバーする暗黙的な境界ボックスがあると見なされます。 false の場合、エラーが発生します。
戻り値:
-
Output
開始: 1-D、[offset_height, offset_width, 0]
を含む。tf.slice
への入力として提供します。 -
Output
サイズ: 1-D、[target_height, target_width, -1]
を含みます。tf.slice
への入力として提供します。 -
Output
bboxes: 歪んだ境界ボックスを含む形状[1, 1, 4]
の 3-D。tf.image.draw_bounding_boxes
への入力として提供します。
コンストラクターとデストラクター | |
---|---|
SampleDistortedBoundingBoxV2 (const :: tensorflow::Scope & scope, :: tensorflow::Input image_size, :: tensorflow::Input bounding_boxes, :: tensorflow::Input min_object_covered) | |
SampleDistortedBoundingBoxV2 (const :: tensorflow::Scope & scope, :: tensorflow::Input image_size, :: tensorflow::Input bounding_boxes, :: tensorflow::Input min_object_covered, const SampleDistortedBoundingBoxV2::Attrs & attrs) |
パブリック属性 | |
---|---|
bboxes | |
begin | |
operation | |
size |
パブリック静的関数 | |
---|---|
AreaRange (const gtl::ArraySlice< float > & x) | |
AspectRatioRange (const gtl::ArraySlice< float > & x) | |
MaxAttempts (int64 x) | |
Seed (int64 x) | |
Seed2 (int64 x) | |
UseImageIfNoBoundingBoxes (bool x) |
構造体 | |
---|---|
tensorflow:: ops:: SampleDistortedBoundingBoxV2:: Attrs | SampleDistortedBoundingBoxV2のオプションの属性セッター。 |
パブリック属性
Bボックス
::tensorflow::Output bboxes
始める
::tensorflow::Output begin
手術
Operation operation
サイズ
::tensorflow::Output size
公共機能
サンプルDistortedBoundingBoxV2
SampleDistortedBoundingBoxV2( const ::tensorflow::Scope & scope, ::tensorflow::Input image_size, ::tensorflow::Input bounding_boxes, ::tensorflow::Input min_object_covered )
サンプルDistortedBoundingBoxV2
SampleDistortedBoundingBoxV2( const ::tensorflow::Scope & scope, ::tensorflow::Input image_size, ::tensorflow::Input bounding_boxes, ::tensorflow::Input min_object_covered, const SampleDistortedBoundingBoxV2::Attrs & attrs )
パブリック静的関数
エリア範囲
Attrs AreaRange( const gtl::ArraySlice< float > & x )
アスペクト比範囲
Attrs AspectRatioRange( const gtl::ArraySlice< float > & x )
最大試行数
Attrs MaxAttempts( int64 x )
シード
Attrs Seed( int64 x )
シード2
Attrs Seed2( int64 x )
UseImageIfNoBoundingBoxes
Attrs UseImageIfNoBoundingBoxes( bool x )