Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python opencv write text on image

# Python program to explain cv2.putText() method
    
# importing cv2
import cv2
    
# path
path = r'C:UsersRajnishDesktopgeeksforgeeksgeeks.png'
    
# Reading an image in default mode
image = cv2.imread(path)
    
# Window name in which image is displayed
window_name = 'Image'
  
# font
font = cv2.FONT_HERSHEY_SIMPLEX
  
# org
org = (50, 50)
  
# fontScale
fontScale = 1
   
# Blue color in BGR
color = (255, 0, 0)
  
# Line thickness of 2 px
thickness = 2
   
# Using cv2.putText() method
image = cv2.putText(image, 'OpenCV', org, font, 
                   fontScale, color, thickness, cv2.LINE_AA)
   
# Displaying the image
cv2.imshow(window_name, image)
Source by www.geeksforgeeks.org #
 
PREVIOUS NEXT
Tagged: #python #opencv #write #text #image
ADD COMMENT
Topic
Name
8+5 =