Directory Modules/QueryAtlas/

Directory Created:
2006-10-18 15:17
Total Files:
50
Deleted Files:
1
Lines of Code:
13394

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

Lines of Code

Modules/QueryAtlas/ Lines of Code

Developers

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

Most Recent Commits

jcfr 2009-12-08 18:34 Rev.: 11226

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:

  • Modules/QueryAtlas: CMakeLists.txt (changed)
jcfr 2009-12-07 23:15 Rev.: 11209

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:

  • Modules/QueryAtlas: CMakeLists.txt (changed)
barre 2009-10-29 17:36 Rev.: 10795

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:

  • Modules/QueryAtlas: vtkCardManager.cxx (+12 -4), vtkQueryAtlasSearchTermWidget.h (+1 -1), vtkQueryAtlasUseSearchTermWidget.h (+1 -1), vtkSorter.cxx (+2 -1)
alexy 2009-09-18 12:01 Rev.: 10500

ENH: improved performance of multi fiber loading by compressing NodeAddedEvent

0 lines of code changed in 1 file:

  • Modules/QueryAtlas: vtkQueryAtlasGUI.cxx (changed)
naucoin 2009-02-25 14:58 Rev.: 8746

BUG: filled in missing categories

7 lines of code changed in 1 file:

  • Modules/QueryAtlas: vtkQueryAtlasGUI.h (+7 -2)
lorensen 2008-12-28 13:47 Rev.: 8201

COMP: warnings, mainly about possible use of variables that have not been assigned values.

2 lines of code changed in 1 file:

  • Modules/QueryAtlas: vtkQueryAtlasGUI.cxx (+2 -2)
lorensen 2008-12-27 11:34 Rev.: 8192

COMP: many warnings removed. STYLE: mainly indentation.

0 lines of code changed in 11 files:

  • Modules/QueryAtlas: vtkBIRNCard.cxx (changed), vtkFontParameters.cxx (changed), vtkFontParameters.h (changed), vtkFreetypeRasterizer.cxx (changed), vtkMRMLQueryAtlasNode.cxx (changed), vtkQueryAtlasGUI.cxx (changed), vtkQueryAtlasSearchTermWidget.cxx (changed), vtkTextureFont.cxx (changed), vtkTextureFontManager.cxx (changed), vtkTextureText.cxx (changed), vtkTextureText.h (changed)
tgl 2008-11-21 00:20 Rev.: 7941

ENH using XML files to show how it can be done

3 lines of code changed in 3 files:

  • Modules/QueryAtlas: CMakeLists.txt (changed), QueryAtlas.txt (del), QueryAtlas.xml (new 3)
lorensen 2008-07-07 18:47 Rev.: 7257

COMP: gcc 4.3 missing includes.

0 lines of code changed in 2 files:

  • Modules/QueryAtlas: vtkRectangle.cxx (changed), vtkTextureText.h (changed)
wjp@bwh.harvard.edu 2008-06-25 14:45 Rev.: 7186

ENH: fixed QueryAtlas installation to not copy Resource header file

0 lines of code changed in 1 file:

  • Modules/QueryAtlas: CMakeLists.txt (-3)
wjp@bwh.harvard.edu 2008-06-25 07:44 Rev.: 7168

ENH: fixed installation of Resource files for QueryAtlas

4 lines of code changed in 1 file:

  • Modules/QueryAtlas: CMakeLists.txt (+4 -1)
barre 2008-06-24 19:43 Rev.: 7155

ENH: fix, files were added but not installed/configured

7 lines of code changed in 1 file:

  • Modules/QueryAtlas: CMakeLists.txt (+7 -4)
naucoin 2008-05-30 10:55 Rev.: 6939

BUG: Take space out of name, refer to new QdecModule name

2 lines of code changed in 1 file:

  • Modules/QueryAtlas: QueryAtlas.txt (+2 -2)
barre 2008-05-27 17:44 Rev.: 6889

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:

  • Modules/QueryAtlas: CMakeLists.txt (+2 -3)
barre 2008-05-26 10:14 Rev.: 6849

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:

  • Modules/QueryAtlas: CMakeLists.txt (+11 -6), vtkFreetypeRasterizer.cxx (+2 -1)
barre 2008-05-22 18:43 Rev.: 6836

ENH: update for space in paths and lib prefix

3 lines of code changed in 1 file:

  • Modules/QueryAtlas: vtkQueryAtlasGUI.cxx (+3 -4)
barre 2008-05-22 17:31 Rev.: 6833

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:

  • Modules/QueryAtlas: vtkQueryAtlasGUI.cxx (+27 -11), vtkQueryAtlasGUI.h (+9 -7)
barre 2008-05-20 02:29 Rev.: 6772

ENH: Slicer3 Spring Installation Clean Up

153 lines of code changed in 5 files:

  • Modules/QueryAtlas: CMakeLists.txt (+145 -153), vtkQueryAtlas.h (+2 -2), vtkQueryAtlasConfigure.h.in (+1 -10), vtkQueryAtlasGUI.cxx (+4 -4), vtkQueryAtlasGUI.h (+1 -1)
tgl 2008-05-19 19:08 Rev.: 6767

ENH obsolete, replaced by QueryAtlas.txt

0 lines of code changed in 1 file:

  • Modules/QueryAtlas: QueryAtlas.xml (del)
wjp@bwh.harvard.edu 2008-05-14 10:13 Rev.: 6711

ENH: made some changes to loadable QueryAtlas -- GUI was not observing mrml scene events

42 lines of code changed in 4 files:

  • Modules/QueryAtlas: vtkQueryAtlasGUI.cxx (+26 -10), vtkQueryAtlasGUI.h (+5 -1), vtkQueryAtlasLogic.cxx (+10), vtkQueryAtlasLogic.h (+1 -3)
pieper 2008-05-09 12:04 Rev.: 6676

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:

  • Modules/QueryAtlas: vtkQueryAtlasGUI.cxx (changed)
tgl 2008-05-08 18:50 Rev.: 6666

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:

  • Modules/QueryAtlas: QueryAtlas.txt (changed), vtkQueryAtlasLogic.cxx (changed), vtkQueryAtlasLogic.h (changed)
pieper 2008-05-08 17:57 Rev.: 6665

BUG: use SLICER_BUILD to avoid Debug/Release subdir issue when finding packages on windows

0 lines of code changed in 1 file:

  • Modules/QueryAtlas: vtkQueryAtlasGUI.cxx (changed)
pieper 2008-05-08 17:36 Rev.: 6663

BUG: be sure query atlas package is loaded before calling teardown proc

0 lines of code changed in 2 files:

  • Modules/QueryAtlas: vtkQueryAtlasGUI.cxx (changed), vtkQueryAtlasGUI.h (changed)
pieper 2008-05-08 17:18 Rev.: 6662

BUG: fix tcl packaging to make QueryAtlas a loadable module

0 lines of code changed in 1 file:

  • Modules/QueryAtlas: vtkQueryAtlasGUI.cxx (changed)
pieper 2008-05-08 15:19 Rev.: 6653

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:

  • Modules/QueryAtlas: CMakeLists.txt (changed)
tgl 2008-04-28 22:05 Rev.: 6570

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:

  • Modules/QueryAtlas: CMakeLists.txt (changed), QueryAtlas.txt (new 2), QueryAtlas.xml (new 3), vtkQueryAtlasGUI.cxx (changed)
naucoin 2008-04-23 14:05 Rev.: 6529

BUG: need to stop QueryAtlas from redoing win/level calcs on stats volumes

0 lines of code changed in 1 file:

  • Modules/QueryAtlas: vtkQueryAtlasGUI.cxx (changed)
wjp@bwh.harvard.edu 2008-04-18 12:22 Rev.: 6508

ENH: added Xnat Xcede catalog importing

0 lines of code changed in 1 file:

  • Modules/QueryAtlas: vtkQueryAtlasGUI.cxx (changed)
freudling 2008-02-06 11:00 Rev.: 5717

ENH: Hyperlinks part 2

1 lines of code changed in 1 file:

  • Modules/QueryAtlas: vtkQueryAtlasGUI.cxx (+1 -1)
millerjv 2008-01-31 12:24 Rev.: 5665

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:

  • Modules/QueryAtlas: CMakeLists.txt (+2 -2)
wjp@bwh.harvard.edu 2007-12-20 14:36 Rev.: 5303

ENH: updated to use new vtkKWTopLevel::WithdrawEvent with LoadSaveDialogs

47 lines of code changed in 1 file:

  • Modules/QueryAtlas: vtkQueryAtlasGUI.cxx (+47 -12)
wjp@bwh.harvard.edu 2007-10-17 18:18 Rev.: 4662

ENH: added basic scene annotation tab in gui

87 lines of code changed in 2 files:

  • Modules/QueryAtlas: vtkQueryAtlasGUI.cxx (+79 -6), vtkQueryAtlasGUI.h (+8)
wjp@bwh.harvard.edu 2007-10-12 19:18 Rev.: 4635

BUG: copying java files to build tree

25 lines of code changed in 1 file:

  • Modules/QueryAtlas: CMakeLists.txt (+25)
naucoin 2007-10-12 17:40 Rev.: 4634

BUG: installing csv files to bin dir

15 lines of code changed in 1 file:

  • Modules/QueryAtlas: CMakeLists.txt (+15)
wjp@bwh.harvard.edu 2007-10-12 10:38 Rev.: 4619

ENH: modified UMLSCode in menu to UMLSConceptName -- more intuitive annotation output

2 lines of code changed in 1 file:

  • Modules/QueryAtlas: vtkQueryAtlasGUI.cxx (+2 -2)
wjp@bwh.harvard.edu 2007-10-12 09:50 Rev.: 4618

ENH: changed assignment of coded cell colors to C++ to speed annotation setup

38 lines of code changed in 2 files:

  • Modules/QueryAtlas: vtkQueryAtlasGUI.cxx (+32), vtkQueryAtlasGUI.h (+6)
wjp@bwh.harvard.edu 2007-10-11 17:34 Rev.: 4611

ENH: code tightening and calling backbuffer render after a scene is annotated

82 lines of code changed in 1 file:

  • Modules/QueryAtlas: vtkQueryAtlasGUI.cxx (+82 -72)
naucoin 2007-10-11 15:29 Rev.: 4610

BUG: free up the collection of colour nodes to get rid of a memory leak

2 lines of code changed in 1 file:

  • Modules/QueryAtlas: vtkQueryAtlasGUI.cxx (+2)
wjp@bwh.harvard.edu 2007-10-11 12:36 Rev.: 4605

ENH: little cleaning up of code

37 lines of code changed in 1 file:

  • Modules/QueryAtlas: vtkQueryAtlasGUI.cxx (+37 -10)

(84 more)

Generated by StatSVN 0.5.0