From 59db08fab89c08aea0611ecd25798eb52f5ad650 Mon Sep 17 00:00:00 2001 From: paulojamorim Date: Mon, 2 Nov 2009 12:26:26 +0000 Subject: [PATCH] FIX: Bug in open analyze --- invesalius/control.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/invesalius/control.py b/invesalius/control.py index 2a2fba6..f75c362 100755 --- a/invesalius/control.py +++ b/invesalius/control.py @@ -159,7 +159,7 @@ class Controller(): proj.original_orientation = const.AXIAL proj.threshold_range = imagedata.GetScalarRange() proj.window = proj.threshold_range[1] - proj.threshold_range[0] - proj.level (0.5 * (proj.threshold_range[1] + proj.threshold_range[0])) + proj.level = (0.5 * (proj.threshold_range[1] + proj.threshold_range[0])) const.THRESHOLD_OUTVALUE = proj.threshold_range[0] const.THRESHOLD_INVALUE = proj.threshold_range[1] -- libgit2 0.21.2