当前位置: 首页>>代码示例>>Python>>正文


Python FmriData.from_vol_ui方法代码示例

本文整理汇总了Python中pyhrf.FmriData.from_vol_ui方法的典型用法代码示例。如果您正苦于以下问题:Python FmriData.from_vol_ui方法的具体用法?Python FmriData.from_vol_ui怎么用?Python FmriData.from_vol_ui使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在pyhrf.FmriData的用法示例。


在下文中一共展示了FmriData.from_vol_ui方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_glm_default_real_data

# 需要导入模块: from pyhrf import FmriData [as 别名]
# 或者: from pyhrf.FmriData import from_vol_ui [as 别名]
    def test_glm_default_real_data(self):

        from pyhrf import FmriData
        from pyhrf.glm import glm_nipy

        fdata = FmriData.from_vol_ui()
        glm_nipy(fdata)
开发者ID:pyhrf,项目名称:pyhrf,代码行数:9,代码来源:test_glm.py

示例2: setDummyInputData

# 需要导入模块: from pyhrf import FmriData [as 别名]
# 或者: from pyhrf.FmriData import from_vol_ui [as 别名]
    def setDummyInputData(self, xmlFile):

        f = open(xmlFile, 'r')
        xml = f.read()
        t = xmlio.from_xml(xml)
        if t.data.data_type == 'volume':
            dataFn = pyhrf.get_data_file_name('dummySmallBOLD.nii.gz')
            maskFn = pyhrf.get_data_file_name('dummySmallMask.nii.gz')
            sd = FMRISessionVolumicData(bold_file=dataFn)
            t.set_init_param('fmri_data',
                             FmriData.from_vol_ui(mask_file=maskFn,
                                                  sessions_data=[sd]))

        elif t.data.data_type == 'surface':
            fn = 'real_data_surf_tiny_bold.gii'
            dataFn = pyhrf.get_data_file_name(fn)
            fn = 'real_data_surf_tiny_parcellation.gii'
            maskFn = pyhrf.get_data_file_name(fn)
            fn = 'real_data_surf_tiny_mesh.gii'
            meshFn = pyhrf.get_data_file_name(fn)
            sd = FMRISessionSurfacicData(bold_file=dataFn)
            t.set_init_param('fmri_data',
                             FmriData.from_surf_ui(mask_file=maskFn,
                                                   mesh_file=meshFn,
                                                   sessions_data=[sd]))
        else:
            raise Exception('Unsupported class ... todo')

        f = open(xmlFile, 'w')
        f.write(xmlio.to_xml(t))
        f.close()
开发者ID:pyhrf,项目名称:pyhrf,代码行数:33,代码来源:commandTest.py

示例3: test_fir_glm

# 需要导入模块: from pyhrf import FmriData [as 别名]
# 或者: from pyhrf.FmriData import from_vol_ui [as 别名]
    def test_fir_glm(self):

        from pyhrf import FmriData
        from pyhrf.glm import glm_nipy

        fdata = FmriData.from_vol_ui()
        glm_nipy(fdata, hrf_model='FIR', fir_delays=range(10))
开发者ID:pyhrf,项目名称:pyhrf,代码行数:9,代码来源:test_glm.py

示例4: setDummyInputData

# 需要导入模块: from pyhrf import FmriData [as 别名]
# 或者: from pyhrf.FmriData import from_vol_ui [as 别名]
    def setDummyInputData(self, xmlFile):

        f = open(xmlFile, "r")
        xml = f.read()
        t = xmlio.fromXML(xml)
        if t.data.data_type == "volume":
            dataFn = pyhrf.get_data_file_name("dummySmallBOLD.nii.gz")
            maskFn = pyhrf.get_data_file_name("dummySmallMask.nii.gz")
            sd = FMRISessionVolumicData(bold_file=dataFn)
            t.set_init_param("fmri_data", FmriData.from_vol_ui(mask_file=maskFn, sessions_data=[sd]))

        elif t.data.data_type == "surface":
            fn = "real_data_surf_tiny_bold.gii"
            dataFn = pyhrf.get_data_file_name(fn)
            fn = "real_data_surf_tiny_parcellation.gii"
            maskFn = pyhrf.get_data_file_name(fn)
            fn = "real_data_surf_tiny_mesh.gii"
            meshFn = pyhrf.get_data_file_name(fn)
            sd = FMRISessionSurfacicData(bold_file=dataFn)
            t.set_init_param("fmri_data", FmriData.from_surf_ui(mask_file=maskFn, mesh_file=meshFn, sessions_data=[sd]))
        else:
            raise Exception("Unsupported class ... todo")

        f = open(xmlFile, "w")
        f.write(xmlio.toXML(t, handler=NumpyXMLHandler()))
        f.close()
开发者ID:philouc,项目名称:pyhrf,代码行数:28,代码来源:commandTest.py

示例5: test_glm_contrasts

# 需要导入模块: from pyhrf import FmriData [as 别名]
# 或者: from pyhrf.FmriData import from_vol_ui [as 别名]
    def test_glm_contrasts(self):

        from pyhrf import FmriData
        from pyhrf.glm import glm_nipy
        cons = {'audio-video': 'audio - video',
                'video-audio': 'video - audio',
                }
        fdata = FmriData.from_vol_ui()
        g, dm, cons = glm_nipy(fdata, contrasts=cons)
开发者ID:pyhrf,项目名称:pyhrf,代码行数:11,代码来源:test_glm.py

示例6: test_parcellation

# 需要导入模块: from pyhrf import FmriData [as 别名]
# 或者: from pyhrf.FmriData import from_vol_ui [as 别名]
    def test_parcellation(self):

        p_size = 300
        np.random.seed(125437)
        parcellation, _ = parcellation_for_jde(FmriData.from_vol_ui(), p_size,
                                               output_dir=self.tmp_dir)
        ms = np.mean([(parcellation == i).sum()
                      for i in np.unique(parcellation) if i != 0])
        size_tol = 50
        if np.abs(ms - p_size) > size_tol:
            raise Exception('Mean size of parcellation seems too '
                            'large: %1.2f >%d+-%d ' % (ms, p_size, size_tol))
        if 0:
            print parcellation_report(parcellation)
开发者ID:pyhrf,项目名称:pyhrf,代码行数:16,代码来源:jdetest.py


注:本文中的pyhrf.FmriData.from_vol_ui方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。