Home
last modified time | relevance | path

Searched refs:ResizeMethod (Results 1 – 12 of 12) sorted by relevance

/external/tflite-support/tensorflow_lite_support/java/src/java/org/tensorflow/lite/support/image/ops/
DResizeOp.java34 public enum ResizeMethod { enum in ResizeOp
50 public ResizeOp(int targetHeight, int targetWidth, ResizeMethod resizeMethod) { in ResizeOp()
53 useBilinear = (resizeMethod == ResizeMethod.BILINEAR); in ResizeOp()
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.image.-resize-method.pbtxt1 path: "tensorflow.image.ResizeMethod"
3 is_instance: "<class \'tensorflow.python.ops.image_ops_impl.ResizeMethod\'>"
Dtensorflow.image.pbtxt4 name: "ResizeMethod"
/external/tensorflow/tensorflow/python/keras/layers/preprocessing/
Dimage_preprocessing.py44 ResizeMethod = image_ops.ResizeMethod variable
47 'bilinear': ResizeMethod.BILINEAR,
48 'nearest': ResizeMethod.NEAREST_NEIGHBOR,
49 'bicubic': ResizeMethod.BICUBIC,
50 'area': ResizeMethod.AREA,
51 'lanczos3': ResizeMethod.LANCZOS3,
52 'lanczos5': ResizeMethod.LANCZOS5,
53 'gaussian': ResizeMethod.GAUSSIAN,
54 'mitchellcubic': ResizeMethod.MITCHELLCUBIC
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.image.-resize-method.pbtxt1 path: "tensorflow.image.ResizeMethod"
Dtensorflow.image.pbtxt4 name: "ResizeMethod"
/external/tensorflow/tensorflow/python/ops/
Dimage_ops_test.py2611 image_ops.ResizeMethod.BILINEAR, image_ops.ResizeMethod.NEAREST_NEIGHBOR,
2612 image_ops.ResizeMethod.BICUBIC, image_ops.ResizeMethod.AREA,
2613 image_ops.ResizeMethod.LANCZOS3, image_ops.ResizeMethod.LANCZOS5,
2614 image_ops.ResizeMethod.GAUSSIAN, image_ops.ResizeMethod.MITCHELLCUBIC
2621 image_ops.ResizeMethod.BILINEAR, image_ops.ResizeMethod.NEAREST_NEIGHBOR,
2622 image_ops.ResizeMethod.BICUBIC, image_ops.ResizeMethod.AREA,
2623 image_ops.ResizeMethod.LANCZOS3, image_ops.ResizeMethod.LANCZOS5
2646 if (method == image_ops.ResizeMethod.NEAREST_NEIGHBOR and
2729 _ = resize_func(image, new_size, image_ops.ResizeMethod.BILINEAR)
2732 _ = resize_func(image, new_size, image_ops.ResizeMethod.BILINEAR)
[all …]
Dimage_ops_impl.py1319 class ResizeMethod(object): class
1470 if method == ResizeMethodV1.BILINEAR or method == ResizeMethod.BILINEAR:
1474 method == ResizeMethod.NEAREST_NEIGHBOR):
1477 elif method == ResizeMethodV1.BICUBIC or method == ResizeMethod.BICUBIC:
1480 elif method == ResizeMethodV1.AREA or method == ResizeMethod.AREA:
1499 method=ResizeMethod.BILINEAR,
1627 ResizeMethod.LANCZOS3, ResizeMethod.LANCZOS5, ResizeMethod.GAUSSIAN,
1628 ResizeMethod.MITCHELLCUBIC
1643 if method == ResizeMethod.BILINEAR:
1649 elif method == ResizeMethod.NEAREST_NEIGHBOR:
[all …]
/external/tensorflow/tensorflow/lite/g3doc/inference_with_metadata/
Dlite_support.md65 .add(new ResizeOp(224, 224, ResizeOp.ResizeMethod.BILINEAR))
194 .add(new ResizeOp(224, 224, ResizeOp.ResizeMethod.BILINEAR));
/external/tensorflow/tensorflow/lite/g3doc/models/super_resolution/
Doverview.ipynb262 "bicubic = tf.image.resize(lr, [200, 200], tf.image.ResizeMethod.BICUBIC)\n",
/external/tensorflow/tensorflow/python/keras/
Dbackend.py3207 x, new_shape, method=image_ops.ResizeMethod.NEAREST_NEIGHBOR)
3210 method=image_ops.ResizeMethod.BILINEAR)
/external/tensorflow/
DRELEASE.md527 `method=ResizeMethod.BILINEAR` (the default method). Enable by setting the environment