4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Google Colaboratoryで簡単に画像を表示する方法

Last updated at Posted at 2019-05-11

画像で説明していきます。使い方についてはいろんな方が説明されているので割愛します。

画像の矢印のところをクリックしていき、画像を選択してアップロードするだけです。
コードを書いてアップロードすることもできますがこっちの方が簡単そうなので紹介します。

CSVファイルなどにも応用できます。

Screen Shot 2019-05-12 at 7.55.20.png Screen Shot 2019-05-12 at 7.56.11.png Screen Shot 2019-05-12 at 7.56.39.png

あとは表示させるコードを書いてRUN!

import cv2
import numpy as np
import matplotlib.pyplot as plt

img = cv2.imread("futaba.png")

plt.imshow(img)

こんな感じで表示されます。
Screen Shot 2019-05-12 at 8.05.05.png

4
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?