目次
概要
OpenCV に画像に図形や文字を描画する関数を整理しました。
関連記事
画像にテキストを描画する方法については、以下の記事を参照してください。
OpenCV/Pillow – 画像にテキストを描画する方法 | pystyle
関数一覧
図形 | 関数 |
---|---|
テキスト | cv2.putText |
長方形 | cv2.rectangle |
円 | cv2.circle |
楕円 | cv2.ellipse |
輪郭 | cv2.drawContours |
マーカー | cv2.drawMarker |
凸なポリゴン | cv2.fillConvexPoly |
ポリゴン | cv2.fillPoly |
ポリゴンの輪郭線 | cv2.polylines |
線分 | cv2.line |
矢印 | cv2.arrowedLine |
描画系関数の共通仕様
- 色は
color
で指定します。1 チャンネル画像の場合は int、3 チャンネル画像の場合は (int, int, int) で指定します。(例:color=(255, 0, 0)
) - 線の太さは
thickness
で指定します。負の値を指定した場合は塗りつぶしになります。 - 描画は引数に渡した配列を直接変更します。
- 点の座標や大きさは float ではなく、int で指定します。
長方形を描画する – cv2.rectangle
公式リファレンス: cv2.rectangle
引数
名前 | 型 | デフォルト値 |
---|---|---|
img | ndarray | |
入力画像 | ||
pt1 | tuple of 2 ints | |
長方形の左上の点 | ||
pt2 | tuple of 2 ints | |
長方形の右下の点 | ||
color | int / tuple of ints | |
色 | ||
thickness | int | 1 |
線の太さ。負の値の場合は塗りつぶし。 | ||
line_type | LineTypes | cv2.LINE_8 |
線の描画方法 | ||
shift | int | 0 |
正の値の場合、座標を 1 / shift 倍にスケールする |
返り値
名前 | 説明 | ||
---|---|---|---|
img | 出力画像 |
In [1]:
In [2]:
In [3]:
円を描画する – cv2.circle
公式リファレンス: cv2.circle
引数
名前 | 型 | デフォルト値 |
---|---|---|
img | ndarray | |
入力画像 | ||
center | tuple of 2 ints | |
円の中心 | ||
radius | int | |
円の半径 | ||
color | int / tuple of ints | |
色 | ||
thickness | int | 1 |
線の太さ。負の値の場合は塗りつぶし。 | ||
line_type | LineTypes | cv2.LINE_8 |
線の描画方法 | ||
shift | int | 0 |
正の値の場合、座標を 1 / shift 倍にスケールする |
返り値
名前 | 説明 | ||
---|---|---|---|
img | 出力画像 |
In [4]:
In [5]:
楕円を描画する – cv2.ellipse
公式リファレンス: cv2.ellipse
引数
名前 | 型 | デフォルト値 |
---|---|---|
img | ndarray | |
入力画像 | ||
center | tuple of 2 ints | |
楕円の中心 | ||
axes | tuple of 2 ints | |
楕円の長径、短径 | ||
angle | float | |
楕円の回転角度 | ||
startAngle | float | |
円弧の開始角度 | ||
endAngle | float | |
円弧の終了角度 | ||
color | int / tuple of ints | |
色 | ||
thickness | int | 1 |
線の太さ。負の値の場合は塗りつぶし。 | ||
line_type | LineTypes | cv2.LINE_8 |
線の描画方法 | ||
shift | int | 0 |
正の値の場合、座標を 1 / shift 倍にスケールする |
返り値
名前 | 説明 | ||
---|---|---|---|
img | 出力画像 |
楕円を描画する
In [6]:
In [7]:
円弧を描画する
In [8]:
In [9]:
輪郭を描画する
公式リファレンス: cv2.drawContours
引数
名前 | 型 | デフォルト値 |
---|---|---|
image | ndarray | |
入力画像 | ||
contours | list of ndarrays | |
輪郭の一覧 | ||
contourIdx | int | |
輪郭一覧のうち、描画する輪郭のインデックス。すべての輪郭を描画する場合は負の値を指定する。 | ||
color | int / tuple of ints | |
色 | ||
thickness | int | 1 |
線の太さ。負の値の場合は塗りつぶし。 | ||
line_type | LineTypes | cv2.LINE_8 |
線の描画方法 | ||
hierarchy | ndarray | None |
輪郭の階層構造。maxLevel を指定する場合に渡す。 | ||
maxLevel | int | int の最大値 |
階層の深さいくつまで描画するか * 0の場合は contourIdx で指定した輪郭のみ描画する * 1以上の場合は、指定した深さの輪郭まで描画する | ||
offset | tuple of 2 ints | (0, 0) |
オフセット |
返り値
名前 | 説明 | ||
---|---|---|---|
image | 出力画像 |
すべての輪郭を描画する
In [10]:

