change n_theta

This commit is contained in:
Yingjie Wang 2023-11-10 11:35:46 -05:00
parent 1f56c087e3
commit 87d606136c

View File

@ -225,6 +225,6 @@ if __name__=="__main__":
h = 4320
dis = 2400
max_angle = 1.1*np.arctan(np.sqrt(1+(h*h+w*w/4)/(dis*dis)))
angles,sRGB=rainbow(100, max_angle, 10)
angles,sRGB=rainbow(10000, max_angle, 10)
np.savez_compressed("saved.npz", a=angles, b=sRGB)
take_picture(angles,sRGB, 7680, 4320, 2400, "image.png")