當前位置: 首頁>>代碼示例>>Python>>正文


Python EMAN.save_data方法代碼示例

本文整理匯總了Python中EMAN.save_data方法的典型用法代碼示例。如果您正苦於以下問題:Python EMAN.save_data方法的具體用法?Python EMAN.save_data怎麽用?Python EMAN.save_data使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在EMAN的用法示例。


在下文中一共展示了EMAN.save_data方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: main

# 需要導入模塊: import EMAN [as 別名]
# 或者: from EMAN import save_data [as 別名]
def main():
    (options, args) = parse_command_line()

    LOGbegin(sys.argv)

    map1 = EMAN.EMData()
    map1.readImage(args[0])

    map2 = EMAN.EMData()
    map2.readImage(args[1])
    map2t = map2.copy()

    print "Start searching the scale factor in range [%g, %g]" % (options.scale_min, options.scale_max)
    scale = brent(matching_score, brack=[options.scale_min, options.scale_max], args=(map1, map2t))
    print "Final result: scale = %g" % (scale)
    if options.save_map or options.save_fsc:
        map2.setTAlign(0, 0, 0)
        map2.setRAlign(0, 0, 0)
        map2.rotateAndTranslate(scale)
        if options.save_map:
            map2.writeImage(options.save_map)
            print "Final transformed map2 is saved to %s" % (options.save_map)
        if options.save_fsc:
            fsc = map1.fsc(map2)
            if options.apix:
                EMAN.save_data(0, 1.0 / (options.apix * 2.0 * len(fsc)), fsc, len(fsc), options.save_fsc)
            else:
                EMAN.save_data(0, 1.0, fsc, len(fsc), options.save_fsc)
            print "Final Fourier Shell Correlation curve is saved to %s" % (options.save_fsc)

    LOGend()
開發者ID:triciatricia,項目名稱:SIMPLE,代碼行數:33,代碼來源:find_scale.py


注:本文中的EMAN.save_data方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。