In [11]:

指定した輪郭を描画する
In [12]:

In [13]:

単一の輪郭を描画する
単一の輪郭を描画するには、要素が 1 つのリストにします。
In [14]:

マーカーを描画する – cv2.drawMarker
公式リファレンス: cv2.drawMarker
引数
名前 | 型 | デフォルト値 |
---|---|---|
img | ndarray | |
入力画像 | ||
position | tuple of 2 ints | |
位置 | ||
color | int / tuple of ints | |
色 | ||
markerType | tuple of 2 ints | |
位置 | ||
markerType | MarkerTypes | cv2.MARKER_CROSS |
マーカーの種類 | ||
markerSize | int | 20 |
マーカーの大きさ | ||
thickness | int | 1 |
線の太さ。負の値の場合は塗りつぶし。 | ||
line_type | LineTypes | cv2.LINE_8 |
線の描画方法 |
返り値
名前 | 説明 | ||
---|---|---|---|
img | 出力画像 |
In [15]:
In [16]:

凸なポリゴンを描画する – cv2.fillConvexPoly
公式リファレンス: cv2.fillConvexPoly
引数
名前 | 型 | デフォルト値 |
---|---|---|
img | ndarray | |
入力画像 | ||
points | ndarray | |
点の一覧 | ||
color | int / tuple of ints | |
色 | ||
line_type | LineTypes | cv2.LINE_8 |
線の描画方法 | ||
shift | int | 0 |
正の値の場合、座標を 1 / shift 倍にスケールする |
返り値
名前 | 説明 | ||
---|---|---|---|
img | 出力画像 |
In [17]:
ポリゴンを描画する – cv2.fillPoly
公式リファレンス: cv2.fillPoly
引数
名前 | 型 | デフォルト値 |
---|---|---|
img | ndarray | |
入力画像 | ||
points | ndarray | |
点の一覧 | ||
color | int / tuple of ints | |
色 | ||
line_type | LineTypes | cv2.LINE_8 |
線の描画方法 | ||
shift | int | 0 |
正の値の場合、座標を 1 / shift 倍にスケールする | ||
offset | tuple of 2 ints | (0, 0) |
オフセット |
返り値
名前 | 説明 | ||
---|---|---|---|
img | 出力画像 |
In [18]:
ポリゴンの輪郭線を描画する – cv2.polylines
公式リファレンス: cv2.polylines
引数
名前 | 型 | デフォルト値 |
---|---|---|
img | ndarray | |
入力画像 | ||
pts | ndarray | |
点の一覧 | ||
isClosed | bool | |
ポリゴンが閉じているかどうか | ||
color | int / tuple of ints | |
色 | ||
thickness | int | 1 |
線の太さ | ||
line_type | LineTypes | cv2.LINE_8 |
線の描画方法 | ||
shift | int | 0 |
正の値の場合、座標を 1 / shift 倍にスケールする |
返り値
名前 | 説明 | ||
---|---|---|---|
img | 出力画像 |
In [19]:

線分を描画する – cv2.line
公式リファレンス: cv2.line
引数
名前 | 型 | デフォルト値 |
---|---|---|
img | ndarray | |
入力画像 | ||
pt1 | tuple of 2 ints | |
線分の始点 | ||
pt2 | tuple of 2 ints | |
線分の終点 | ||
color | int / tuple of ints | |
色 | ||
thickness | int | 1 |
線の太さ | ||
line_type | LineTypes | cv2.LINE_8 |
線の描画方法 | ||
shift | int | 0 |
正の値の場合、座標を 1 / shift 倍にスケールする | ||
offset | tuple of 2 ints | (0, 0) |
オフセット |
返り値
名前 | 説明 | ||
---|---|---|---|
img | 出力画像 |
In [20]:
矢印を描画する – cv2.arrowedLine
公式リファレンス: cv2.arrowedLine
引数
名前 | 型 | デフォルト値 |
---|---|---|
img | ndarray | |
入力画像 | ||
pt1 | tuple of 2 ints | |
矢印の始点 | ||
pt2 | tuple of 2 ints | |
矢印の終点 | ||
color | int / tuple of ints | |
色 | ||
thickness | int | 1 |
線の太さ。負の値の場合は塗りつぶし。 | ||
line_type | LineTypes | cv2.LINE_8 |
線の描画方法 | ||
shift | int | 0 |
正の値の場合、座標を 1 / shift 倍にスケールする | ||
tipLength | float | 0.1 |
矢印の長さに対する末端の長さ |
返り値
名前 | 説明 | ||
---|---|---|---|
img | 出力画像 |
In [21]:
コメント