標題:如何在three.js中實現MIP(maximum intensity projection)
很簡單,只要對material加這兩行:
material.blending = THREE.CustomBlending;
material.blendEquation = THREE.MaxEquation;
加完之後,最大密度投影就完成了:
標題:如何在three.js中實現MIP(maximum intensity projection)
很簡單,只要對material加這兩行:
material.blending = THREE.CustomBlending;
material.blendEquation = THREE.MaxEquation;
加完之後,最大密度投影就完成了:
標題:解決matplotlab的TypeError: 'str' object is not callable.問題
今天在利用matplotlab畫圖時,編輯器報了以下錯誤:
TypeError: 'str' object is not callable.
重開之後,圖已經可以畫了。
標題:[不用降版本]解決object arrays cannot be loaded when allow_pickle=false問題
今天在使用Python的np.load時發生以下錯誤:
object arrays cannot be loaded when allow_pickle=false
我們把np.load("file.npy")改成np.load("file.npy",allow_pickle=True)
然後再執行一次,npy檔已經可以載入了。