BoundingBox의 스크립트 예제를 PIL로 표시합니다.

1088 단어 pillowPython

너 뭐 하고 싶어?


필기

업데이트

  • 20200116
  • y 좌표가 0에 가까워도 화면에 라벨을 표시할 수 있다
  • 결과 BB가 PIL 이미지에 표시되는 함수

    def show_bb(img, x, y, w, h, text, textcolor, bbcolor):
        draw = ImageDraw.Draw(img)
        text_w, text_h = draw.textsize(text)
        label_y = y if y <= text_h else y - text_h
        draw.rectangle((x, label_y, x+w, label_y+h), outline=bbcolor)
        draw.rectangle((x, label_y, x+text_w, label_y+text_h), outline=bbcolor, fill=bbcolor)
        draw.text((x, label_y), text, fill=textcolor)
    

    견본




    from PIL import Image, ImageDraw
    
    img = Image.open(path_to_image)
    show_bb(img, 244, 249, 47, 30, "eye", (255, 255, 255), (255, 0, 0))
    img.show()
    

    좋은 웹페이지 즐겨찾기