1. 程式人生 > >7_python讀取 .mat 檔案(matlab檔案)(20181224)

7_python讀取 .mat 檔案(matlab檔案)(20181224)

python讀取 .mat 檔案(matlab檔案)和 scipy庫包的使用(20181224)

1、python調勇scipy庫讀取.mat檔案

.mat檔案:是matlab的檔案,如果直接開啟,一般看到的就是亂碼的,此時可以借用scipy庫進行讀取該檔案
scipy的一些基本使用,見下文

import scipy.io as scio

path = r'E:\[EG_code_data]_release\data\images_tracker\00047.mat'
reftracker = scio.loadmat(path)['tracker'] print(reftracker)

2、scipy庫包的使用