2018-01-01から1年間の記事一覧

ミラーレス一眼「SONY α6000」、単焦点レンズ「SEL50F18」購入

用語メモ 焦点距離→画像の画角を決定する。焦点距離が短いほど広角(ルーズ)、長いほど望遠(ズーム) シャッタースピード→シャッターを開いている時間。長いほど多くの光を積算して取り込める。 F値→絞り値。F値が小さいほど絞りが開き、位相のずれた?光…

Plot Options #python3.6 #matplotlib.pyplot

import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D #3D view fig = plt.figure() ax = plt.axes([left, bottom, width, height]) ax = plt.add_subplot(111) ax = plt.add_subplot(111, projection='3d') #3D view # plot styles ax…

画像を別窓で出力 #python3.6 #matplotlib

import matplotlib %matplotlib qt from IPython import get_ipython get_ipython().run_line_magic('matplotlib', 'inline') get_ipython().run_line_magic('matplotlib', 'qt')