回答編集履歴

1

flip例を追記

2017/11/07 04:13

投稿

can110
can110

スコア38262

test CHANGED
@@ -4,7 +4,13 @@
4
4
 
5
5
 
6
6
 
7
+ 画像を逆転せずに表示させたい場合は[numpy.flip](https://docs.scipy.org/doc/numpy-dev/reference/generated/numpy.flip.html)で元データからひっくり返せばよいです。
8
+
9
+
10
+
7
11
  ```Python
12
+
13
+ im = np.flip(im,axis=0)
8
14
 
9
15
  # 略
10
16
 
@@ -15,3 +21,5 @@
15
21
  plt.title('output image')
16
22
 
17
23
  ```
24
+
25
+ ![イメージ説明](2cd3c43052d75f528dd40a914d047b0a.png)