I was trying to follow along with four-point-transform blog post with slight modifications using Python-3.6. First I obtained four_point_transform of the given image. After getting the warped image, I plotted bounding box around text "Hello" using cv2.rectangle.
cv2.rectangle(warped, (37, 20), (222, 97), (255, 0, 0), 2)
Now, I want to plot the bounding box of text "Hello" in warped image on the original image. I referred to this similar question. But I do not have the coordinates on the source image so could not follow along. Any help would be very much appreciated.