## 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() 






블로그 이미지

§§

내 주머니속 작은 수첩

,