“Python OpenCV Écrivez du texte sur l'image” Réponses codées

Python OpenCV Écrivez du texte sur l'image

# Python program to explain cv2.putText() method
    
# importing cv2
import cv2
    
# path
path = r'C:\Users\Rajnish\Desktop\geeksforgeeks\geeks.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)
Testy Turtle

Ajout de texte CV2

cv2.putText (image, "text",coordinates)
Prickly Peacock

Réponses similaires à “Python OpenCV Écrivez du texte sur l'image”

Questions similaires à “Python OpenCV Écrivez du texte sur l'image”

Plus de réponses similaires à “Python OpenCV Écrivez du texte sur l'image” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code