“Python opencv schreiben Text auf Bild” Code-Antworten

Python opencv schreiben Text auf Bild

# 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

Hinzufügen von Text CV2

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

Ähnliche Antworten wie “Python opencv schreiben Text auf Bild”

Fragen ähnlich wie “Python opencv schreiben Text auf Bild”

Weitere verwandte Antworten zu “Python opencv schreiben Text auf Bild” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen