[root]/Modules/QueryAtlas
ImageData
(62 files, 0 lines)
OntologyViz
(1 files, 65 lines)
bin
(5 files, 54 lines)
data
(2 files, 19745 lines)
extjars
(3 files, 0 lines)
cachedir
(0 files, 0 lines)
packages
(12 files, 0 lines)
src
(8 files, 1270 lines)
tmp
(69 files, 0 lines)
META-INF
(1 files, 1 lines)
org
(0 files, 0 lines)
python
(0 files, 0 lines)
modules
(9 files, 0 lines)
sre
(5 files, 0 lines)
time
(7 files, 0 lines)
Resources
(8 files, 11846 lines)
Tcl
(9 files, 7886 lines)
Testing
(1 files, 0 lines)

| Author | Changes | Lines of Code | Lines per Change |
|---|---|---|---|
| Totals | 282 (100.0%) | 17751 (100.0%) | 62.9 |
| wjp@bwh.harvard.edu | 178 (63.1%) | 10569 (59.5%) | 59.3 |
| pieper | 48 (17.0%) | 6903 (38.9%) | 143.8 |
| barre | 16 (5.7%) | 230 (1.3%) | 14.3 |
| naucoin | 5 (1.8%) | 26 (0.1%) | 5.2 |
| tgl | 11 (3.9%) | 8 (0.0%) | 0.7 |
| millerjv | 3 (1.1%) | 8 (0.0%) | 2.6 |
| lorensen | 16 (5.7%) | 5 (0.0%) | 0.3 |
| freudling | 1 (0.4%) | 1 (0.0%) | 1.0 |
| aylward | 1 (0.4%) | 1 (0.0%) | 1.0 |
| jcfr | 2 (0.7%) | 0 (0.0%) | 0.0 |
| alexy | 1 (0.4%) | 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: 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.
16 lines of code changed in 4 files:
ENH: improved performance of multi fiber loading by compressing NodeAddedEvent
0 lines of code changed in 1 file:
BUG: filled in missing categories
7 lines of code changed in 1 file:
COMP: warnings, mainly about possible use of variables that have not been assigned values.
2 lines of code changed in 1 file:
COMP: many warnings removed. STYLE: mainly indentation.
0 lines of code changed in 11 files:
ENH using XML files to show how it can be done
3 lines of code changed in 3 files:
COMP: gcc 4.3 missing includes.
0 lines of code changed in 2 files:
ENH: fixed QueryAtlas installation to not copy Resource header file
0 lines of code changed in 1 file:
ENH: fixed installation of Resource files for QueryAtlas
4 lines of code changed in 1 file:
ENH: fix, files were added but not installed/configured
7 lines of code changed in 1 file:
BUG: Take space out of name, refer to new QdecModule name
2 lines of code changed in 1 file:
ENH: Plugins and Modules have specific location for their binairies/dll, different from the usual bin/ and lib/ (i.e. lib/Slicer3/Plugins, lib/Slicer3/Modules). This was achieved by setting LIBRARY_OUTPUT_PATH and EXECUTABLE_OUTPUT_PATH from the slicer3_set_default_modules_output_path and slicer3_set_default_plugins_output_path macro, but it is a dangerous practice to override a global variable, as it propagates to subtrees. As a result, SlicerTractographySeeding, which combines a module and a CLP in the same CMakeLists, was not built to the proper directory; ExtractSkeleton was not output in the right location either, and several tests ended up in Plugins instead of bin/ (GaussianBlurImageFilterTest, OrientImageTest). Fix this by creating a macro that will set the LIBRARY_OUTPUT_DIRECTORY and RUNTIME_OUTPUT_DIRECTORY explicitly on a *target* basis, using SET_TARGET_PROPERTIES. This removes the side-effects described above.
2 lines of code changed in 1 file:
BUG: the QueryAtlas module uses VTK's FreeType, which is not quite exported correctly by an
installed VTK. It's not obvious however if FreeType should be exposed directly by VTK, but this is an easy fix (add the include dir, and make sure VTK install FreeType's headers).
13 lines of code changed in 2 files:
ENH: update for space in paths and lib prefix
3 lines of code changed in 1 file:
ENH: more cleanup to allow LoadableModule to be loaded from the Module Search Paths (i.e. outside Slicer3). Provide API to retrieve module's resources paths from either locations (inside or outside a Slicer3's build/installed tree)
36 lines of code changed in 2 files:
ENH: Slicer3 Spring Installation Clean Up
153 lines of code changed in 5 files:
ENH obsolete, replaced by QueryAtlas.txt
0 lines of code changed in 1 file:
ENH: made some changes to loadable QueryAtlas -- GUI was not observing mrml scene events
42 lines of code changed in 4 files:
BUG: initialize tcl package before setting namespace variable for GUI instance so interpreter sees all subclass methods
0 lines of code changed in 1 file:
ENH: adding dependency checking (but not sorting) to LoadableModule lib. Adding EMSegment, MRAblation, RealTimeImaging, VolumeRendering, WFEngineModule, LabelStatistics as loadable modules
0 lines of code changed in 3 files:
BUG: use SLICER_BUILD to avoid Debug/Release subdir issue when finding packages on windows
0 lines of code changed in 1 file:
BUG: be sure query atlas package is loaded before calling teardown proc
0 lines of code changed in 2 files:
BUG: fix tcl packaging to make QueryAtlas a loadable module
0 lines of code changed in 1 file:
COMP: make query atlas into a purely loadable module (remove from Slicer3.cxx) to clean up memory leaks in Qdec
0 lines of code changed in 1 file:
ENH results of merge with 6049:6469 from branches/tgl_loadable_modules. Adds GenerateLM to create entry points for loadable module support via a text file and CMake macro. WFEngine, NeuroNav, Qdec and GAD are setup, other modules have text files, but the macro in the CMakeLists file is commented out. Updated Slicer3_main, the modules above will only be loaded if the DLL is found at run-time. Lastly made a change to vtkSlicerViewerWidget, check for a NULL ModelHierarchyLogic pointer before continuing, which might not be the right thing to do.
5 lines of code changed in 4 files:
BUG: need to stop QueryAtlas from redoing win/level calcs on stats volumes
0 lines of code changed in 1 file:
ENH: added Xnat Xcede catalog importing
0 lines of code changed in 1 file:
ENH: Hyperlinks part 2
1 lines of code changed in 1 file:
ENH: Changes in the Slicer3 installation layout to simplify navigation. Most things will now try install themselves under <Installation Directory>/lib/<Package> or <Installation Directory>/include/<Package>. For example, <Installation Directory>/lib/Slicer3, <Installation Directory>/lib/MRML, <Installation Directory>/lib/ModuleDescriptionParser. This allows setting include and library paths consistently using ../<SomeOtherPackage> or ../../include/<SomeOtherPackage>, etc.
2 lines of code changed in 1 file:
ENH: updated to use new vtkKWTopLevel::WithdrawEvent with LoadSaveDialogs
47 lines of code changed in 1 file:
ENH: added basic scene annotation tab in gui
87 lines of code changed in 2 files:
BUG: copying java files to build tree
25 lines of code changed in 1 file:
BUG: installing csv files to bin dir
15 lines of code changed in 1 file:
ENH: modified UMLSCode in menu to UMLSConceptName -- more intuitive annotation output
2 lines of code changed in 1 file:
ENH: changed assignment of coded cell colors to C++ to speed annotation setup
38 lines of code changed in 2 files:
ENH: code tightening and calling backbuffer render after a scene is annotated
82 lines of code changed in 1 file:
BUG: free up the collection of colour nodes to get rid of a memory leak
2 lines of code changed in 1 file:
ENH: little cleaning up of code
37 lines of code changed in 1 file:
(84 more)