Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

opencv write text

font                   = cv2.FONT_HERSHEY_SIMPLEX
bottomLeftCornerOfText = (10,500)
fontScale              = 1
fontColor              = (255,255,255)
lineType               = 2

cv2.putText(img,'Hello World!', 
    bottomLeftCornerOfText, 
    font, 
    fontScale,
    fontColor,
    lineType)
Comment

PREVIOUS NEXT
Code Example
Python :: n random numbers python 
Python :: random word generator python 
Python :: shift elements in list python 
Python :: python jwt parse 
Python :: squared sum of all elements in list python 
Python :: python create map with coordinates 
Python :: how to set a image as background in tkitner 
Python :: python how much memory does a variable need 
Python :: tkinter minsize 
Python :: anaconda python update packages 
Python :: copy text python 
Python :: save matplotlib figure with base64 
Python :: python check if item in 2d list 
Python :: pandas Error tokenizing data. 
Python :: tensorflow turn off gpu 
Python :: exclude columns pandas 
Python :: column string to datetime python 
Python :: python random string 
Python :: how to save a model fast ai 
Python :: remove multiple space python 
Python :: replace cell pandas 
Python :: python clipboard to image 
Python :: tkinter info box 
Python :: f string curency format 
Python :: types of all columns pandas 
Python :: pyspark create empty dataframe 
Python :: close turtle window python 
Python :: how to find where python is located 
Python :: python random from normal distribution 
Python :: check package version jupyter python 
ADD CONTENT
Topic
Content
Source link
Name
6+1 =