1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381
|
"""
This module displays glyphs scaled and colored as per the tensor data.
This will work for any dataset.
This code is distributed under the conditions of the BSD license. See
LICENSE.txt for details.
Copyright (c) 2001-2002, Prabhu Ramachandran.
"""
__author__ = "Prabhu Ramachandran <prabhu_r@users.sf.net>"
__version__ = "$Revision: 1.5 $"
__date__ = "$Date: 2005/08/02 18:30:13 $"
__credits__ = """Many thanks to Jose Paulo <moitinho@civil.ist.utl.pt>
for contributing an initial version of this Module."""
import Base.Objects, Common
import Tkinter, tkColorChooser, math
import vtk
import vtkPipeline.vtkMethodParser
debug = Common.debug
class TensorGlyphs (Base.Objects.Module):
""" This module displays glyphs, scaled and colored as per the
tensor data. This will work for any dataset. """
def __init__ (self, mod_m):
debug ("In TensorGlyph::__init__ ()")
Common.state.busy ()
Base.Objects.Module.__init__ (self, mod_m)
self.sphere = vtk.vtkSphereSource ()
self.axes = vtk.vtkAxes ()
self.glyphs = vtk.vtkTensorGlyph ()
# The actual glyph used is controlled using self.glyph_var
self.mapper = vtk.vtkPolyDataMapper ()
self.actor = vtk.vtkActor ()
self.data_out = self.mod_m.GetOutput ()
self.color_mode = 1 # 1 is scalar, -1 none
self._initialize ()
self._gui_init ()
self.do_color_mode()
self.renwin.Render ()
Common.state.idle ()
def __del__ (self):
debug ("In TensorGlyphs::__del__ ()")
if self.actor:
self.renwin.remove_actors (self.actor)
self.renwin.Render ()
def _initialize (self):
debug ("In TensorGlyphs::_initialize ()")
self.sphere.SetThetaResolution (8)
self.sphere.SetPhiResolution (8)
self.glyphs.SetInput (self.data_out)
self.glyphs.SetSource (self.sphere.GetOutput())
self.glyphs.SetScaleFactor (1.0)
self.glyphs.ClampScalingOn ()
self.glyphs.SetMaxScaleFactor (5.0)
self.normals = vtk.vtkPolyDataNormals ()
self.normals.SetInput (self.glyphs.GetOutput ())
self.mapper.SetInput (self.normals.GetOutput ())
self.actor.SetMapper (self.mapper)
self.actor.GetProperty ().SetLineWidth (2)
self.actor.GetProperty ().BackfaceCullingOff ()
# self.actor.GetProperty ().FrontfaceCullingOff ()
self.actor.GetProperty ().SetColor (*Common.config.fg_color)
self.center = self.data_out.GetCenter ()
self.renwin.add_actors (self.actor)
# used for the pipeline browser
self.pipe_objs = self.actor
def _gui_init (self):
debug ("In TensorGlyphs::_gui_init ()")
self.root = None
self.glyph_frame = None
self.tensor_frame = None
self.glyph_var = Tkinter.IntVar ()
self.glyph_var.set (1)
# 1 == sphere glyph, 2 == axes.
def SetInput (self, source):
debug ("In TensorGlyphs::SetInput ()")
Common.state.busy ()
self.data_out = source
self.glyphs.SetInput (self.data_out)
self.do_color_mode ()
Common.state.idle ()
def save_config (self, file):
debug ("In TensorGlyphs::save_config ()")
file.write ("%d , %d\n"%(self.glyph_var.get (), \
self.color_mode ))
p = vtkPipeline.vtkMethodParser.VtkPickler ()
for obj in (self.sphere, self.axes, self.glyphs, self.normals,
self.mapper, self.actor, self.actor.GetProperty ()):
p.dump (obj, file)
def load_config (self, file):
debug ("In TensorGlyphs::load_config ()")
val = file.readline ()
(glyph , self.color_mode) = eval (val)
self.glyph_var.set (glyph)
p = vtkPipeline.vtkMethodParser.VtkPickler ()
for obj in (self.sphere, self.axes, self.glyphs, self.normals,
self.mapper, self.actor, self.actor.GetProperty ()):
p.load (obj, file)
self.set_glyph_mode ()
self.do_color_mode ()
self.renwin.Render ()
def config_changed (self):
debug ("In TensorGlyphs::config_changed ()")
self.actor.GetProperty ().SetColor (*Common.config.fg_color)
def make_main_gui (self):
debug ("In TensorGlyphs::make_main_gui ()")
self.make_choice_gui ()
self.make_tensor_prop_gui ()
self.make_actor_gui (color=0, scalar=0)
def make_choice_gui (self):
debug ("In TensorGlyphs::make_choice_gui ()")
frame = Tkinter.Frame (self.root)
frame.pack (side='top', fill='both', expand=1)
self.make_glyph_gui (frame)
self.make_color_mode_gui (frame)
def make_tensor_prop_gui (self):
debug ("In TensorGlyphs::make_tensor_prop_gui ()")
frame = Tkinter.Frame (self.root)
frame.pack (side='top', fill='both', expand=1)
self.make_tensor_gui (frame)
def make_glyph_gui (self, master):
debug ("In TensorGlyphs::make_glyph_gui ()")
frame = Tkinter.Frame (master, relief='ridge', bd=2)
frame.pack (side='left', fill='both', expand=1)
#
# The "value" in the radio button has to agree with
# what is used in set_glyph_mode
#
lab = Tkinter.Label (frame, text="Tensor representation:")
lab.grid (row=0, column=0, sticky='ew', pady=5)
rw = 1
rb = Tkinter.Radiobutton (frame, text="Ellipsoids",
variable=self.glyph_var, value=1,
command=self.set_glyph_mode)
rb.grid (row=rw, column=0, sticky='w')
rw = rw + 1
rb = Tkinter.Radiobutton (frame, text="Axes",
variable=self.glyph_var, value=2,
command=self.set_glyph_mode)
rb.grid (row=rw, column=0, sticky='w')
rw = rw + 1
# This buttons is disabled. Just there in case there is a need.
rb = Tkinter.Radiobutton (frame, text="Cone",
variable=self.glyph_var, value=-1,
command=self.set_glyph_mode)
rb.grid (row=rw, column=0, sticky='w')
rb.config (state='disabled')
rw = rw + 1
def make_color_mode_gui (self, master):
debug ("In TensorGlyphs::make_color_mode_gui ()")
frame = Tkinter.Frame (master, relief="ridge", bd=2)
frame.pack (side='left', fill='both', expand=1)
rw = 0
lab = Tkinter.Label (frame, text="Coloring mode:")
lab.grid (row=rw, column=0, sticky='ew', pady=5)
rw = rw + 1
self.color_var = Tkinter.IntVar ()
self.color_var.set (self.color_mode)
but = Tkinter.Button (frame, text="Change Glyph Color",
command=self.set_actor_color)
but.grid (row=rw, column=0, sticky='ew')
rw = rw + 1
rb = Tkinter.Radiobutton (frame, text="No Coloring",
variable=self.color_var, value=-1,
command=self.set_color_mode_gui)
rb.grid (row=rw, column=0, sticky='w')
rw = rw + 1
rb = Tkinter.Radiobutton (frame, text="Scalar Coloring",
variable=self.color_var, value=1,
command=self.set_color_mode_gui)
rb.grid (row=rw, column=0, sticky='w')
rw = rw + 1
def make_tensor_gui (self, master):
debug ("In TensorGlyphs::make_tensor_gui ()")
self.tensor_frame = Tkinter.Frame (master, bd=2)
self.tensor_frame.pack (side='top', fill='both', expand=1)
frame = Tkinter.Frame (self.tensor_frame, relief='ridge', bd=1)
frame.pack (side='top', fill='both', expand=1)
rw = 0
labl = Tkinter.Label (frame, text="Tensor scale factor:")
labl.grid (row=rw, column=0, sticky='w')
self.scale_var = Tkinter.DoubleVar ()
self.scale_var.set (self.glyphs.GetScaleFactor ())
scale_entr = Tkinter.Entry (frame, width=5, relief='sunken',
textvariable=self.scale_var)
scale_entr.grid (row=rw, column=1, sticky='we')
scale_entr.bind ("<Return>", self.change_scale)
rw = rw + 1
labl = Tkinter.Label (frame, text="Maximum tensor scale factor:")
labl.grid (row=rw, column=0, sticky='w')
self.max_scale_var = Tkinter.DoubleVar ()
self.max_scale_var.set (self.glyphs.GetMaxScaleFactor ())
max_scale_entr = Tkinter.Entry (frame, width=5, relief='sunken',
textvariable=self.max_scale_var)
max_scale_entr.grid (row=rw, column=1, sticky='we')
max_scale_entr.bind ("<Return>", self.change_max_scale)
val = self.glyph_var.get ()
if val == 1:
self.make_sphere_gui (self.tensor_frame)
elif val == 2:
self.make_axes_gui (self.tensor_frame)
def make_axes_gui (self, master):
debug ("In TensorGlyphs::make_axes_gui ()")
frame = Tkinter.Frame (master, relief='ridge', bd=1)
frame.pack (side='top', fill='both', expand=1)
self.glyph_frame = frame
rw = 0
labl = Tkinter.Label (frame, text="Axes Scale factor:")
labl.grid (row=rw, column=0, sticky='w')
self.axes_scale_var = Tkinter.DoubleVar ()
self.axes_scale_var.set (self.axes.GetScaleFactor ())
entr = Tkinter.Entry (frame, width=5, relief='sunken',
textvariable=self.axes_scale_var)
entr.grid (row=rw, column=1, sticky='we')
entr.bind ("<Return>", self.change_axes_gui)
rw = rw + 1
self.axes_symm_var = Tkinter.IntVar ()
self.axes_symm_var.set (self.axes.GetSymmetric ())
b = Tkinter.Checkbutton (frame, text="Symmmetric Axes On",
variable=self.axes_symm_var, onvalue=1,
offvalue=0, command=self.change_axes_gui)
b.grid (row=rw, column=0, columnspan=2, sticky='w')
def make_sphere_gui (self, master):
debug ("In TensorGlyphs::make_sphere_gui ()")
frame = Tkinter.Frame (master, relief='ridge', bd=1)
frame.pack (side='top', fill='both', expand=1)
self.glyph_frame = frame
rw = 0
labl = Tkinter.Label (frame, text="Ellipsoid theta resolution:")
labl.grid (row=rw, column=0, sticky='w')
self.ellipsoid_tres_var = Tkinter.IntVar ()
self.ellipsoid_tres_var.set (self.sphere.GetThetaResolution ())
entr = Tkinter.Entry (frame, width=5, relief='sunken',
textvariable=self.ellipsoid_tres_var)
entr.grid (row=rw, column=1, sticky='we')
entr.bind ("<Return>", self.change_sphere_gui)
rw = rw + 1
labl = Tkinter.Label (frame, text="Ellipsoid phi resolution:")
labl.grid (row=rw, column=0, sticky='w')
self.ellipsoid_pres_var = Tkinter.IntVar ()
self.ellipsoid_pres_var.set (self.sphere.GetPhiResolution ())
entr = Tkinter.Entry (frame, width=5, relief='sunken',
textvariable=self.ellipsoid_pres_var)
entr.grid (row=rw, column=1, sticky='we')
entr.bind ("<Return>", self.change_sphere_gui)
rw = rw + 1
def change_scale (self, event=None):
debug ("In TensorGlyphs::change_scale ()")
Common.state.busy ()
self.glyphs.SetScaleFactor (self.scale_var.get ())
self.renwin.Render ()
Common.state.idle ()
def change_max_scale (self, event=None):
debug ("In TensorGlyphs::change_max_scale ()")
Common.state.busy ()
self.glyphs.SetMaxScaleFactor (self.max_scale_var.get ())
self.renwin.Render ()
Common.state.idle ()
def change_sphere_gui (self, event=None):
debug ("In TensorGlyphs::change_sphere_gui ()")
Common.state.busy ()
self.sphere.SetThetaResolution (self.ellipsoid_tres_var.get ())
self.sphere.SetPhiResolution (self.ellipsoid_pres_var.get ())
self.renwin.Render ()
Common.state.idle ()
def change_axes_gui (self, event=None):
debug ("In TensorGlyphs::change_axes_gui ()")
Common.state.busy ()
self.axes.SetScaleFactor (self.axes_scale_var.get ())
self.axes.SetSymmetric (self.axes_symm_var.get ())
self.renwin.Render ()
Common.state.idle ()
def set_color_mode_gui (self, event=None):
"This sets up the data to setup the actual coloring mode."
debug ("In TensorGlyphs::set_color_mode_gui ()")
Common.state.busy ()
self.color_mode = self.color_var.get ()
self.do_color_mode ()
self.renwin.Render ()
Common.state.idle ()
def do_color_mode (self):
debug ("In TensorGlyphs::do_color_mode ()")
self.glyphs.ColorGlyphsOn ()
if self.color_mode == 1: # Scalar Coloring
self.mapper.ScalarVisibilityOn ()
dr = self.mod_m.get_scalar_data_range ()
self.mapper.SetScalarRange (dr)
self.mapper.SetLookupTable (self.mod_m.get_scalar_lut ())
elif self.color_mode == -1: # No colouring
self.glyphs.ColorGlyphsOff ()
self.mapper.ScalarVisibilityOff ()
def set_actor_color (self, event=None):
debug ("In TensorGlyphs::set_actor_color ()")
clr = self.actor.GetProperty ().GetColor ()
init_clr = "#%02x%02x%02x"%(clr[0]*255, clr[1]*255, clr[2]*255)
color = tkColorChooser.askcolor (title="Change object color",
initialcolor=init_clr)
if color[1] is not None:
Common.state.busy ()
clr = Common.tk_2_vtk_color (color[0])
self.actor.GetProperty ().SetColor(*clr)
self.renwin.Render ()
Common.state.idle ()
if self.color_mode != -1:
msg = "Warning: This setting will have effect only if "\
"the coloring mode is set to 'No Coloring'."
Common.print_err (msg)
def set_glyph_mode (self, event=None):
debug ("In TensorGlyphs::set_glyph_mode ()")
Common.state.busy ()
val = self.glyph_var.get ()
if val == 1: # Sphere
self.glyphs.SetSource (self.sphere.GetOutput ())
self.normals.SetInput (self.glyphs.GetOutput ())
self.mapper.SetInput (self.normals.GetOutput ())
if self.glyph_frame:
self.glyph_frame.destroy ()
self.make_sphere_gui (self.tensor_frame)
elif val == 2: # Axes
self.glyphs.SetSource (self.axes.GetOutput ())
# normals wont work for this case.
self.mapper.SetInput (self.glyphs.GetOutput ())
if self.glyph_frame:
self.glyph_frame.destroy ()
self.make_axes_gui (self.tensor_frame)
self.renwin.Render ()
Common.state.idle ()
|