From 6aa9b8beb7676cb05d9a818a080dbd063c76e2c6 Mon Sep 17 00:00:00 2001 From: "Mascha, Philipp" Date: Tue, 12 Nov 2019 14:31:16 +0100 Subject: [PATCH] Added missing documenation. --- src/TensorFlowNET.Core/APIs/tf.image.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TensorFlowNET.Core/APIs/tf.image.cs b/src/TensorFlowNET.Core/APIs/tf.image.cs index 9263338d..13fd678f 100644 --- a/src/TensorFlowNET.Core/APIs/tf.image.cs +++ b/src/TensorFlowNET.Core/APIs/tf.image.cs @@ -48,7 +48,7 @@ namespace Tensorflow /// An optional string from: "bilinear", "nearest". Defaults to "bilinear". A string specifying the sampling method for resizing. It can be either "bilinear" or "nearest" and default to "bilinear". Currently two sampling methods are supported: Bilinear and Nearest Neighbor. /// An optional float. Defaults to 0. Value used for extrapolation, when applicable. /// A name for the operation (optional). - /// + /// A 4-D tensor of shape [num_boxes, crop_height, crop_width, depth]. public Tensor crop_and_resize(Tensor image, Tensor boxes, Tensor box_ind, Tensor crop_size, string method = "bilinear", float extrapolation_value = 0f, string name = null) => image_ops_impl.crop_and_resize(image, boxes, box_ind, crop_size, method, extrapolation_value, name);