Algorithm to detect corners of paper sheet in photo

I’m Martin’s friend who was working on this earlier this year. This was my first ever coding project, and kinda ended in a bit of a rush, so the code needs some errr…decoding… I’ll give a few tips from what I’ve seen you doing already, and then sort my code on my day off tomorrow. … Read more

OpenCV & Python – Image too big to display

Although I was expecting an automatic solution (fitting to the screen automatically), resizing solves the problem as well. import cv2 cv2.namedWindow(“output”, cv2.WINDOW_NORMAL) # Create window with freedom of dimensions im = cv2.imread(“earth.jpg”) # Read image imS = cv2.resize(im, (960, 540)) # Resize image cv2.imshow(“output”, imS) # Show image cv2.waitKey(0) # Display the image infinitely until … Read more