画像の反転

2017/01/22

Python2.7.6, OpenCV3.0.0

# -*- coding: utf-8 -*-

import cv2

file_path = 'test.jpg'

im = cv2.imread(file_path)
im = cv2.flip(im,0) #上下反転
im = cv2.flip(im,1) #左右反転
im = cv2.flip(im,-1) #上下左右反転

cv2.imwrite('output.jpg',im)