Slide 30
Slide 30 text
Polanalyser:ミュラ ⾏列の計測
• ⼊⼒:光強度画像とミュラ ⾏列 偏光⽣成機・解析機 のペア
• 出⼒:ミュラ ⾏列画像
import polanalyser as pa
# ⼊⼒の画像とミュラー⾏列(偏光⽣成機・解析機)
imgs = [img_00, img_01, img_02, img_03, --省略--, img_35]
thetas = np.linspace(0, np.pi, num=len(imgs), endpoint=False)
mm_psg = [pa.qwp(theta) @ pa.polarizer(0) for theta in thetas]
mm_psa = [pa.polarizer(0) @ pa.qwp(5 * theta) for theta in thetas]
# ミュラー⾏列の推定
img_mueller = pa.calcMueller(imgs, mm_psg, mm_psa)
30