OpenCV Python, watermark can't be seen on white backgrounds
I am trying to paste my watermark to white-backgrounded image: watermark = cv2.imread(watermark_path) watermark_ratio = round(image.shape[1]/8) # calculating the ratio resized_watermark = cv2.resize(watermark, (watermark_ratio, round(watermark_ratio/2)), interpolation = cv2.INTER_AREA) # resizing watermark size h_logo, w_logo, _ = resized_watermark.shape h_img, w_img, _ = image.shape top_y = h_img – h_logo left_x = w_img – w_logo bottom_y = h_img… Read More OpenCV Python, watermark can't be seen on white backgrounds