[root]/Packages/Teem/Dataflow/Modules/Converters
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 84 (100.0%) | 1792 (100.0%) | 21.3 |
mjc | 23 (27.4%) | 915 (51.1%) | 39.7 |
callahan | 45 (53.6%) | 454 (25.3%) | 10.0 |
darbyb | 8 (9.5%) | 364 (20.3%) | 45.5 |
allen | 2 (2.4%) | 42 (2.3%) | 21.0 |
mironova | 1 (1.2%) | 11 (0.6%) | 11.0 |
worthen | 4 (4.8%) | 4 (0.2%) | 1.0 |
mdavis | 1 (1.2%) | 2 (0.1%) | 2.0 |
Use ColorMap2 instead of Colormap2 for consistency.
1 lines of code changed in 2 files:
Rename ColorMap2 files to match the class type (Colormap2 to ColorMap2)
3 lines of code changed in 3 files:
remove debug prints
0 lines of code changed in 2 files:
Minor cleanups
12 lines of code changed in 3 files:
Use send_and_detach instead of just send on the OPorts for better caching behavior. Remove empty tcl_command functions
0 lines of code changed in 4 files:
Use send_and_detach instead of just send on the OPorts for better caching behavior.
119 lines of code changed in 9 files:
Remove dependency on Core/Algorithms/DataIO/
0 lines of code changed in 2 files:
replace int argument for get_type_description with enum that specifies which info you are interested in. depricate virtual const string get_type_name(int n = -1) const, use get_type_description(...)->get_name() instead.
5 lines of code changed in 3 files:
added support reexecuting for gui var state changes and changed names for consistancy
41 lines of code changed in 1 file:
Support Vector and Tensor fields again in FieldToNrrd
5 lines of code changed in 1 file:
Use airStrdup, fixes null pointer crash bugs
16 lines of code changed in 2 files:
Fix case where data type description isn't defined.
23 lines of code changed in 1 file:
fix dynamic compilation
356 lines of code changed in 3 files:
more general access to raw pointer
1 lines of code changed in 1 file:
Fixes for Mac OSX after H_O_Basis merge. Now compiles and runs on OSX 10.4.
Disabled MacForceLoad in Core/Init/init.cc until needed as the static constructors that were being called by this function no longer exist because the derived Field types went away.
Added in unsigned int operator for MaskedLatVolMesh::NodeIter.
Changed #include <values.h> to #include <float.h> for OSX compatibility.
Added in Core/Basis to various sub.mk files in BioPSE and Teem Packages.
2 lines of code changed in 1 file:
initial commit of H_O_Basis branch merge
533 lines of code changed in 8 files:
Merge the 1.24.2 changes into the trunk
5 lines of code changed in 1 file:
moved compile type into the nrrddata
1 lines of code changed in 1 file:
Use Abs call in Core/Math/MiscMath.h
20 lines of code changed in 2 files:
Nrrds can now represent general orientation information using a spaceOrigin and per-axis vectors (spaceDirection vectors).The following code now handles the spaceOrigin and spaceDirection vectors fields in Nrrds.
NOTE: volume rendering Nrrds with spaceDirections does not work yet.
Packages/Teem/Dataflow/Modules/Converters/ConvertToNrrd.h
----------------------------------------------------------
When converting a LatVol, Image, or Scanline Field to a Nrrd, get the transform and if the data is not axis aligned, create a Nrrd with spaceOrigin and spaceDirection vectors. The spaceOrigin is a per Nrrd field and can be taken from the 4th column of the transform. The spaceDirection vectors are a per axis field and can be taken from the transform columns 0, 1, and 2. If the data is axis aligned, create a Nrrd that uses min/max/spacing. A Nrrd can use either min/max/spacing, or spaceDirection, but not both.
Packages/Teem/Dataflow/Modules/Converters/NrrdToField.cc
Packages/Teem/Dataflow/Modules/Converters/NrrdToField.h
-----------------------------------------------------------
When converting just data (which makes LatVol, Image, or Scanline fields), if the spaceDirection vectors are defined, create the mesh and apply the appropriate transform. The spaceDirection vectors make up columns 0, 1, and 2 and the spaceOrigin can be used to set the 4th column of the transform. If the data is axis aligned (only the diagonals of the transform are defined), create the mesh as it was created before with a min/max point. If the data has orientation information, set the transform to be what was pulled out of the space information of the Nrrd. If the Nrrd had a Transform property (old way of storing transform info), apply that transform.
Packages/Teem/Dataflow/XML/UnuAxinfo.xml
Packages/Teem/Dataflow/GUI/UnuAxinfo.tcl
Packages/Teem/Dataflow/Modules/Unu/UnuAxinfo.cc
-----------------------------------------
Add ability to modify only certain fields instead of all fields. Add ability to set the spaceOrigin (which is per Nrrd) and the spaceDirection vectors. SpaceDirection vectors should be doubles separated by commas.
Packages/Teem/Dataflow/GUI/NrrdInfo.tcl
Packages/Teem/Dataflow/Modules/NrrdData/NrrdInfo.cc
----------------------------------------------------
Show spaceOrigin and spaceDirection vector values if available.
Packages/Teem/Dataflow/Modules/DataIO/NrrdReader.cc
---------------------------------------------------
Only call nrrdAxisInfoMinMaxSet if the space information hasn't been set.
321 lines of code changed in 3 files:
(10 more)