Directory Packages/Teem/Dataflow/Modules/NrrdData/

Total Files:
7
Deleted Files:
0
Lines of Code:
1259

[root]/Packages/Teem/Dataflow/Modules/NrrdData

Lines of Code

Packages/Teem/Dataflow/Modules/NrrdData/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 40 (100.0%) 920 (100.0%) 23.0
mjc 9 (22.5%) 495 (53.8%) 55.0
callahan 27 (67.5%) 329 (35.8%) 12.1
darbyb 2 (5.0%) 90 (9.8%) 45.0
worthen 2 (5.0%) 6 (0.7%) 3.0

Most Recent Commits

callahan 2005-12-02 16:38 Rev.: 32711

Clean up newlines on error messsages

3 lines of code changed in 2 files:

  • Packages/Teem/Dataflow/Modules/NrrdData: ChooseNrrd.cc (+3 -3)
callahan 2005-12-02 14:37 Rev.: 32706

Instrument NrrdInfo to print out stats when regression testing.

0 lines of code changed in 2 files:

  • Packages/Teem/Dataflow/Modules/NrrdData: NrrdInfo.cc (changed)
callahan 2005-11-30 18:04 Rev.: 32681

Use NrrdData Nrrd constructor, clean up all the nrrdNew() memory leaks associated with old usage

6 lines of code changed in 6 files:

  • Packages/Teem/Dataflow/Modules/NrrdData: NrrdGradient.cc (+1 -3), NrrdSelectTime.cc (new), NrrdSetupTexture.cc (new)
callahan 2005-11-29 18:17 Rev.: 32660

Use send_and_detach instead of just send on the OPorts for better caching behavior. Remove empty tcl_command functions

12 lines of code changed in 5 files:

  • Packages/Teem/Dataflow/Modules/NrrdData: ChooseNrrd.cc (+1 -1), NrrdSelectTime.cc (+3 -2), NrrdSetProperty.cc (new), NrrdSetupTexture.cc (+2 -2)
callahan 2005-11-29 18:10 Rev.: 32658

Use send_and_detach instead of just send on the OPorts for better caching behavior. Remove empty tcl_command functions

1 lines of code changed in 1 file:

  • Packages/Teem/Dataflow/Modules/NrrdData: NrrdSetupTexture.cc (+1 -1)
callahan 2005-11-15 12:03 Rev.: 32550

Use compute_new_generation instead of generation++. Incrementing the generation number is not safe

2 lines of code changed in 2 files:

  • Packages/Teem/Dataflow/Modules/NrrdData: NrrdSetProperty.cc (+1 -1), NrrdSetupTexture.cc (+1 -1)
mjc 2005-10-10 09:59 Rev.: 32092

initial commit of H_O_Basis branch merge

19 lines of code changed in 1 file:

  • Packages/Teem/Dataflow/Modules/NrrdData: NrrdInfo.cc (+19 -71)
darbyb 2005-08-30 09:09 Rev.: 31766

Move setting of origin outside of axis for loop.

17 lines of code changed in 1 file:

  • Packages/Teem/Dataflow/Modules/NrrdData: NrrdInfo.cc (+17 -19)
darbyb 2005-08-28 19:58 Rev.: 31730

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.






73 lines of code changed in 1 file:

  • Packages/Teem/Dataflow/Modules/NrrdData: NrrdInfo.cc (+73 -19)
callahan 2005-04-26 18:02 Rev.: 29973

Support 4D time dependent data (last axis is time)

77 lines of code changed in 1 file:

  • Packages/Teem/Dataflow/Modules/NrrdData: NrrdSetupTexture.cc (+77 -64)
callahan 2005-04-26 18:02 Rev.: 29972

Fix crash bug when labels bad

5 lines of code changed in 1 file:

  • Packages/Teem/Dataflow/Modules/NrrdData: NrrdSelectTime.cc (+5 -3)
callahan 2005-04-26 14:21 Rev.: 29959

Implement copyless NrrdSelectTime when the Time axis is the last one.

50 lines of code changed in 1 file:

  • Packages/Teem/Dataflow/Modules/NrrdData: NrrdSelectTime.cc (+50 -11)
callahan 2005-04-25 15:48 Rev.: 29945

Implement missing tcl restart function in NrrdSelectTime

4 lines of code changed in 1 file:

  • Packages/Teem/Dataflow/Modules/NrrdData: NrrdSelectTime.cc (+4 -2)
callahan 2005-04-14 15:39 Rev.: 29805

Fix data wrapping problem when min/max do not match data, bug #2584 (from v1_24_0 branch)

5 lines of code changed in 1 file:

  • Packages/Teem/Dataflow/Modules/NrrdData: NrrdSetupTexture.cc (+5 -2)
callahan 2005-03-15 16:23 Rev.: 29344

Merge v1_24_1_release into trunk

75 lines of code changed in 2 files:

  • Packages/Teem/Dataflow/Modules/NrrdData: NrrdInfo.cc (+31 -31), NrrdSetupTexture.cc (+44 -10)
mjc 2005-02-23 21:43 Rev.: 28907

checkpoint merge from branch for bux fixes

476 lines of code changed in 8 files:

  • Packages/Teem/Dataflow/Modules/NrrdData: ChooseNrrd.cc (-8), NrrdGradient.cc (+2 -10), NrrdInfo.cc (-5), NrrdSelectTime.cc (-21), NrrdSetProperty.cc (+2 -16), NrrdSetupTexture.cc (+471), sub.mk (new)
worthen 2005-02-21 21:54 Rev.: 28824

remove unnecessary SCICORESHARE

6 lines of code changed in 2 files:

  • Packages/Teem/Dataflow/Modules/NrrdData: NrrdInfo.cc (-1), NrrdSelectTime.cc (+6 -4)
callahan 2005-02-04 17:38 Rev.: 28468

Merge v1_24_0_release

89 lines of code changed in 2 files:

  • Packages/Teem/Dataflow/Modules/NrrdData: NrrdGradient.cc (+87 -19), NrrdSelectTime.cc (+2 -3)
Generated by StatSVN 0.4.0