画像のグレースケール化

2015/8/13

Python2.7.6, OpenCV3.0.0

import cv2

im = imread('test.png')

im_gray = cv2.cvtColor(im, cv2.COLOR_BGR2GRAY)