学習者のこの記事では、OpenCV の putText() メソッドを用いて、Python で画像に文字列を書き込む方法について学びます。
では、さっそく始めましょう。
Wa
OpenCV を使って画像にテキストを追加する – cv2.putText() メソッド.
下の画像を使って,OpenCV の putText() メソッドにより “Good Morning” というメッセージを書きましょう.
# importing cv2 library import cv2
# Reading the image image = cv2.imread( "Wallpaper.jpg" )
# Using cv2.putText() new_image = cv2.putText(
img = image,
text = "Good Morning" ,
org = ( 200 , 200 ),
fontFace = cv2.FONT_HERSHEY_DUPLEX,
fontScale = 3.0 ,
color = ( 125 , 246 , 55 ),
thickness = 3
) # Saving the new image cv2.imwrite( "New Wallpaper.jpg" , new_image)
|
まとめ
この記事では,OpenCV の putText() メソッドを用いて画像にテキストを書き込む方法について学びました.お読みいただきありがとうございました!