python opencv 如何给图片添加文字?cv2.putText() PIL
生活随笔
收集整理的這篇文章主要介紹了
python opencv 如何给图片添加文字?cv2.putText() PIL
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
參考文章1:python如何在圖片上添加文字(中文和英文)Python在圖片上添加文字的兩種方法:OpenCV和PIL
參考文章2:python之------如何在圖片上面添加文字(多種類型的文字)【PIL】
參考文章3:python 圖片上添加中文文字【PIL】
參考文章4:python-OpenCV之在圖片上添加文字(cv.putText())
文章目錄
- putText函數(shù)doc
- 示例代碼
- 功能
- code
- 最終效果
putText函數(shù)doc
opencv版本:4.1.0(不同版本Doc也許不同)
def putText(img, text, org, fontFace, fontScale, color, thickness=None, lineType=None, bottomLeftOrigin=None): # real signature unknown; restored from __doc__"""putText(img, text, org, fontFace, fontScale, color[, thickness[, lineType[, bottomLeftOrigin]]]) -> img. @brief Draws a text string. 繪制文本字符串。. . The function cv::putText renders the specified text string in the image. Symbols that cannot be rendered. using the specified font are replaced by question marks. See #getTextSize for a text rendering code. example.· 函數(shù)cv :: putText在圖像中呈現(xiàn)指定的文本字符串。 無法使用指定字體呈現(xiàn)的符號將替換為問號。 有關(guān)文本渲染代碼示例,請參見#getTextSize。. . @param img Image. 圖片。. @param text Text string to be drawn. 要繪制的文本字符串。. @param org Bottom-left corner of the text string in the image. 圖像中文本字符串的左下角。. @param fontFace Font type, see #HersheyFonts. 字體類型,請參見#HersheyFonts。. @param fontScale Font scale factor that is multiplied by the font-specific base size.字體比例因子乘以特定于字體的基本大小。. @param color Text color. 文字顏色。. @param thickness Thickness of the lines used to draw a text. 用于繪制文本的線條的粗細(xì)。. @param lineType Line type. See #LineTypes 線型。 請參閱#LineTypes. @param bottomLeftOrigin When true, the image data origin is at the bottom-left corner. Otherwise, it is at the top-left corner.如果為true,則圖像數(shù)據(jù)原點(diǎn)位于左下角。 否則,它位于左上角。"""passDoc中所指#HersheyFonts:鏈接
Doc中所指#LineType:鏈接
示例代碼
功能
將上上級imgs文件夾內(nèi)的2000張圖片全部打上標(biāo)記,顯示其模糊程度值(越小越模糊)(用于展示用)
code
# -*- encoding: utf-8 -*- """ @File : judge_the_picture_blur.py @Time : 2019/10/25 8:52 @Author : Dontla @Email : sxana@qq.com @Software: PyCharm """ import cv2 import os# 返回指定路徑圖像的拉普拉斯算子邊緣模糊程度值 def getImageVar(img_path):image = cv2.imread(img_path)img2gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)imageVar = cv2.Laplacian(img2gray, cv2.CV_64F).var()return imageVar# 返回給定文件夾下所有圖片的路徑列表 def listFolderImgPath(folder_img_path):img_path_list = []for filename in os.listdir(folder_img_path):filepath = os.path.join(folder_img_path, filename)img_path_list.append(filepath)return img_path_list# 給單張圖片添加文字(圖片路徑,文字) def writeText(img_path, text):# 加載背景圖片# img的類型是np.ndarray數(shù)組img = cv2.imread(img_path)# 在圖片上添加文字信息# 顏色參數(shù)值可用顏色拾取器獲取((255,255,255)為純白色)# 最后一個參數(shù)bottomLeftOrigin如果設(shè)置為True,那么添加的文字是上下顛倒的composite_img = cv2.putText(img, text, (100, 680), cv2.FONT_HERSHEY_SIMPLEX,2.0, (255, 255, 255), 5, cv2.LINE_AA, False)cv2.imwrite(img_path, composite_img)# 文件夾路徑 folder_img_path = '../../imgs/'# 圖片路徑 img_path = '../../imgs/f_cotton-g_top (813).jpg'# print(getImageVar(img_path))# print(listFolderImgPath(folder_img_path))# 獲取圖片路徑列表 img_path_list = listFolderImgPath(folder_img_path)# 循環(huán)處理每張圖片 for img_path in img_path_list:# 獲取該張圖片模糊值imageVar = getImageVar(img_path)# 創(chuàng)建需寫入文字信息text = 'The fuzzy is: {:.2f}'.format(imageVar)# 將文字寫入圖片writeText(img_path, text)# img = cv2.imread(img_path)# cv2.namedWindow('image', cv2.WINDOW_AUTOSIZE)# cv2.imshow('image', img)# cv2.waitKey(1)最終效果
總結(jié)
以上是生活随笔為你收集整理的python opencv 如何给图片添加文字?cv2.putText() PIL的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: python 文件操作 os.path
- 下一篇: yolo-v2 自己的数据集训练以及测试