## caffe2 공부를 위해 caffe2 Tutorials을 보고 하고 있습니다.
알려주는 python 소스는 일부분만 표시되어있어
안좋은 머리로 나머지 소스를 붙여넣어 수행되는 소스를 기록하였습니다.
##
import skimage import skimage.io as io import numpy as np import matplotlib.pyplot as pyplot IMAGE_LOCATION = "https://cdn.pixabay.com/photo/2015/02/10/21/28/flower-631765_1280.jpg" img = skimage.img_as_float(skimage.io.imread(IMAGE_LOCATION)).astype(np.float32) pyplot.figure() pyplot.subplot(1,2,1) pyplot.imshow(img) pyplot.axis('on') pyplot.title('Original image = RGB\nbigsun84') imgBGR = img[:, :, (2, 1, 0)] pyplot.subplot(1,2,2) pyplot.imshow(imgBGR) pyplot.axis('on') pyplot.title('bigsun84 OpenCV, Caffe2 = BGR\nbigsun84') pyplot.show() |
'기계치 이야기 > Deep_Learing' 카테고리의 다른 글
[caffe2] Tutorials Image Pre-Processing (Rescaling) (0) | 2017.06.16 |
---|---|
[caffe2] Tutorials Image Pre-Processing (Sizing) (0) | 2017.06.16 |
[caffe2] Tutorials Image Pre-Processing (Rotation Mirroring) (0) | 2017.06.16 |
텐서플로우(Tensorflow)의 Android 빌드 및 디바이스 설치 (0) | 2017.05.23 |
[caffe2] AIcamera android build 정리 (0) | 2017.05.22 |