Skip to content

Instantly share code, notes, and snippets.

View Zrufy's full-sized avatar

Vincenzo Fornaro Zrufy

  • Parma,Italy
View GitHub Profile
@aplz
aplz / draw_text_with_background_opencv.py
Last active September 3, 2023 22:56
draw text with background // opencv
import cv2 # opencv
import numpy as np
font_scale = 1.5
font = cv2.FONT_HERSHEY_PLAIN
# set the rectangle background to white
rectangle_bgr = (255, 255, 255)
# make a black image
img = np.zeros((500, 500))