Searched refs:ResizeMethodV1 (Results 1 – 3 of 3) sorted by relevance
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.image.-resize-method.pbtxt | 3 is_instance: "<class \'tensorflow.python.ops.image_ops_impl.ResizeMethodV1\'>"
|
/external/tensorflow/tensorflow/python/ops/ |
D | image_ops_test.py | 3169 image_ops.ResizeMethodV1.BILINEAR, 3170 image_ops.ResizeMethodV1.NEAREST_NEIGHBOR, 3171 image_ops.ResizeMethodV1.BICUBIC, image_ops.ResizeMethodV1.AREA 3194 if (method == image_ops.ResizeMethodV1.NEAREST_NEIGHBOR and 3273 _ = resize_func(image, new_size, image_ops.ResizeMethodV1.BILINEAR) 3276 _ = resize_func(image, new_size, image_ops.ResizeMethodV1.BILINEAR) 3279 _ = resize_func(image, new_size, image_ops.ResizeMethodV1.BILINEAR) 3284 _ = resize_func(image, new_size, image_ops.ResizeMethodV1.BILINEAR) 3286 _ = resize_func(image, [6, 4.0], image_ops.ResizeMethodV1.BILINEAR) 3288 _ = resize_func(image, [None, 4], image_ops.ResizeMethodV1.BILINEAR) [all …]
|
D | image_ops_impl.py | 1310 class ResizeMethodV1(object): class 1413 method=ResizeMethodV1.BILINEAR, 1470 if method == ResizeMethodV1.BILINEAR or method == ResizeMethod.BILINEAR: 1473 elif (method == ResizeMethodV1.NEAREST_NEIGHBOR or 1477 elif method == ResizeMethodV1.BICUBIC or method == ResizeMethod.BICUBIC: 1480 elif method == ResizeMethodV1.AREA or method == ResizeMethod.AREA: 1754 method=ResizeMethodV1.BILINEAR,
|