計算 4-D value
和 3-D kernel
張量的灰度侵蝕。
用法
tf.compat.v1.nn.erosion2d(
value, kernel, strides, rates, padding, name=None
)
參數
-
value
一個Tensor
。 4-D 形狀[batch, in_height, in_width, depth]
。 -
kernel
一個Tensor
。必須與value
具有相同的類型。 3-D 形狀[kernel_height, kernel_width, depth]
。 -
strides
長度為>= 4
的ints
列表。長度為 4 的一維。輸入張量的每個維度的滑動窗口的步幅。必須是:[1, stride_height, stride_width, 1]
。 -
rates
長度為>= 4
的ints
列表。長度為 4 的 1-D。atrous 形態擴張的輸入步幅。必須是:[1, rate_height, rate_width, 1]
。 -
padding
string
來自:"SAME", "VALID"
。要使用的填充算法的類型。 -
name
操作的名稱(可選)。如果未指定,則使用 "erosion2d"。
返回
-
一個
Tensor
。具有與value
相同的類型。 4-D 形狀[batch, out_height, out_width, depth]
。
拋出
-
ValueError
如果value
深度與kernel
' 形狀不匹配,或者填充不是'VALID'
或'SAME'
。
value
張量的形狀為 [batch, in_height, in_width, depth]
而 kernel
張量的形狀為 [kernel_height, kernel_width, depth]
,即每個輸入通道獨立於其他輸入通道進行處理,並具有自己的結構化函數。 output
張量的形狀為 [batch, out_height, out_width, depth]
。輸出張量的空間維度取決於padding
算法。我們目前隻支持默認的 "NHWC" data_format
。
詳細而言,灰度形態二維侵蝕由下式給出:
output[b, y, x, c] =
min_{dy, dx} value[b,
strides[1] * y - rates[1] * dy,
strides[2] * x - rates[2] * dx,
c] -
kernel[dy, dx, c]
對偶性:kernel
對value
的腐蝕等於-value
被反射的kernel
對膨脹的否定。
相關用法
- Python tf.compat.v1.nn.embedding_lookup_sparse用法及代碼示例
- Python tf.compat.v1.nn.static_rnn用法及代碼示例
- Python tf.compat.v1.nn.sufficient_statistics用法及代碼示例
- Python tf.compat.v1.nn.dynamic_rnn用法及代碼示例
- Python tf.compat.v1.nn.separable_conv2d用法及代碼示例
- Python tf.compat.v1.nn.depthwise_conv2d_native用法及代碼示例
- Python tf.compat.v1.nn.weighted_cross_entropy_with_logits用法及代碼示例
- Python tf.compat.v1.nn.depthwise_conv2d用法及代碼示例
- Python tf.compat.v1.nn.convolution用法及代碼示例
- Python tf.compat.v1.nn.conv2d用法及代碼示例
- Python tf.compat.v1.nn.safe_embedding_lookup_sparse用法及代碼示例
- Python tf.compat.v1.nn.nce_loss用法及代碼示例
- Python tf.compat.v1.nn.sampled_softmax_loss用法及代碼示例
- Python tf.compat.v1.nn.pool用法及代碼示例
- Python tf.compat.v1.nn.sigmoid_cross_entropy_with_logits用法及代碼示例
- Python tf.compat.v1.nn.ctc_loss用法及代碼示例
- Python tf.compat.v1.nn.rnn_cell.MultiRNNCell用法及代碼示例
- Python tf.compat.v1.nn.raw_rnn用法及代碼示例
- Python tf.compat.v1.nn.dilation2d用法及代碼示例
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.compat.v1.nn.erosion2d。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。