Searched refs:images_t (Results 1 – 3 of 3) sorted by relevance
/external/tensorflow/tensorflow/core/kernels/image/ |
D | image_ops.cc | 55 const Tensor& images_t = ctx->input(0); in DoImageProjectiveTransformOp() local 57 OP_REQUIRES(ctx, images_t.shape().dims() == 4, in DoImageProjectiveTransformOp() 61 (transform_t.dim_size(0) == images_t.dim_size(0) || in DoImageProjectiveTransformOp() 84 out_height = images_t.shape().dim_size(1); in DoImageProjectiveTransformOp() 85 out_width = images_t.shape().dim_size(2); in DoImageProjectiveTransformOp() 101 TensorShape({images_t.dim_size(0), out_height, in DoImageProjectiveTransformOp() 102 out_width, images_t.dim_size(3)}), in DoImageProjectiveTransformOp() 105 auto images = images_t.tensor<T, 4>(); in DoImageProjectiveTransformOp()
|
/external/tensorflow/tensorflow/core/kernels/ |
D | conv_ops_benchmark_test.cc | 81 Tensor images_t = data_format == FORMAT_NHWC in Conv2D() local 89 Node* images = test::graph::Constant(graph, images_t, "images"); in Conv2D() 224 Tensor images_t = data_format == FORMAT_NHWC local 233 Node* images = test::graph::Constant(graph, images_t, "images"); 263 Tensor images_t = data_format == FORMAT_NHWC local 275 Node* images = test::graph::Constant(graph, images_t, "images");
|
/external/tensorflow/tensorflow/python/ops/ |
D | image_ops_impl.py | 1468 def resize_fn(images_t, new_size): argument 1472 images_t, new_size, align_corners=align_corners) 1476 images_t, new_size, align_corners=align_corners) 1479 images_t, new_size, align_corners=align_corners) 1482 images_t, new_size, align_corners=align_corners) 1624 def resize_fn(images_t, new_size): argument 1634 math_ops.cast(array_ops.shape(images_t)[1:3], dtype=dtypes.float32)) 1636 images_t, 1648 images_t, new_size, half_pixel_centers=True) 1651 images_t, new_size, half_pixel_centers=True) [all …]
|