[caffe2] Tutorials Image Pre-Processing (Rotation Mirroring)
기계치 이야기/Deep_Learing 2017. 6. 16. 13:51## caffe2 공부를 위해 caffe2 Tutorials을 보고 하고 있습니다.
알려주는 python 소스는 일부분만 표시되어있어
안좋은 머리로 나머지 소스를 붙여넣어 수행되는 소스를 기록하였습니다.
## 메모리가 부족하여 기존 이미지로 수행시 문제가 있어 파인애플이미지로 대체
import skimage import skimage.io as io import numpy as np import matplotlib.pyplot as pyplot # ROTATED_IMAGE = "https://upload.wikimedia.org/wikipedia/commons/8/87/Cell_Phone_Tower_in_Ladakh_India_with_Buddhist_Prayer_Flags.jpg" ROTATED_IMAGE = "https://upload.wikimedia.org/wikipedia/commons/e/e1/Ananas.jpg" imgRotated = skimage.img_as_float(skimage.io.imread(ROTATED_IMAGE)).astype(np.float32) imgRotated = np.rot90(imgRotated) pyplot.figure() pyplot.imshow(imgRotated) pyplot.axis('on') pyplot.title('Rotated image\nbigsun84') # MIRROR_IMAGE = "https://upload.wikimedia.org/wikipedia/commons/2/27/Mirror_image_sign_to_be_read_by_drivers_who_are_backing_up_-b.JPG" MIRROR_IMAGE = "https://upload.wikimedia.org/wikipedia/commons/e/e1/Ananas.jpg" imgMirror = skimage.img_as_float(skimage.io.imread(MIRROR_IMAGE)).astype(np.float32) imgMirror = np.fliplr(imgMirror) pyplot.figure() pyplot.imshow(imgMirror) pyplot.axis('on') pyplot.title('Mirror image\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 (Color Issues) (0) | 2017.06.16 |
텐서플로우(Tensorflow)의 Android 빌드 및 디바이스 설치 (0) | 2017.05.23 |
[caffe2] AIcamera android build 정리 (0) | 2017.05.22 |