[root]/Modules/VolumeRendering
Testing
(2 files, 884 lines)
VolumeRenderingCuda
(0 files, 0 lines)
VolumeRenderingReplacements
(42 files, 26657 lines)

| Author | Changes | Lines of Code | Lines per Change |
|---|---|---|---|
| Totals | 994 (100.0%) | 43475 (100.0%) | 43.7 |
| freudling | 606 (61.0%) | 32928 (75.7%) | 54.3 |
| vrnova | 229 (23.0%) | 4880 (11.2%) | 21.3 |
| clisle | 6 (0.6%) | 1798 (4.1%) | 299.6 |
| pieper | 55 (5.5%) | 1770 (4.1%) | 32.1 |
| alexy | 46 (4.6%) | 1558 (3.6%) | 33.8 |
| barre | 20 (2.0%) | 405 (0.9%) | 20.2 |
| naucoin | 7 (0.7%) | 100 (0.2%) | 14.2 |
| tgl | 11 (1.1%) | 30 (0.1%) | 2.7 |
| millerjv | 2 (0.2%) | 6 (0.0%) | 3.0 |
| nicky | 5 (0.5%) | 0 (0.0%) | 0.0 |
| lorensen | 4 (0.4%) | 0 (0.0%) | 0.0 |
| jcfr | 2 (0.2%) | 0 (0.0%) | 0.0 |
| domibel | 1 (0.1%) | 0 (0.0%) | 0.0 |
ENH: In CMakeLists.txt, change deprecated SUBDIRS command into ADD_SUBDIRECTORY
See http://cmake.org/cmake/help/cmake-2-8-docs.html#command:subdirs
when subdirs command was taking a list of directory, change it
using the following pattern:
Before:
subdirs(sagarmatha kumbhu eiger)
After:
SET(dirs
sagarmatha
kumbhu
eiger
)
FOREACH(dir ${dirs})
ADD_SUBDIRECTORY(${dir})
ENDFOREACH(dir)
0 lines of code changed in 1 file:
ENH: Update CMakeLists.txt - CMake 2.6 is now required
The following line have been added:
CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
IF(COMMAND CMAKE_POLICY)
CMAKE_POLICY(SET CMP0003 NEW)
ENDIF(COMMAND CMAKE_POLICY)
MARK_AS_ADVANCED(CMAKE_BACKWARDS_COMPATIBILITY)
0 lines of code changed in 1 file:
ENH: update GUI label text to be more meaningful
3 lines of code changed in 1 file:
BUG_FIXED 700. Fixed clipping to stay on. Prevent vtkVolumeRenderingGUI::CheckAbort() method calling SetAbortRender(1) when no volumes selected (kludge)
10 lines of code changed in 1 file:
ENH: minor update
0 lines of code changed in 1 file:
ENH: by default do not show ROI box (because by default ROI is off)
0 lines of code changed in 1 file:
ENH: opacity slider in thresholding mode
74 lines of code changed in 2 files:
ENH: adding dual 3D view support
12 lines of code changed in 1 file:
ENH: adding dual 3D view support
29 lines of code changed in 1 file:
ENH: adding dual 3D view support
33 lines of code changed in 1 file:
ENH: adding dual 3D view support
2 lines of code changed in 1 file:
ENH: adding dual 3D view support
6 lines of code changed in 1 file:
ENH: adding dual 3D view support
22 lines of code changed in 1 file:
ENH: adding dual 3D view support
112 lines of code changed in 3 files:
ENH: code clean up
21 lines of code changed in 2 files:
ENH: removed unused observer
7 lines of code changed in 2 files:
ENH: adding multi-volume rendering
31 lines of code changed in 4 files:
BUGFIX: fixed crash caused by LoadVolumePropertyButton deletion code
5 lines of code changed in 1 file:
ENH: multicam multiview, try something different
219 lines of code changed in 2 files:
ENH: added save/load of volume property
197 lines of code changed in 6 files:
ENH: updaged ROI box behavior
0 lines of code changed in 2 files:
ENH: support for new cameras and new views. Port from Slicer 3.4 branch. As mentioned on the mailing list, apologies for instabilities while these core changes are further tested. Fiducials do not seem to follow camera for example, this will be fixed. Send bugs to sebastien.barre@kitware.com; Thank you.
55 lines of code changed in 2 files:
ENH: adding multi-volume rendering
110 lines of code changed in 4 files:
ENH: disconnected CUDA pipeline (cuda mapper not ready at this stage)
97 lines of code changed in 5 files:
BUGFIX: connected broken clipping pipeline on GPU ray cast II
5 lines of code changed in 1 file:
ENH: updated ROI tab UI
11 lines of code changed in 2 files:
BUGFIX: borken transformation pipeline fixed
12 lines of code changed in 3 files:
BUGFIX: threshold processing time order incorrect
14 lines of code changed in 2 files:
BUGFIX: GPU ray casting parameters not working
9 lines of code changed in 1 file:
ENH: abort rendering before switching different mappers (cpu, gpu, opengl texture) for safeguard purpose.
3 lines of code changed in 1 file:
ENH: roll back material parameters as slicer 3.4
4 lines of code changed in 1 file:
ENH: adding fg volume rendering
25 lines of code changed in 3 files:
ENH: adding fg volume rendering
148 lines of code changed in 7 files:
ENH: adding fg volume rendering
78 lines of code changed in 3 files:
ENH: adding fg volume rendering
63 lines of code changed in 3 files:
ENH: adding fg volume rendering
583 lines of code changed in 8 files:
ENH: thresholding added
78 lines of code changed in 4 files:
ENH: adding threshold function
88 lines of code changed in 2 files:
ENH: progress feedback when using a new input in volume rendering module
18 lines of code changed in 1 file:
ENH: progress feedback when loading a scene
14 lines of code changed in 1 file:
(288 more)