Created
October 13, 2020 14:00
-
-
Save Abhayparashar31/9b01473431de765c0a73e81271233d91 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import cv2 | |
img = cv2.imread("images/test.jpg") | |
imgCropped = img[50:283,25:190] | |
shape = imgCropped.shape | |
print(shape[0]) | |
imgCropped = cv2.resize(imgCropped,(shape[0]*12//10,shape[1]*2)) | |
cv2.imshow("Image cropped",imgCropped) | |
cv2.imshow("Image",img) | |
cv2.waitKey(0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment