用於給出窗口標題的 Python OpenCV setWindowTitle() 方法。它需要 2 個參數,即窗口名稱和需要給出的標題。這兩個參數都應該是字符串類型。
用法:cv2.setWindowTitle( winname, title )
參數:
- winname:窗口名稱
- title:我們要為具有上述名稱的窗口設置的標題。
Python OpenCV setWindowTitle() 方法示例
在這裏,我們將看到一個示例代碼。我們有一個名為 “gfg_logo.png” 的 gfg 徽標的 png 圖像,對於本例,我們將使用 OpenCV 的 imread() 和 imshow() 方法將其顯示在窗口上。我們將使用 setWindowTitle() 方法將 Windows 標題從默認名稱更改為 “Hello!”。我們將傳遞參數窗口名稱 “gfg” 和我們想要設置為參數的標題。
Python
# importing cv2 module
import cv2
# read the image
img = cv2.imread("gfg_logo.png")
# showing the image
cv2.imshow('gfg', img)
# Setting the windows title to "Hello!"
# using setWindowTitle method
cv2.setWindowTitle('gfg', 'Hello!')
# waiting using waitKey method
cv2.waitKey(0)
輸出:
相關用法
- Python OpenCV resizeWindow()用法及代碼示例
- Python OpenCV waitKey()用法及代碼示例
- Python OpenCV waitKeyEx()用法及代碼示例
- Python OpenCV getRotationMatrix2D()用法及代碼示例
- Python OpenCV destroyAllWindows()用法及代碼示例
- Python OpenCV namedWindow()用法及代碼示例
- Python OpenCV selectroi()用法及代碼示例
- Python OpenCV imdecode()用法及代碼示例
- Python OpenCV getTrackbarPos()用法及代碼示例
- Python OpenCV Filter2D()用法及代碼示例
- Python OpenCV Canny()用法及代碼示例
- Python OpenCV setTrackbarPos()用法及代碼示例
- Python OpenCV getgaussiankernel()用法及代碼示例
- Python OpenCV haveImageReader()用法及代碼示例
注:本文由純淨天空篩選整理自yashgupta0524大神的英文原創作品 Python OpenCV – setWindowTitle() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。