result.py 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. # copyright (c) 2024 PaddlePaddle Authors. All Rights Reserve.
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. import copy
  15. import PIL
  16. from PIL import Image, ImageDraw, ImageFont
  17. import numpy as np
  18. from ....utils.fonts import PINGFANG_FONT_FILE_PATH
  19. from ...utils.color_map import get_colormap
  20. from ...common.result import BaseCVResult, StrMixin, JsonMixin
  21. class TopkResult(BaseCVResult):
  22. def _to_str(self, *args, **kwargs):
  23. data = copy.deepcopy(self)
  24. return StrMixin._to_str(data, *args, **kwargs)
  25. def _to_json(self, *args, **kwargs):
  26. data = copy.deepcopy(self)
  27. data.pop("input_img")
  28. return JsonMixin._to_json(data, *args, **kwargs)
  29. def _to_img(self):
  30. """Draw label on image"""
  31. labels = self.get("label_names", self["class_ids"])
  32. label_str = f"{labels[0]} {self['scores'][0]:.2f}"
  33. image = Image.fromarray(self["input_img"])
  34. image_size = image.size
  35. draw = ImageDraw.Draw(image)
  36. min_font_size = int(image_size[0] * 0.02)
  37. max_font_size = int(image_size[0] * 0.05)
  38. for font_size in range(max_font_size, min_font_size - 1, -1):
  39. font = ImageFont.truetype(
  40. PINGFANG_FONT_FILE_PATH, font_size, encoding="utf-8"
  41. )
  42. if tuple(map(int, PIL.__version__.split("."))) <= (10, 0, 0):
  43. text_width_tmp, text_height_tmp = draw.textsize(label_str, font)
  44. else:
  45. left, top, right, bottom = draw.textbbox((0, 0), label_str, font)
  46. text_width_tmp, text_height_tmp = right - left, bottom - top
  47. if text_width_tmp <= image_size[0]:
  48. break
  49. else:
  50. font = ImageFont.truetype(PINGFANG_FONT_FILE_PATH, min_font_size)
  51. color_list = get_colormap(rgb=True)
  52. color = tuple(color_list[0])
  53. font_color = tuple(self._get_font_colormap(3))
  54. if tuple(map(int, PIL.__version__.split("."))) <= (10, 0, 0):
  55. text_width, text_height = draw.textsize(label_str, font)
  56. else:
  57. left, top, right, bottom = draw.textbbox((0, 0), label_str, font)
  58. text_width, text_height = right - left, bottom - top
  59. rect_left = 3
  60. rect_top = 3
  61. rect_right = rect_left + text_width + 3
  62. rect_bottom = rect_top + text_height + 6
  63. draw.rectangle([(rect_left, rect_top), (rect_right, rect_bottom)], fill=color)
  64. text_x = rect_left + 3
  65. text_y = rect_top
  66. draw.text((text_x, text_y), label_str, fill=font_color, font=font)
  67. return {"res": image}
  68. def _get_font_colormap(self, color_index):
  69. """
  70. Get font colormap
  71. """
  72. dark = np.array([0x14, 0x0E, 0x35])
  73. light = np.array([0xFF, 0xFF, 0xFF])
  74. light_indexs = [0, 3, 4, 8, 9, 13, 14, 18, 19]
  75. if color_index in light_indexs:
  76. return light.astype("int32")
  77. else:
  78. return dark.astype("int32")