本文整理汇总了Python中object_detection.protos.image_resizer_pb2.NEAREST_NEIGHBOR属性的典型用法代码示例。如果您正苦于以下问题:Python image_resizer_pb2.NEAREST_NEIGHBOR属性的具体用法?Python image_resizer_pb2.NEAREST_NEIGHBOR怎么用?Python image_resizer_pb2.NEAREST_NEIGHBOR使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类object_detection.protos.image_resizer_pb2
的用法示例。
在下文中一共展示了image_resizer_pb2.NEAREST_NEIGHBOR属性的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _tf_resize_method
# 需要导入模块: from object_detection.protos import image_resizer_pb2 [as 别名]
# 或者: from object_detection.protos.image_resizer_pb2 import NEAREST_NEIGHBOR [as 别名]
def _tf_resize_method(resize_method):
"""Maps image resize method from enumeration type to TensorFlow.
Args:
resize_method: The resize_method attribute of keep_aspect_ratio_resizer or
fixed_shape_resizer.
Returns:
method: The corresponding TensorFlow ResizeMethod.
Raises:
ValueError: if `resize_method` is of unknown type.
"""
dict_method = {
image_resizer_pb2.BILINEAR:
tf.image.ResizeMethod.BILINEAR,
image_resizer_pb2.NEAREST_NEIGHBOR:
tf.image.ResizeMethod.NEAREST_NEIGHBOR,
image_resizer_pb2.BICUBIC:
tf.image.ResizeMethod.BICUBIC,
image_resizer_pb2.AREA:
tf.image.ResizeMethod.AREA
}
if resize_method in dict_method:
return dict_method[resize_method]
else:
raise ValueError('Unknown resize_method')