Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
好像所有的demo都把镜像文件写入系统,这样我们就可以用DS9查看了。有没有一种方法可以在编写代码时查看我们在 iPython Notebook 上内联制作的图像?这将大大加快我的编码速度。
谢谢!
GalSimImage对象将像素值存储在一个 numpy 数组中:im.array. 因此,如果您使用带有 的 iPython 笔记本%matplotlib inline,您只需plt.imshow(im.array)在屏幕上显示数据图像即可。
Image
im.array
%matplotlib inline
plt.imshow(im.array)