Difference between revisions of "Projects:ARRA:SlicerEM:Developer"

From NAMIC Wiki
Jump to: navigation, search
Line 63: Line 63:
 
== EMSegment source code ==
 
== EMSegment source code ==
 
* The name of the Qt module is EMSegment.  
 
* The name of the Qt module is EMSegment.  
* The associated source code, hosted on slicer3 repository (trunk) is located in the following directory: <SRC>/QTModules/EMSegment
+
* The associated source code, hosted on slicer3 repository (trunk) is located in the following directory: [http://viewvc.slicer.org/viewcvs.cgi?rev=14138&view=rev <SRC>/QTModules/EMSegment]
 
* Every commit related to EMSegment should be prefixed with either:
 
* Every commit related to EMSegment should be prefixed with either:
 
** ENH: EMSegment - <Message summary>
 
** ENH: EMSegment - <Message summary>

Revision as of 17:24, 13 July 2010

Home < Projects:ARRA:SlicerEM:Developer

Back to SlicerEM page

Kitware Team

  • Sebastien Barre - Workflow manager - 50%
  • Julien Finet - Chart/Plot export - work in // with vtkChart folks - 10%
  • Jean-Christophe Fillion-Robin (Project Lead) - Infrastructure / Python - 50%
  • Danielle Pace - Workflow manager - 100%

Unassigned Items

lists tasks that need to be done

  • Mile stones for project at next weeks meeting
  • Review which widgets should be converted

Work in Progress

What do you plan to do this week

Sebastien

Julien

Jc

  • Create initial directory structure
  • Write down Developer page

Danielle

Team meeting

lists the team meeting and includes a pointer to the associated notes

Milestone

Development environment

Contributing to CTK

  • Each developer should fork CTK official repository (github.com/commontk/CTK). Doing so will allow to:
    • backup its work before integration with CTK master.
    • publish and share its work
  • We use a topic-based workflow as documented here.
  • Make also sure you create an account on github [1].

Working on Slicer / CTK in parallel

cd MyProjects
git clone http://github.com/me/CTK
mkdir CTK-Superbuild
cd CTK-Superbuild
ccmake -DCTK_LIB_PluginFramework:BOOL=OFF -DCTK_PLUGIN_org.commontk.eventb:BOOL=OFF -DCTK_LIB_Visualization/VTK/Widgets:BOOL=ON -DVTK_DIR:PATH=/home/me/MyProjects/Slicer3-SuperBuild/VTK-build ../CTK
make
  • Step4: Re-configure slicer4 passing CTK_DIR
cd MyProjects/Slicer3-Superbuild
ccmake -DCTK_DIR:PATH=/home/me/MyProjects/CTK-Superbuild .

EMSegment source code

  • The name of the Qt module is EMSegment.
  • The associated source code, hosted on slicer3 repository (trunk) is located in the following directory: <SRC>/QTModules/EMSegment
  • Every commit related to EMSegment should be prefixed with either:
    • ENH: EMSegment - <Message summary>
    • COMP: EMSegment - <Message summary>
    • BUG: EMSegment - <Message summary>
    • STYLE: EMSegment - <Message summary>

Coding Style

Future idea / improvements