Created
August 11, 2017 10:09
-
-
Save L4HG/de64649bab77b53670b25c79a6938e09 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
# добавим необходимый пакет с opencv | |
import cv2 | |
# загружаем изображение и отображаем его | |
image = cv2.imread("matrix-sunglasses-768x320.jpg") | |
cv2.imshow("Original image", image) | |
cv2.waitKey(0) | |
print(image.shape) | |
# Нам надо сохранить соотношение сторон | |
# чтобы изображение не исказилось при уменьшении | |
# для этого считаем коэф. уменьшения стороны | |
final_wide = 200 | |
r = float(final_wide) / image.shape[1] | |
dim = (final_wide, int(image.shape[0] * r)) | |
# уменьшаем изображение до подготовленных размеров | |
resized = cv2.resize(image, dim, interpolation = cv2.INTER_AREA) | |
cv2.imshow("Resize image", resized) | |
cv2.waitKey(0) | |
cropped = image[30:130, 150:300] | |
cv2.imshow("Cropped image", cropped) | |
cv2.waitKey(0) | |
# получим размеры изображения для поворота | |
# и вычислим центр изображения | |
(h, w) = image.shape[:2] | |
center = (w / 2, h / 2) | |
# повернем изображение на 180 градусов | |
M = cv2.getRotationMatrix2D(center, 180, 1.0) | |
rotated = cv2.warpAffine(image, M, (w, h)) | |
cv2.imshow("Rotated image", rotated) | |
cv2.waitKey(0) | |
#отразим изображение по горизонтали | |
flip_image = cv2.flip(image,1) | |
cv2.imshow("Flip image", flip_image) | |
cv2.waitKey(0) | |
# запишем изображение на диск в формате png | |
cv2.imwrite("flip.png", flip_image) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment