ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

使用python将mat文件转化为json文件并储存

2022-08-11 20:00:08  阅读:203  来源: 互联网

标签:__ 文件 mat filepath python dic path matlabFile


import os
import scipy.io as spio
import pandas as pd


def loadmat(filename):
    """
    this function should be called instead of direct spio.loadmat
    as it cures the problem of not properly recovering python dictionaries
    from mat files. It calls the function check keys to cure all entries
    which are still mat-objects
    """
    data = spio.loadmat(filename, struct_as_record=False, squeeze_me=True)
    return _check_keys(data)


def _check_keys(dic):
    """
    checks if entries in dictionary are mat-objects. If yes
    todict is called to change them to nested dictionaries
    """
    for key in dic:
        if isinstance(dic[key], spio.matlab.mio5_params.mat_struct):
            dic[key] = _todict(dic[key])
    return dic


def _todict(matobj):
    """
    A recursive function which constructs from matobjects nested dictionaries
    """
    dic = dict()
    for strg in matobj._fieldnames:
        elem = matobj.__dict__[strg]
        if isinstance(elem, spio.matlab.mio5_params.mat_struct):
            dic[strg] = _todict(elem)
        else:
            dic[strg] = elem
    return dic


def mat2json(mat_path, filepath=None):
    """
    Parameters:
        mat_path: mat文件的地址
        filepath: 如果不填,则默认储存为mat同名json文件;否则以filepath为名储存
    """
    matlabFile = loadmat(mat_path)
    # pop all those dumb fields that don't let you jsonize file
    matlabFile.pop('__header__')
    matlabFile.pop('__version__')
    matlabFile.pop('__globals__')
    # jsonize the file - orientation is 'index'
    matlabFile = pd.Series(matlabFile).to_json()

    if filepath:
        with open(filepath, 'w') as f:
            f.write(matlabFile)
    else:
        filepath = os.path.splitext(os.path.split(mat_path)[1])[0] + '.json'
        with open(filepath, 'w') as f:
            f.write(matlabFile)

修改自 https://www.cnblogs.com/geoffreyone/p/11077327.html

标签:__,文件,mat,filepath,python,dic,path,matlabFile
来源: https://www.cnblogs.com/noxtera/p/mat2json.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有