3dmatch-toolbox
3dmatch-toolbox copied to clipboard
how to read .mat files generated from the 'makeCorresDataset.m' matlab script in python
I want to read data generated from makeCorresDataset.m matlab script using python
Does SciPy's loadmat work? Alternatively you could load the data in Matlab, then save it into something that's easily python-readable like HDF5.
actually I successfully load the files, I'm trying to understand the object structure for mat['data'] . when reading mat['labels'][0][0] I got 1x1 array of float element which is donate the label , but in case of mat['data'][0][0] I found and 1x1 object that I couldn't understand .
what extactly I want is the TFD values in order to be able to train them in keras