本文整理汇总了Python中pylinac.vmat.VMAT.run_demo_mlcs方法的典型用法代码示例。如果您正苦于以下问题:Python VMAT.run_demo_mlcs方法的具体用法?Python VMAT.run_demo_mlcs怎么用?Python VMAT.run_demo_mlcs使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pylinac.vmat.VMAT
的用法示例。
在下文中一共展示了VMAT.run_demo_mlcs方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Test_MLCS_demo
# 需要导入模块: from pylinac.vmat import VMAT [as 别名]
# 或者: from pylinac.vmat.VMAT import run_demo_mlcs [as 别名]
class Test_MLCS_demo(VMATMixin, unittest.TestCase):
"""Tests of the result values of the DRMLC demo images."""
def setUp(self):
self.vmat = VMAT()
self.vmat.load_demo_image('mlcs')
def test_demo(self):
self.vmat.run_demo_mlcs()
def test_overall_passed(self):
"""Test that the overall pass flag is true for default settings"""
super().test_overall_passed('mlcs')
def test_segment_positions(self):
"""Test various values of the Segments."""
self.vmat.analyze('mlcs')
segment_dict = {0: Point(170, 192), 2: Point(285, 192)}
super().test_segment_positions(segment_dict)
def test_segment_values(self):
self.vmat.analyze('mlcs')
segment_dict = {
0: {'r_dev': 0.437, 'r_corr': 100.89},
2: {'r_dev': -0.405, 'r_corr': 100.04},
}
super().test_segment_values(segment_dict)