2020年10月9日 星期五

如何在three.js中實現MIP(maximum intensity projection)

 標題:如何在three.js中實現MIP(maximum intensity projection)

很簡單,只要對material加這兩行:

material.blending = THREE.CustomBlending;

material.blendEquation = THREE.MaxEquation;


加完之後,最大密度投影就完成了:



2020年10月4日 星期日

解決matplotlab的TypeError: 'str' object is not callable.問題

 標題:解決matplotlab的TypeError: 'str' object is not callable.問題


今天在利用matplotlab畫圖時,編輯器報了以下錯誤:

TypeError: 'str' object is not callable.


如何解決呢,我們只要把內核關掉重開就行,如果不知道怎麼關內核,可以直接關閉程式後重開程式。

重開之後,圖已經可以畫了。



[免降版]解決object arrays cannot be loaded when allow_pickle=false問題

標題:[不用降版本]解決object arrays cannot be loaded when allow_pickle=false問題


今天在使用Python的np.load時發生以下錯誤:

object arrays cannot be loaded when allow_pickle=false


看網路上說需要降numpy的版本,那有沒有不需要降版本的解決方式呢?有的。

我們把np.load("file.npy")改成np.load("file.npy",allow_pickle=True)

然後再執行一次,npy檔已經可以載入了。