Python OpenCV – setWindowTitle()函数
Python OpenCV setWindowTitle() 方法用于给出窗口的标题。它需要两个参数,即窗口名称和需要给出的标题。这两个参数都应该是字符串类型。
Syntax: cv2.setWindowTitle( winname, title )
Parameters:
- winname: windows name
- title: title we want to set for the window with the above name.
Python OpenCV setWindowTitle() 方法示例
在这里,我们将看到一个示例代码。我们有一个名为“gfg_logo.png”的 gfg 徽标的 png 图像,在本示例中,我们将使用 OpenCV 的 imread() 和 imshow() 方法将其显示在窗口上。我们将 Windows 标题从默认名称更改为“Hello!”使用 setWindowTitle() 方法。我们将传递参数窗口名称“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)
输出: