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/ |
D | ResizeOp.java | 34 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/ |
D | tensorflow.image.-resize-method.pbtxt | 1 path: "tensorflow.image.ResizeMethod" 3 is_instance: "<class \'tensorflow.python.ops.image_ops_impl.ResizeMethod\'>"
|
D | tensorflow.image.pbtxt | 4 name: "ResizeMethod"
|
/external/tensorflow/tensorflow/python/keras/layers/preprocessing/ |
D | image_preprocessing.py | 44 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/ |
D | tensorflow.image.-resize-method.pbtxt | 1 path: "tensorflow.image.ResizeMethod"
|
D | tensorflow.image.pbtxt | 4 name: "ResizeMethod"
|
/external/tensorflow/tensorflow/python/ops/ |
D | image_ops_test.py | 2611 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 …]
|
D | image_ops_impl.py | 1319 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/ |
D | lite_support.md | 65 .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/ |
D | overview.ipynb | 262 "bicubic = tf.image.resize(lr, [200, 200], tf.image.ResizeMethod.BICUBIC)\n",
|
/external/tensorflow/tensorflow/python/keras/ |
D | backend.py | 3207 x, new_shape, method=image_ops.ResizeMethod.NEAREST_NEIGHBOR) 3210 method=image_ops.ResizeMethod.BILINEAR)
|
/external/tensorflow/ |
D | RELEASE.md | 527 `method=ResizeMethod.BILINEAR` (the default method). Enable by setting the environment
|