draw_box
-
説明:画像にバウンディングボックスを描画します。
-
パラメータ
- img (
np.ndarray
):描画する画像、NumPy 配列形式です。 - box (
Union[Box, np.ndarray]
):描画するバウンディングボックス、Box オブジェクトまたは NumPy 配列形式の[x1, y1, x2, y2]で指定します。 - color (
_Color
):描画する枠線の色。デフォルトは(0, 255, 0)です。 - thickness (
_Thickness
):枠線の太さ。デフォルトは 2 です。
- img (
-
戻り値
- 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)