After displaying an image on a PyQt label, I want to draw a rectangle on top of the displayed image. Note that I don't mean 'draw' as in where the user 'draws' a rectangle on the image, but I mean that I just want to create a rectangle on top of the image. I have the equivalent code for matplotlib axes but I'm not sure how to do the same thing in PyQt.
# Create Figure/Axes Instance
figure,axes = matplotlib.pyplot.subplots()
axes.imshow(imageRGB)
# Draw Rectangle
axes.add_patch(matplotlib.patches.Rectangle((50,50),100,100,fill=False,edgecolor='red'))