メインコンテンツまでスキップ

draw_box

draw_box(img: np.ndarray, box: Union[Box, np.ndarray], color: _Color = (0, 255, 0), thickness: _Thickness = 2) -> np.ndarray

  • 説明:画像にバウンディングボックスを描画します。

  • パラメータ

    • img (np.ndarray):描画する画像、NumPy 配列形式です。
    • box (Union[Box, np.ndarray]):描画するバウンディングボックス、Box オブジェクトまたは NumPy 配列形式の[x1, y1, x2, y2]で指定します。
    • color (_Color):描画する枠線の色。デフォルトは(0, 255, 0)です。
    • thickness (_Thickness):枠線の太さ。デフォルトは 2 です。
  • 戻り値

    • np.ndarray:バウンディングボックスを描画した画像。
  • import capybara as cb

    img = cb.imread('lena.png')
    box = cb.Box([20, 20, 100, 100])
    box_img = cb.draw_box(img, box, color=(0, 255, 0), thickness=2)

    draw_box