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


Python Pipeline.normSmooth方法代码示例

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


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

示例1:

# 需要导入模块: from pipeline import Pipeline [as 别名]
# 或者: from pipeline.Pipeline import normSmooth [as 别名]
os.chdir(pipe.working_preprocdir)
if options.recon:
    pipe.recon(StudyVariables.studyName, subjFunctionalFormat)
    if os.path.exists(subid + "_assetRun1.nii"):
        pipe.remove_discdacqs(subid + "_assetRun1.nii", 2)
    if os.path.exists(subid + "_assetRun2.nii"):
        pipe.remove_discdacqs(subid + "_assetRun2.nii", 2)
    if os.path.exists(subid + "_assetRest195.nii"):
        pipe.remove_discdacqs(subid + "_assetRest195.nii", 32)
    if os.path.exists(subid + "_assetRest165.nii"):
        pipe.remove_discdacqs(subid + "_assetRest165.nii", 2)
if options.stc:
    pipe.stc(subjFunctionalFormat)
if options.realign:
    pipe.realign(subjRealignJob)
if options.motioncheck:
    pipe.motionCheck(MOTION_THRESHOLD)
if options.calcderivs:
    pipe.calcDerivs()
if options.fmap and subjHasFmap:
    pipe.fieldMap()
if options.normalize:
    pipe.normSmooth(subjNormJob)
if options.moveLocalFiles:
    pipe.moveLocalFilesToNetwork()

os.chdir(pipe.statsdir)
if options.stats:
    pipe.stats1L(subjStatsJob)
os.chdir(current)
开发者ID:brainmap,项目名称:WADRC-fMRI-Pipeline,代码行数:32,代码来源:preproc-ries.aware.visit1.py

示例2: SPMJobIdentity

# 需要导入模块: from pipeline import Pipeline [as 别名]
# 或者: from pipeline.Pipeline import normSmooth [as 别名]
    # make and change stats job instance
    stats_template_identity = SPMJobIdentity (
        StudyVariables.statsTemplateSubid,
        [StudyVariables.statsTemplatePreprocDir, StudyVariables.statsTemplateStatsDir, StudyVariables.statsTemplateOnsetsDir],
        StudyVariables.statsTemplateRuns,
        fieldmap=StudyVariables.statsTemplateFM
    )
    stats_job = SPMJob(subjStatsJob, stats_template_identity)
    print "Replacing Stats SPM Identity in subject job "; print stats_job
    stats_job.replaceIdentity(subj_stats_identity)


current = os.getcwd()
os.chdir(pipe.working_preprocdir)
if options.recon: pipe.recon(StudyVariables.studyName, subjFunctionalFormat)
if options.stc: pipe.stc(subjFunctionalFormat)
if options.realign: pipe.realign(subjRealignJob)
if options.motioncheck: pipe.motionCheck(MOTION_THRESHOLD)
if options.calcderivs: pipe.calcDerivs()
if options.fmap and subjHasFmap: pipe.fieldMap()
if options.normalize: pipe.normSmooth(subjNormJob)
if options.moveLocalFiles: pipe.moveLocalFilesToNetwork()

os.chdir(pipe.statsdir)
if options.stats: pipe.stats1L(subjStatsJob)
os.chdir(current)




开发者ID:brainmap,项目名称:WADRC-fMRI-Pipeline,代码行数:28,代码来源:preproc-johnson.tbi-va.visit1.py


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