[root]/Modules/VolumeRendering1
Testing
(2 files, 884 lines)
VolumeRenderingCuda1
(23 files, 2878 lines)
VolumeRenderingReplacements1
(44 files, 26428 lines)

| Author | Changes | Lines of Code | Lines per Change |
|---|---|---|---|
| Totals | 86 (100.0%) | 2306 (100.0%) | 26.8 |
| alexy | 79 (91.9%) | 2276 (98.7%) | 28.8 |
| barre | 2 (2.3%) | 20 (0.9%) | 10.0 |
| vrnova | 1 (1.2%) | 10 (0.4%) | 10.0 |
| naucoin | 2 (2.3%) | 0 (0.0%) | 0.0 |
| jcfr | 2 (2.3%) | 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: multicam multiview, try something different
12 lines of code changed in 1 file:
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.
8 lines of code changed in 1 file:
ENH: new architecture for Volume rendering module: hooked up ROI
0 lines of code changed in 1 file:
ENH: new architecture for Volume rendering module: hooked up ROI
0 lines of code changed in 2 files:
ENH: new architecture for Volume rendering module: hooked up ROI
0 lines of code changed in 3 files:
BUG: init vars to avoid seg fault on calling constructor
0 lines of code changed in 1 file:
ENH: new architecture for Volume rendering module: renamed parameters node to avoid name conflict with VolumeRendering
460 lines of code changed in 9 files:
ENH: new architecture for Volume rendering module: added VolumeProperty GUI
0 lines of code changed in 2 files:
ENH: new architecture for Volume rendering module
0 lines of code changed in 2 files:
BUG: removing memory leaks
0 lines of code changed in 1 file:
ENH: new architecture for Volume rendering module
0 lines of code changed in 2 files:
ENH: new architecture for Volume rendering module
0 lines of code changed in 17 files:
ENH: new Volume Rendering architecture
0 lines of code changed in 3 files:
ENH: new Volume Rendering architecture
0 lines of code changed in 1 file:
ENH: new architecture for Volume rendering module
1 lines of code changed in 1 file:
ENH: new architecture for Volume rendering module
151 lines of code changed in 6 files:
BUG_FIXED: new Volume Rendering architecture
0 lines of code changed in 6 files:
ENH: merged recent GPU ray cast change in volumerendering to volumerendering1 to reduce possible overhead when replacing volumerendering with volumerendering1
10 lines of code changed in 1 file:
ENH: added new volume rendering module
1664 lines of code changed in 24 files: