<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.na-mic.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Grclirui</id>
	<title>NAMIC Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://www.na-mic.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Grclirui"/>
	<link rel="alternate" type="text/html" href="https://www.na-mic.org/wiki/Special:Contributions/Grclirui"/>
	<updated>2026-04-05T00:03:35Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.33.0</generator>
	<entry>
		<id>https://www.na-mic.org/w/index.php?title=2013_Summer_Project_Week:Python_Embedding&amp;diff=82348</id>
		<title>2013 Summer Project Week:Python Embedding</title>
		<link rel="alternate" type="text/html" href="https://www.na-mic.org/w/index.php?title=2013_Summer_Project_Week:Python_Embedding&amp;diff=82348"/>
		<updated>2013-06-20T18:38:19Z</updated>

		<summary type="html">&lt;p&gt;Grclirui: /* Delivery Mechanism */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:PW-MIT2013.png|[[2013_Summer_Project_Week#Projects|Projects List]]&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Key Investigators==&lt;br /&gt;
* GRC: Rui Li, Jim Miller&lt;br /&gt;
* Kitware: Jean-Christophe Fillion-Robin&lt;br /&gt;
* Isomics: Steve Pieper&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin: 20px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 27%; float: left; padding-right: 3%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Objective&amp;lt;/h3&amp;gt;&lt;br /&gt;
Python embedding library to manage calling python functions from C++. This will eliminate the code duplication  in Slicer.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 27%; float: left; padding-right: 3%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Approach, Plan&amp;lt;/h3&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Discuss with Jc and Steve regarding how to incorporate into Slicer. Currently it &lt;br /&gt;
is used as a downloadable library during superbuild, similar to SlicerExecutionModel.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 40%; float: left;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Progress&amp;lt;/h3&amp;gt;&lt;br /&gt;
Eliminate all the compile time warnings and fixed some stylistic issues. The updated code is pushed &lt;br /&gt;
on to github at https://github.com/grclirui/PythonCppAPI.git and ready to use.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Delivery Mechanism==&lt;br /&gt;
PythonCppAPI is a stand alone library. To use it within Slicer, similar to SlicerExecutionModel and other external libraries, an External_PythonCppAPI.cmake is needed in SuperBuild. During superbuild,&lt;br /&gt;
it will be checked out and built as a library. The sample usage of the library is shown in the following code snippet:&lt;br /&gt;
&lt;br /&gt;
  // Ok. Now we can create an instance of the interprter itself.&lt;br /&gt;
  PythonCppApiCallFunction pyCppApiCallFunction(argc, argv);&lt;br /&gt;
&lt;br /&gt;
  // to check if the python interpreter is available and working,&lt;br /&gt;
  // execute a simple python statement.&lt;br /&gt;
  pyCppApiCallFunction.ExecuteString(&amp;quot;print 'hello'&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
  // execute the script in a file&lt;br /&gt;
  pyCppApiCallFunction.ExecuteFile(&amp;quot;hello.py&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
  // Load the test module into the interpreter&lt;br /&gt;
  pyCppApiCallFunction.ImportModule(&amp;quot;test&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
  ArgMap args; // our argument list that maps string values &lt;br /&gt;
  bool ok;&lt;br /&gt;
&lt;br /&gt;
  // Call a simple function, that takes no arguments&lt;br /&gt;
  // and returns nothing     &lt;br /&gt;
  args.clear();&lt;br /&gt;
&lt;br /&gt;
  pyCppApiCallFunction.CallFunction(&amp;quot;simple&amp;quot;, args);&lt;br /&gt;
&lt;br /&gt;
  // Call a function that takes two long arguments and returns&lt;br /&gt;
  // a long      &lt;br /&gt;
  {&lt;br /&gt;
  PythonCppApiVariant ret(0); // value returned by python is stored here&lt;br /&gt;
  args[&amp;quot;10&amp;quot;] = PythonLong;&lt;br /&gt;
  args[&amp;quot;20&amp;quot;] = PythonLong;&lt;br /&gt;
  ret = pyCppApiCallFunction.CallFunction(&amp;quot;multiply&amp;quot;, args);&lt;br /&gt;
  std::cout &amp;lt;&amp;lt; ret.toLong(&amp;amp;ok, 0) &amp;lt;&amp;lt; '\n';&lt;br /&gt;
  args.clear();&lt;br /&gt;
  }&lt;/div&gt;</summary>
		<author><name>Grclirui</name></author>
		
	</entry>
	<entry>
		<id>https://www.na-mic.org/w/index.php?title=2013_Summer_Project_Week:Python_Embedding&amp;diff=82346</id>
		<title>2013 Summer Project Week:Python Embedding</title>
		<link rel="alternate" type="text/html" href="https://www.na-mic.org/w/index.php?title=2013_Summer_Project_Week:Python_Embedding&amp;diff=82346"/>
		<updated>2013-06-20T18:37:59Z</updated>

		<summary type="html">&lt;p&gt;Grclirui: /* Delivery Mechanism */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:PW-MIT2013.png|[[2013_Summer_Project_Week#Projects|Projects List]]&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Key Investigators==&lt;br /&gt;
* GRC: Rui Li, Jim Miller&lt;br /&gt;
* Kitware: Jean-Christophe Fillion-Robin&lt;br /&gt;
* Isomics: Steve Pieper&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin: 20px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 27%; float: left; padding-right: 3%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Objective&amp;lt;/h3&amp;gt;&lt;br /&gt;
Python embedding library to manage calling python functions from C++. This will eliminate the code duplication  in Slicer.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 27%; float: left; padding-right: 3%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Approach, Plan&amp;lt;/h3&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Discuss with Jc and Steve regarding how to incorporate into Slicer. Currently it &lt;br /&gt;
is used as a downloadable library during superbuild, similar to SlicerExecutionModel.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 40%; float: left;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Progress&amp;lt;/h3&amp;gt;&lt;br /&gt;
Eliminate all the compile time warnings and fixed some stylistic issues. The updated code is pushed &lt;br /&gt;
on to github at https://github.com/grclirui/PythonCppAPI.git and ready to use.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Delivery Mechanism==&lt;br /&gt;
PythonCppAPI is a stand alone library. To use it within Slicer, similar to SlicerExecutionModel and other external libraries, an External_PythonCppAPI.cmake is needed in SuperBuild. During superbuild,&lt;br /&gt;
it will be checked out and built as a library. The sample usage of the library is shown in the following code snippet:&lt;br /&gt;
&lt;br /&gt;
  // Ok. Now we can create an instance of the interprter itself.&lt;br /&gt;
  PythonCppApiCallFunction pyCppApiCallFunction(argc, argv);&lt;br /&gt;
&lt;br /&gt;
  // to check if the python interpreter is available and working,&lt;br /&gt;
  // execute a simple python statement.&lt;br /&gt;
  pyCppApiCallFunction.ExecuteString(&amp;quot;print 'hello'&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
  // execute the script in a file&lt;br /&gt;
  pyCppApiCallFunction.ExecuteFile(&amp;quot;hello.py&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
  // Load the test module into the interpreter&lt;br /&gt;
  pyCppApiCallFunction.ImportModule(&amp;quot;test&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
  ArgMap args; // our argument list that maps string values &lt;br /&gt;
  bool ok;&lt;br /&gt;
&lt;br /&gt;
  // Call a simple function, that takes no arguments&lt;br /&gt;
  // and returns nothing     &lt;br /&gt;
  args.clear();&lt;br /&gt;
&lt;br /&gt;
  pyCppApiCallFunction.CallFunction(&amp;quot;simple&amp;quot;, args);&lt;br /&gt;
&lt;br /&gt;
  // Call a function that takes two long arguments and returns&lt;br /&gt;
  // a long      &lt;br /&gt;
  {&lt;br /&gt;
  PythonCppApiVariant ret(0); // value returned by python is stored here&lt;br /&gt;
  args[&amp;quot;10&amp;quot;] = PythonLong;&lt;br /&gt;
  args[&amp;quot;20&amp;quot;] = PythonLong;&lt;br /&gt;
  ret = pyCppApiCallFunction.CallFunction(&amp;quot;multiply&amp;quot;, args);&lt;br /&gt;
  std::cout &amp;lt;&amp;lt; ret.toLong(&amp;amp;ok, 0) &amp;lt;&amp;lt; '\n';&lt;br /&gt;
  args.clear();&lt;br /&gt;
  }&lt;/div&gt;</summary>
		<author><name>Grclirui</name></author>
		
	</entry>
	<entry>
		<id>https://www.na-mic.org/w/index.php?title=2013_Summer_Project_Week:Python_Embedding&amp;diff=82345</id>
		<title>2013 Summer Project Week:Python Embedding</title>
		<link rel="alternate" type="text/html" href="https://www.na-mic.org/w/index.php?title=2013_Summer_Project_Week:Python_Embedding&amp;diff=82345"/>
		<updated>2013-06-20T18:36:19Z</updated>

		<summary type="html">&lt;p&gt;Grclirui: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:PW-MIT2013.png|[[2013_Summer_Project_Week#Projects|Projects List]]&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Key Investigators==&lt;br /&gt;
* GRC: Rui Li, Jim Miller&lt;br /&gt;
* Kitware: Jean-Christophe Fillion-Robin&lt;br /&gt;
* Isomics: Steve Pieper&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin: 20px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 27%; float: left; padding-right: 3%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Objective&amp;lt;/h3&amp;gt;&lt;br /&gt;
Python embedding library to manage calling python functions from C++. This will eliminate the code duplication  in Slicer.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 27%; float: left; padding-right: 3%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Approach, Plan&amp;lt;/h3&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Discuss with Jc and Steve regarding how to incorporate into Slicer. Currently it &lt;br /&gt;
is used as a downloadable library during superbuild, similar to SlicerExecutionModel.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 40%; float: left;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Progress&amp;lt;/h3&amp;gt;&lt;br /&gt;
Eliminate all the compile time warnings and fixed some stylistic issues. The updated code is pushed &lt;br /&gt;
on to github at https://github.com/grclirui/PythonCppAPI.git and ready to use.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Delivery Mechanism==&lt;br /&gt;
PythonCppAPI is a stand alone library. To use it within Slicer, similar to SlicerExecutionModel and other external libraries, an External_PythonCppAPI.cmake is needed in SuperBuild. During superbuild,&lt;br /&gt;
it will be checked out and built as a library.&lt;br /&gt;
&lt;br /&gt;
  // Ok. Now we can create an instance of the interprter itself.&lt;br /&gt;
  PythonCppApiCallFunction pyCppApiCallFunction(argc, argv);&lt;br /&gt;
&lt;br /&gt;
  // to check if the python interpreter is available and working,&lt;br /&gt;
  // execute a simple python statement.&lt;br /&gt;
  pyCppApiCallFunction.ExecuteString(&amp;quot;print 'hello'&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
  // execute the script in a file&lt;br /&gt;
  pyCppApiCallFunction.ExecuteFile(&amp;quot;hello.py&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
  // Load the test module into the interpreter&lt;br /&gt;
  pyCppApiCallFunction.ImportModule(&amp;quot;test&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
  ArgMap args; // our argument list that maps string values &lt;br /&gt;
  bool ok;&lt;br /&gt;
&lt;br /&gt;
  // Call a simple function, that takes no arguments&lt;br /&gt;
  // and returns nothing     &lt;br /&gt;
  args.clear();&lt;br /&gt;
&lt;br /&gt;
  pyCppApiCallFunction.CallFunction(&amp;quot;simple&amp;quot;, args);&lt;br /&gt;
&lt;br /&gt;
  // Call a function that takes two long arguments and returns&lt;br /&gt;
  // a long      &lt;br /&gt;
  {&lt;br /&gt;
  PythonCppApiVariant ret(0); // value returned by python is stored here&lt;br /&gt;
  args[&amp;quot;10&amp;quot;] = PythonLong;&lt;br /&gt;
  args[&amp;quot;20&amp;quot;] = PythonLong;&lt;br /&gt;
  ret = pyCppApiCallFunction.CallFunction(&amp;quot;multiply&amp;quot;, args);&lt;br /&gt;
  std::cout &amp;lt;&amp;lt; ret.toLong(&amp;amp;ok, 0) &amp;lt;&amp;lt; '\n';&lt;br /&gt;
  args.clear();&lt;br /&gt;
  }&lt;/div&gt;</summary>
		<author><name>Grclirui</name></author>
		
	</entry>
	<entry>
		<id>https://www.na-mic.org/w/index.php?title=2013_Summer_Project_Week:Python_Embedding&amp;diff=82073</id>
		<title>2013 Summer Project Week:Python Embedding</title>
		<link rel="alternate" type="text/html" href="https://www.na-mic.org/w/index.php?title=2013_Summer_Project_Week:Python_Embedding&amp;diff=82073"/>
		<updated>2013-06-18T03:30:01Z</updated>

		<summary type="html">&lt;p&gt;Grclirui: Created page with '__NOTOC__ &amp;lt;gallery&amp;gt; Image:PW-MIT2013.png|Projects List &amp;lt;/gallery&amp;gt;  ==Key Investigators== * GRC: Rui Li, Jim Miller * Kitware: Jean-Christoph…'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:PW-MIT2013.png|[[2013_Summer_Project_Week#Projects|Projects List]]&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Key Investigators==&lt;br /&gt;
* GRC: Rui Li, Jim Miller&lt;br /&gt;
* Kitware: Jean-Christophe Fillion-Robin&lt;br /&gt;
* Isomics: Steve Pieper&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin: 20px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 27%; float: left; padding-right: 3%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Objective&amp;lt;/h3&amp;gt;&lt;br /&gt;
Python embedding library to manage calling python functions from C++. This will eliminate the code duplication  in Slicer.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 27%; float: left; padding-right: 3%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Approach, Plan&amp;lt;/h3&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Discuss with Jc and Steve regarding how to incorporate into Slicer. Currently it &lt;br /&gt;
is used as a downloadable library during superbuild, similar to SlicerExecutionModel.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 40%; float: left;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Progress&amp;lt;/h3&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Delivery Mechanism==&lt;br /&gt;
&lt;br /&gt;
https://github.com/grclirui/PythonCppAPI.git&lt;/div&gt;</summary>
		<author><name>Grclirui</name></author>
		
	</entry>
	<entry>
		<id>https://www.na-mic.org/w/index.php?title=Talk:2013_Project_Week:Slicer_Personal_Cloud&amp;diff=82072</id>
		<title>Talk:2013 Project Week:Slicer Personal Cloud</title>
		<link rel="alternate" type="text/html" href="https://www.na-mic.org/w/index.php?title=Talk:2013_Project_Week:Slicer_Personal_Cloud&amp;diff=82072"/>
		<updated>2013-06-18T03:25:44Z</updated>

		<summary type="html">&lt;p&gt;Grclirui: Created page with '__NOTOC__ &amp;lt;gallery&amp;gt; Image:PW-MIT2013.png|Projects List &amp;lt;/gallery&amp;gt;  ==Key Investigators== * GRC: Rui Li, Jim Miller * Kitware: Jean-Christoph…'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:PW-MIT2013.png|[[2013_Summer_Project_Week#Projects|Projects List]]&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Key Investigators==&lt;br /&gt;
* GRC: Rui Li, Jim Miller&lt;br /&gt;
* Kitware: Jean-Christophe Fillion-Robin&lt;br /&gt;
* Isomics: Steve Pieper&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin: 20px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 27%; float: left; padding-right: 3%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Objective&amp;lt;/h3&amp;gt;&lt;br /&gt;
Python embedding library to manage calling python functions from C++. This will eliminate the code duplication  in Slicer.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 27%; float: left; padding-right: 3%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Approach, Plan&amp;lt;/h3&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Discuss with Jc and Steve regarding how to incorporate into Slicer. Currently it &lt;br /&gt;
is used as a downloadable library during superbuild, similar to SlicerExecutionModel.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 40%; float: left;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Progress&amp;lt;/h3&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Delivery Mechanism==&lt;br /&gt;
&lt;br /&gt;
https://github.com/grclirui/PythonCppAPI.git&lt;/div&gt;</summary>
		<author><name>Grclirui</name></author>
		
	</entry>
	<entry>
		<id>https://www.na-mic.org/w/index.php?title=2013_Summer_Project_Week&amp;diff=82071</id>
		<title>2013 Summer Project Week</title>
		<link rel="alternate" type="text/html" href="https://www.na-mic.org/w/index.php?title=2013_Summer_Project_Week&amp;diff=82071"/>
		<updated>2013-06-18T03:11:47Z</updated>

		<summary type="html">&lt;p&gt;Grclirui: /* Some Stats */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt; Back to [[Events]]&lt;br /&gt;
[[image:PW-MIT2013.png|300px]]&lt;br /&gt;
&lt;br /&gt;
Dates: June 17-21, 2013.&lt;br /&gt;
&lt;br /&gt;
Location: MIT, Cambridge, MA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Agenda==&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-style=&amp;quot;background:#b0d5e6;color:#02186f&amp;quot; &lt;br /&gt;
!style=&amp;quot;width:10%&amp;quot; |Time&lt;br /&gt;
!style=&amp;quot;width:18%&amp;quot; |Monday, June 17&lt;br /&gt;
!style=&amp;quot;width:18%&amp;quot; |Tuesday, June 18&lt;br /&gt;
!style=&amp;quot;width:18%&amp;quot; |Wednesday, June 19&lt;br /&gt;
!style=&amp;quot;width:18%&amp;quot; |Thursday, June 20&lt;br /&gt;
!style=&amp;quot;width:18%&amp;quot; |Friday, June 21&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|bgcolor=&amp;quot;#dbdbdb&amp;quot;|'''Project Presentations'''&lt;br /&gt;
|bgcolor=&amp;quot;#6494ec&amp;quot;|'''NA-MIC Update Day'''&lt;br /&gt;
|&lt;br /&gt;
|bgcolor=&amp;quot;#88aaae&amp;quot;|'''IGT and RT Day'''&lt;br /&gt;
|bgcolor=&amp;quot;#faedb6&amp;quot;|'''Reporting Day'''&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;#ffffdd&amp;quot;|'''8:30am'''&lt;br /&gt;
|&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Breakfast&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Breakfast&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Breakfast&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Breakfast&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;#ffffdd&amp;quot;|'''9am-12pm'''&lt;br /&gt;
|&lt;br /&gt;
|'''10-11am''' [[2013 Project Week Breakout Session:Slicer4Python|Slicer4 Python Modules, Testing, Q&amp;amp;A]] (Steve Pieper) &amp;lt;br&amp;gt;&lt;br /&gt;
[[MIT_Project_Week_Rooms|Grier Room (Left)]] &lt;br /&gt;
|'''9:30-11pm: &amp;lt;font color=&amp;quot;#4020ff&amp;quot;&amp;gt;Breakout Session:'''&amp;lt;/font&amp;gt;&amp;lt;br&amp;gt; [[2013 Project Week Breakout Session: SimpleITK|Slicer and SimpleITK]] (Hans Johnson, Brad Lowekamp)&lt;br /&gt;
[[MIT_Project_Week_Rooms#32-D507|32-D507]]&lt;br /&gt;
|'''10am-12pm: &amp;lt;font color=&amp;quot;#4020ff&amp;quot;&amp;gt;Breakout Session:'''&amp;lt;/font&amp;gt;&amp;lt;br&amp;gt;[[2013 Project Week Breakout Session: IGT|Image-Guided Therapy]] (Tina Kapur)&lt;br /&gt;
[[MIT_Project_Week_Rooms#32-D407|32-D407]]&lt;br /&gt;
|'''10am-12pm:''' [[#Projects|Project Progress Updates]]&lt;br /&gt;
[[MIT_Project_Week_Rooms#Grier_34-401_AB|Grier Rooms]]&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;#ffffdd&amp;quot;|'''12pm-1pm'''&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Lunch&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Lunch&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Lunch&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Lunch&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Lunch boxes; Adjourn by 1:30pm&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;#ffffdd&amp;quot;|'''1pm-5:30pm'''&lt;br /&gt;
|'''1-1:05pm: &amp;lt;font color=&amp;quot;#503020&amp;quot;&amp;gt;Ron Kikinis: Welcome&amp;lt;/font&amp;gt;'''&lt;br /&gt;
[[MIT_Project_Week_Rooms#Grier_34-401_AB|Grier Rooms]]&lt;br /&gt;
&amp;lt;br&amp;gt;----------------------------------------&amp;lt;br&amp;gt;&lt;br /&gt;
'''1:05-3:30pm:''' [[#Projects|Project Introductions]] (all Project Leads)&lt;br /&gt;
[[MIT_Project_Week_Rooms#Grier_34-401_AB|Grier Rooms]]&lt;br /&gt;
&amp;lt;br&amp;gt;----------------------------------------&amp;lt;br&amp;gt;&lt;br /&gt;
'''3:30-4:30pm''' [[2013 Summer Project Week Breakout Session:SlicerExtensions|Slicer4 Extensions]] (Jean-Christophe Fillion-Robin)  &amp;lt;br&amp;gt;&lt;br /&gt;
[[MIT_Project_Week_Rooms#Grier_34-401_AB|Grier Room (Left)]]&lt;br /&gt;
|'''1-3pm:''' [[Renewal-06-2013|NA-MIC Renewal]] &amp;lt;br&amp;gt;PIs &amp;lt;br&amp;gt;Closed Door Session with Ron&lt;br /&gt;
[[MIT_Project_Week_Rooms#32-D407|32-262]] &lt;br /&gt;
&amp;lt;br&amp;gt;----------------------------------------&amp;lt;br&amp;gt;&lt;br /&gt;
'''3-4pm:''' [[2013_Tutorial_Contest|Tutorial Contest Presentations]] &amp;lt;br&amp;gt;&lt;br /&gt;
[[MIT_Project_Week_Rooms#Grier_34-401_AB|Grier Rooms]]&lt;br /&gt;
|'''12:45-1pm:''' [[Events:TutorialContestJune2013|Tutorial Contest Winner Announcement]]&lt;br /&gt;
[[MIT_Project_Week_Rooms#Grier_34-401_AB|Grier Rooms]]&lt;br /&gt;
|&amp;lt;br&amp;gt;----------------------------------------&amp;lt;br&amp;gt;'''3-5:30pm: &amp;lt;font color=&amp;quot;#4020ff&amp;quot;&amp;gt;Breakout Session:'''&amp;lt;/font&amp;gt;&amp;lt;br&amp;gt; [[2013 Summer Project Week Breakout Session:RT|Radiation Therapy]] (Greg, Csaba)&lt;br /&gt;
[[MIT_Project_Week_Rooms#32-D407|32-D407]]&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;#ffffdd&amp;quot;|'''5:30pm'''&lt;br /&gt;
|bgcolor=&amp;quot;#f0e68b&amp;quot;|Adjourn for the day&lt;br /&gt;
|bgcolor=&amp;quot;#f0e68b&amp;quot;|Adjourn for the day&lt;br /&gt;
|bgcolor=&amp;quot;#f0e68b&amp;quot;|Adjourn for the day&lt;br /&gt;
|bgcolor=&amp;quot;#f0e68b&amp;quot;|Adjourn for the day&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== '''Projects''' ==&lt;br /&gt;
&lt;br /&gt;
Please use [http://wiki.na-mic.org/Wiki/index.php/Project_Week/Template this template] to create wiki pages for your project. Then link the page here with a list of key personnel. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Some Stats==&lt;br /&gt;
72 Projects, 97 Attendees.  First time attendees 25.&lt;br /&gt;
&lt;br /&gt;
===Huntington's Disease===&lt;br /&gt;
* [[Learn and Apply FiberBundleLabelSelect for Huntington's Disease Data]] (Hans, Demian)&lt;br /&gt;
* [[Investigate Potential Tensor Computation Improvement via Positive Semi-Definite (PSD) Tensor Estimation]] (Hans)&lt;br /&gt;
* [[2013_Summer_Project_Week:SinglePrecisionRegistrationITK| Single Precision Registration]] (Hans, Brad Lowekamp, Dave, Ali Ghayoor)&lt;br /&gt;
* [[Dynamically Configurable Quality Assurance Module for Large Huntington's Disease Database Frontend]] (Dave)&lt;br /&gt;
* [[DWIConvert]] (Dave, Kent Williams)&lt;br /&gt;
* [[Enhance and update SPL atlas]] (Dave, Hans)&lt;br /&gt;
* [[Linear Mixed-effects shape model to explore Huntington's Disease Data]] (Manasi, Dave, Hans, Ross)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- If it applies, update the project count reported below and at the top of the page --&amp;gt;&lt;br /&gt;
7 projects&lt;br /&gt;
&lt;br /&gt;
===Traumatic Brain Injury===&lt;br /&gt;
* [[Visualization and quantification of peri-contusional white matter bundles in traumatic brain injury using diffusion tensor imaging]] (Andrei Irimia, Micah Chambers, Ron Kikinis, Jack van Horn)&lt;br /&gt;
* [[Clinically oriented assessment of local changes in the properties of white matter affected by intra-cranial hemorrhage]] (Andrei Irimia, Micah Chambers, Ron Kikinis, Jack van Horn)&lt;br /&gt;
* [[Validation and testing of 3D Slicer modules implementing the Utah segmentation algorithm for traumatic brain injury]] (Bo Wang, Marcel Prastawa, Andrei Irimia, Micah Chambers, Guido Gerig, Jack van Horn)&lt;br /&gt;
* [[Exploring multi-modal registration for improved longitudinal modeling of patient-specific 4D DTI data]] (Anuja Sharma, Bo Wang, Andrei Irimia, Micah Chambers, Guido Gerig, Jack van Horn)&lt;br /&gt;
* [[2013_Summer_Project_Week: A Portable Ultrasound Device for Intracranial Hemorrhage Detection|A Portable Ultrasound Device for Intracranial Hemorrhage Detection]] (Jason White, Vicki Noble, Kirby Vosburgh)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- If it applies, update the project count reported below and at the top of the page --&amp;gt;&lt;br /&gt;
5 projects&lt;br /&gt;
&lt;br /&gt;
===Atrial Fibrillation and Cardiac Image Analysis===&lt;br /&gt;
* [[2013_Summer_Project_Week:Fibrosis_analysis|Fibrosis distribution analysis]] (Yi Gao, LiangJia Zhu, Rob MacLeod, Josh Cates, Ron Kikinis, Allen Tannenbaum)&lt;br /&gt;
* [[2013_Summer_Project_Week:CARMA_workflow_wizard|Cardiac MRI Toolkit LA segmentation and enhancement quantification workflow wizard]] (Salma Bengali, Alan Morris, Brian Zenger, Josh Cates, Rob MacLeod)&lt;br /&gt;
* [[2013_Summer_Project_Week:CARMA_Documentataion|Cardiac MRI Toolkit Documentation Project]] (Salma Bengali, Alan Morris, Brian Zenger, Josh Cates, Rob MacLeod)&lt;br /&gt;
* [[2013_Summer_Project_Week:CARMA_Visualization|LA model visualization]] (Salma Bengali, Alan Morris, Josh Cates, Rob MacLeod)&lt;br /&gt;
* [[2013_Summer_Project_Week:CARMA_AutoLASeg|Cardiac MRI Toolkit: Automatic LA Segmentation with Graph Cuts Module]] (Salma Bengali, Alan Morris, Josh Cates, Gopal, Ross Whitaker, Rob MacLeod)&lt;br /&gt;
* [[2013_Summer_Project_Week:Sobolev_Segmenter|Medical Volume Segmentation Using Sobolev Active Contours]] (Arie Nakhmani, Yi Gao, LiangJia Zhu, Rob MacLeod, Josh Cates, Ron Kikinis, Allen Tannenbaum)&lt;br /&gt;
* [[2013_Summer_Project_Week:Left_Ventricle_Motion_Analysis_using_Tagged_MRI|Left Ventricle Motion Analysis using Tagged MRI]] (Yang Yu, Shaoting Zhang, Dimitris Metaxas)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- If it applies, update the project count reported below and at the top of the page --&amp;gt;&lt;br /&gt;
7 projects&lt;br /&gt;
&lt;br /&gt;
===Radiation Therapy===&lt;br /&gt;
* [[2013_Summer_Project_Week:Landmark_Registration| Landmark Registration]] (Steve, Nadya, Greg, Paolo, Erol)&lt;br /&gt;
* [[2013_Summer_Project_Week:Slicer_RT:_DICOM-RT_Export | SlicerRT: Dicom-RT Export]] (Greg Sharp, Kevin Wang, Csaba Pinter)&lt;br /&gt;
* [[2013_Summer_Project_Week:Proton_dose_calculation | Proton dose calculation]]  (Greg Sharp, Kevin Wang, Maxime Desplanques)&lt;br /&gt;
* [[2013_Summer_Project_Week:Deformable_registration_validation_toolkit | Deformable registration validation toolkit]] (Greg Sharp, Kevin Wang, Andrey Fedorov)&lt;br /&gt;
* [[2013_Summer_Project_Week:Deformable_transforms | Deformable transform handling in Transforms module]] (Csaba Pinter, Alex Yarmarkovich, Andras Lasso)&lt;br /&gt;
* [[2013_Summer_Project_Week:Brachy_HDR_Ultrasound | Creating DICOM series from ultrasound for prostate HDR brachytherapy]] (Adam Rankin)&lt;br /&gt;
* [[Analysis of different atlas-based segmentation techniques for parotid glands]] (Christian Wachinger, Karl Fritscher, Greg Sharp, Matthew Brennan)&lt;br /&gt;
* [[2013_Summer_Project_Week:Prostate_radiotherapy_DICOM_communication|DICOM communication between Slicer and Oncentra Prostate radiation therapy planning system]] (Andrey Fedorov, Csaba Pinter, Emily Neubauer-Sugar, Alireza Mehrtash)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- If it applies, update the project count reported below and at the top of the page --&amp;gt;&lt;br /&gt;
8 projects&lt;br /&gt;
&lt;br /&gt;
===IGT and Device Integration with Slicer===&lt;br /&gt;
* [[2013_Summer_Project_Week:TractAtlasCluster| Tract Atlas and Clustering for Neurosurgery]] (Lauren O'Donnell)&lt;br /&gt;
* [[2013_Summer_Project_Week:SlicerIGT_Extension| SlicerIGT extension]] (Tamas Ungi, Junichi Tokuda, Laurent Chauvin)&lt;br /&gt;
* [[2013_Summer_Project_Week:Ultrasound_Calibration| Ultrasound Calibration]] (Matthew Toews, Daniel Kostro, William Wells, Stephen Aylward, Isaiah Norton, Tamas Ungi)&lt;br /&gt;
* [[2013_Summer_Project_Week:Ultrasound_Needle_Detection| Ultrasound Needle Detection]] (Alireza Mehrtash, Daniel Kostro, Matthew Toews, Tamas Ungi, William Wells, Tina Kapur)&lt;br /&gt;
* [[2013_Summer_Project_Week:Liver_Trajectory_Management| Liver Trajectory Management]] (Laurent Chauvin, Junichi Tokuda)&lt;br /&gt;
* [[2013_Summer_Project_Week:4DUltrasound| 4D Ultrasound]] (Laurent Chauvin, Junichi Tokuda)&lt;br /&gt;
* [[2013_Summer_Project_Week:LabelMapStatistics| Label map statistics]] (Laurent Chauvin, Csaba Pinter)&lt;br /&gt;
* [[2013_Summer_Project_Week:PerkTutorExtension| Perk Tutor Extension]] (Matthew Holden, Tamas Ungi)&lt;br /&gt;
* [[2013_Summer_Project_Week:Open_source_electromagnetic_trackers_using_OpenIGTLink| Open-source electromagnetic trackers using OpenIGTLink]] (Peter Traneus Anderson, Tina Kapur, Sonia Pujol)&lt;br /&gt;
* [[2013_Summer_Project_Week:3D_prostate_segmentation_of_Ultrasound_image| Segmentation of Prostate Gland from 3D US for Prostate Interventions]] (Xu Li, Andriy Fedorov, Tina Kapur, William Wells)&lt;br /&gt;
* [[2013_Summer_Project_Week:3D_prostate_registration_of_Ultrasound_image_using_MRI| Registration of an MRI delineated image of the Prostate Gland ot a 3D US for Prostate Interventions]] (Demian Wassermann, Andriy Fedorov, Tina Kapur, William Wells)&lt;br /&gt;
* [[2013_Summer_Project_Week:ProstateBRP| MRI-guided robotic prostate interventinos]] (Junichi Tokuda, Greg Fischer, Nirav Patel, Nobuhiko Hata, Clare Tempnay)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- If it applies, update the project count reported below and at the top of the page --&amp;gt;&lt;br /&gt;
12 projects&lt;br /&gt;
&lt;br /&gt;
===Chronic Obstructive Pulmonary Disease===&lt;br /&gt;
* [[2013_Summer_Project_Week:Airway_Inspector_Porting | Porting Airway Inspector to Slicer 4]] (Raul San Jose, Demian Wassermann, Rola Harmouche)&lt;br /&gt;
* [[2013_Summer_Project_Week:MRML_Infrastructure_Airway_Inspector | Airway Inspector: Slicer Extension and MRML Infrastructure]] (Demian Wassermann, Raul San Jose, Rola Harmouche)&lt;br /&gt;
* [[2013_Summer_Project_Week:Nipype_CLI_Integration | Integration of Nipype with CLI modules in the Chest Imaging Platform Library ]] (Rola Harmouche,Demian Wassermann, Raul San Jose)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- If it applies, update the project count reported below and at the top of the page --&amp;gt;&lt;br /&gt;
3 projects&lt;br /&gt;
&lt;br /&gt;
=== '''Additional Collaborations'''===&lt;br /&gt;
* [[2013_Summer_Project_Week:Radnostics |Spine Segmentation &amp;amp; Osteoporosis Detection In CT Imaging Studies]] (Anthony Blumfield, Ron Kikinis)&lt;br /&gt;
* [[2013_Summer_Project_Week: Computer Assisted Surgery| Computer Assisted Reconstruction of Complex Bone Fractures]] (Karl Fritscher, Peter Karasev, Ivan Kolesov, Allen Tannenbaum, Ron Kikinis)&lt;br /&gt;
* [[2013_Summer_Project_Week:XNAT 3D Viewer| XNAT 3D Viewer]] (Amanda Hartung, Steve Pieper, Daniel Haehn)&lt;br /&gt;
* [[2013_Summer_Project_Week:kukarobot| Interface for the integration of a KUKA robot using OpenIGTLink]] (Sebastian Tauscher, Thomas Neff, Junichi Tokuda, Nobuhiko Hata)&lt;br /&gt;
* [[2013_Summer_Project_Week:Application of Statistical Shape Modeling to Robot Assisted Spine Surgery | Application of Statistical Shape Modeling to Robot Assisted Spine Surgery]] (Marine Clogenson)&lt;br /&gt;
* [[2013_Summer_Project_Week:Robot_Control| Robot Control]] (A.Vilchis, J-C. Avila-Vilchis, S.Pujol)&lt;br /&gt;
* [[2013_Summer_Project_Week:Epilepsy_Surgery|Identification of MRI Blurring in Temporal Lobe Epilepsy Surgery]] (Luiz Murta)&lt;br /&gt;
* [[2013_Summer_Project_Week:_Is_Neurosurgical_Rigid_Registration_Really_Rigid%3F| Is Neurosurgical Rigid Registration Really Rigid?]] (Athena)&lt;br /&gt;
* [[2013_Summer_Project_Week: Individualized Neuroimaging Content Analysis using 3D Slicer in Alzheimer's Disease| Individualized Neuroimaging Content Analysis using 3D Slicer]] (Sidong Liu, Weidong Cai, Sonia Pujol, Ron Kikinis)&lt;br /&gt;
* [[2013_Summer_Project_Week:CMFReg | Cranio-Maxillofacial Registration]] (Vinicius Boen)&lt;br /&gt;
* [[2013_Summer_Project_Week:DTIPipelineExtensions | DTI Analysis Pipeline as Slicer4 Extensions]] (Francois Budin)&lt;br /&gt;
*[[2013_Project_Week:WebbasedAnatomicalTeachingFrameworkSummer2013|Web-based anatomical teaching framework]] (Lilla Zollei, Nathaniel Reynolds, Daniel Haehn, Nicolas Rannou, Steve Pieper, Rudolph Pienaar)&lt;br /&gt;
* [[2013_Summer_Project_Week:Biomedical_Image_Computing_Teaching_Modules|3D Slicer based Biomedical image computing teaching modules]]   (A. Vilchis, J-C. Avila-Vilchis, S. Pujol)&lt;br /&gt;
* [[2013_Summer_Project_Week:Analyzing Breast Tumor Heterogeneity Using 3D Slicer|Analyzing Breast Tumor Heterogeneity Using 3D Slicer]] (Sneha Durgapal, Jayender Jagadeesan, Tobias Penzkofer, Vivek Narayan)&lt;br /&gt;
* [[2013_Summer_Project_Week:WMH Segmentation for Stroke|WMH Segmentation for Stroke]] (Adrian Dalca, Ramesh Sridharan, Kayhan Batmanghelich, Polina Golland)&lt;br /&gt;
* [[2013_Summer_Project_Week:WMQL Integration in Slicer|White Matter Query Language (WMQL) Integration in Slicer]] (Demian Wassermann, Carl-Fredrik Westin)&lt;br /&gt;
* [[2013_Summer_Project_Week:Documentation for Slicer 4.2 Data Loading and 3D Visualization|Documentation for Slicer 4.2 Data Loading and 3D Visualization]] (Parth Amin WIT, Matt Flynn WIT, Dr. Pujol HMS)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- If it applies, update the project count reported below and at the top of the page --&amp;gt;&lt;br /&gt;
16 projects&lt;br /&gt;
&lt;br /&gt;
==='''Infrastructure'''===&lt;br /&gt;
* [[2013_Summer_Project_Week:MarkupsModuleSummer2013| Markups/Annotations rewrite]] (Nicole Aucoin, Ron Kikinis)&lt;br /&gt;
* [[2013_Summer_Project_Week:Patient_hierarchy | Patient hierarchy]] (Csaba Pinter, Andras Lasso, Steve Pieper)&lt;br /&gt;
* [[2013_Summer_Project_Week:CLI_Improvements | CLI Improvements (hierarchy nodes, related nodes, roles)]] (Andras Lasso, Csaba Pinter, Jc, Steve, Jim)&lt;br /&gt;
* [[2013_Summer_Project_Week:CLI_Matlab | CLI module implementation in Matlab]] (Andras Lasso, Jc, Steve, Jim)&lt;br /&gt;
* [[2013_Summer_Project_Week:Sample_Data | Sample Data]] (Steve Pieper, Jim Miller, Bill Lorensen, Jc)&lt;br /&gt;
* [[ITK -VTK wrapper]] (Paolo Zaffino, Greg Sharp, Steve Pieper)&lt;br /&gt;
* [[2013_Summer_Project_Week:Optimizing start time of slicer| Optimizing start time of slicer]] (Jc, Steve)&lt;br /&gt;
* [[Common resampling and conversion utility functions in Slicer]] (Csaba Pinter, Steve Pieper, Hans, Kevin Wang)&lt;br /&gt;
* [[2013_Summer_Project_Week:CLI_modules_in_MeVisLab| Integrating CTK CLI modules into MeVisLab]] (Hans Meine, Steve, Jc)&lt;br /&gt;
* [[2013_Summer_Project_Week:SimpleITK_GUI| Common Usage GUI for SimpleITK]] (Brad Lowekamp, Hans Johnson, Dave Welch)&lt;br /&gt;
* [[2013_Summer_Project_Week:Extension_dependencies| Extension dependencies]] (Jc, Adam Rankin)&lt;br /&gt;
* [[2013_Summer_Project_Week:Parameter_heirarchy| Parameter (time) Hierarchy]] (Adam Rankin)&lt;br /&gt;
* [[2013_Summer_Project_Week:ITK_Shared_IO_Libraries| ITK Shared I/O Libraries]] (Brad Lowekamp)&lt;br /&gt;
* [[2013_Summer_Project_Week:Python_Embedding| Python Embedding Library]] (Rui, Jim, Jc, Steve)&lt;br /&gt;
&amp;lt;!-- If it applies, update the project count reported below and at the top of the page --&amp;gt;&lt;br /&gt;
14 projects&lt;br /&gt;
&lt;br /&gt;
== '''Background''' ==&lt;br /&gt;
&lt;br /&gt;
We are pleased to announce the 17th PROJECT WEEK of hands-on research and development activity for applications in Neuroscience, Image-Guided Therapy and several additional areas of biomedical research that enable personalized medicine. Participants will engage in open source programming using the [[NA-MIC-Kit|NA-MIC Kit]], algorithm design, medical imaging sequence development, tracking experiments, and clinical application. The main goal of this event is to move forward the translational research deliverables of the sponsoring centers and their collaborators. Active and potential collaborators are encouraged and welcome to attend this event. This event will be set up to maximize informal interaction between participants.  If you would like to learn more about this event, please [http://public.kitware.com/cgi-bin/mailman/listinfo/na-mic-project-week click here to join our mailing list].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Active preparation begins on Thursday, April 25th at 3pm ET, with a kick-off teleconference.  Invitations to this call will be sent to members of the sponsoring communities, their collaborators, past attendees of the event, as well as any parties who have expressed an interest in working with these centers. The main goal of the kick-off call is to get an idea of which groups/projects will be active at the upcoming event, and to ensure that there is sufficient coverage for all. Subsequent teleconferences will allow for more focused discussions on individual projects and allow the hosts to finalize the project teams, consolidate any common components, and identify topics that should be discussed in breakout sessions. In the final days leading upto the meeting, all project teams will be asked to fill in a template page on this wiki that describes the objectives and plan of their projects.  &lt;br /&gt;
&lt;br /&gt;
The event itself will start off with a short presentation by each project team, driven using their previously created description, and will help all participants get acquainted with others who are doing similar work. In the rest of the week, about half the time will be spent in breakout discussions on topics of common interest of subsets of the attendees, and the other half will be spent in project teams, doing hands-on project work.  The hands-on activities will be done in 40-50 small teams of size 2-4, each with a mix of multi-disciplinary expertise.  To facilitate this work, a large room at MIT will be setup with several tables, with internet and power access, and each computer software development based team will gather on a table with their individual laptops, connect to the internet to download their software and data, and be able to work on their projects.  Teams working on projects that require the use of medical devices will proceed to Brigham and Women's Hospital and carry out their experiments there. On the last day of the event, a closing presentation session will be held in which each project team will present a summary of what they accomplished during the week.&lt;br /&gt;
&lt;br /&gt;
This event is part of the translational research efforts of [http://www.na-mic.org NA-MIC], [http://www.ncigt.org NCIGT], [http://nac.spl.harvard.edu/ NAC], [http://catalyst.harvard.edu/home.html Harvard Catalyst],  [http://www.cimit.org CIMIT], and OCAIRO.  It is an expansion of the NA-MIC Summer Project Week that has been held annually since 2005. It will be held every summer at MIT and Brigham and Womens Hospital in Boston, typically during the last full week of June, and in Salt Lake City in the winter, typically during the second week of January.  &lt;br /&gt;
&lt;br /&gt;
A summary of all past NA-MIC Project Events is available [[Project_Events#Past|here]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== '''Logistics''' ==&lt;br /&gt;
&lt;br /&gt;
*'''Dates:''' June 17-21, 2013.&lt;br /&gt;
*'''Location:''' [[MIT_Project_Week_Rooms| Stata Center / RLE MIT]]. &lt;br /&gt;
*'''REGISTRATION:'''  http://www.regonline.com/namic2013summerprojweek. Please note that  as you proceed to the checkout portion of the registration process, RegOnline will offer you a chance to opt into a free trial of ACTIVEAdvantage -- click on &amp;quot;No thanks&amp;quot; in order to finish your Project Week registration.&lt;br /&gt;
*'''Registration Fee:''' $300.&lt;br /&gt;
*'''Hotel:''' Similar to previous years, no rooms have been blocked in a particular hotel.&lt;br /&gt;
*'''Room sharing''': If interested, add your name to the list before May 27th. See [[2013_Summer_Project_Week/RoomSharing|here]]&lt;br /&gt;
&lt;br /&gt;
== '''Preparation''' ==&lt;br /&gt;
&lt;br /&gt;
# Please make sure that you are on the http://public.kitware.com/cgi-bin/mailman/listinfo/na-mic-project-week mailing list&lt;br /&gt;
# The NA-MIC engineering team will be discussing projects in a their [http://wiki.na-mic.org/Wiki/index.php/Engineering:TCON_2013 weekly teleconferences]. Participants from the above mailing list will be invited to join to discuss their projects, so please make sure you are on it!&lt;br /&gt;
# By 3pm ET on Thursday May 8, all participants to add a one line title of their project to #Projects&lt;br /&gt;
# By 3pm ET on Thursday June 6, all project leads to complete [[Project_Week/Template|Complete a templated wiki page for your project]]. Please do not edit the template page itself, but create a new page for your project and cut-and-paste the text from this template page.  If you have questions, please send an email to tkapur at bwh.harvard.edu.&lt;br /&gt;
# By 3pm on June 13: Create a directory for each project on the [[Engineering:SandBox|NAMIC Sandbox]] (Matt)&lt;br /&gt;
## Commit on each sandbox directory the code examples/snippets that represent our first guesses of appropriate methods. (Luis and Steve will help with this, as needed)&lt;br /&gt;
## Gather test images in any of the Data sharing resources we have (e.g. XNAT/MIDAS). These ones don't have to be many. At least three different cases, so we can get an idea of the modality-specific characteristics of these images. Put the IDs of these data sets on the wiki page. (the participants must do this.)&lt;br /&gt;
## Where possible, setup nightly tests on a separate Dashboard, where we will run the methods that we are experimenting with. The test should post result images and computation time. (Matt)&lt;br /&gt;
# Please note that by the time we get to the project event, we should be trying to close off a project milestone rather than starting to work on one...&lt;br /&gt;
# People doing Slicer related projects should come to project week with slicer built on your laptop.&lt;br /&gt;
## See the [http://www.slicer.org/slicerWiki/index.php/Documentation/4.0/Developers Developer Section of slicer.org] for information.&lt;br /&gt;
## Projects to develop extension modules should be built against the latest Slicer4 trunk.&lt;br /&gt;
&lt;br /&gt;
== '''Registrants''' ==&lt;br /&gt;
&lt;br /&gt;
Do not add your name to this list - it is maintained by the organizers based on your paid registration.  ([http://www.regonline.com/Register/Checkin.aspx?EventID=1233699  Please click here to register.])&lt;br /&gt;
&lt;br /&gt;
#Parth Amin, WIT, aminp@wit.edu&lt;br /&gt;
#Charles Anderson, BWH, canderson26@partners.org&lt;br /&gt;
#Peter Anderson, retired, traneus@verizon.net&lt;br /&gt;
#Nicole Aucoin, BWH, nicole@bwh.harvard.edu&lt;br /&gt;
#Juan Carlos Avila Vilchis, Univ del Estado de Mexico, jc.avila.vilchis@hotmail.com&lt;br /&gt;
#Kayhan Batmanghelich, MIT, kayhan@csail.mit.edu&lt;br /&gt;
#Salma Bengali, Univ UT, salma.bengali@carma.utah.edu&lt;br /&gt;
#Anthony Blumfield, Radnostics, Anthony.Blumfield@Radnostics.com&lt;br /&gt;
#Vinicius Boen, Univ Michigan, vboen@umich.edu&lt;br /&gt;
#Matthew Brennan, MIT, brennanm@mit.edu&lt;br /&gt;
#Francois Budin, NIRAL-UNC, fbudin@unc.edu&lt;br /&gt;
#Ivan Buzurovic, BWH/HMS, ibuzurovic@lroc.harvard.edu&lt;br /&gt;
#Josh Cates, Univ UT, cates@sci.utah.edu&lt;br /&gt;
#Micah Chambers, UCLA, micahcc@ucla.edu&lt;br /&gt;
#Laurent Chauvin, BWH - SPL, lchauvin@bwh.harvard.edu&lt;br /&gt;
#Marine Clogenson, Ecole Polytechnique Federale de Lausanne (Switzerland), marine.clogenson@epfl.ch&lt;br /&gt;
#Adrian Dalca, MIT, adalca@MIT.EDU&lt;br /&gt;
#Matthew D'Artista, BWH - SPL, mdartista7@gmail.com&lt;br /&gt;
#Manasi Datar, Univ UT-SCI Institute, datar@sci.utah.edu&lt;br /&gt;
#Sneha Durgapal, BWH, durgapalsneha@gmail.com&lt;br /&gt;
#Luping Fang, Zhejiang Univ of Technology (China), flp@zjut.edu.cn&lt;br /&gt;
#Andriy Fedorov, BWH, fedorov@bwh.harvard.edu&lt;br /&gt;
#Jean-Christophe Fillion-Robin, Kitware, jchris.fillionr@kitware.com&lt;br /&gt;
#Gregory Fischer, WPI, gfischer@wpi.edu&lt;br /&gt;
#Barton Fiske, zSpace Inc, bfiske@zspace.com&lt;br /&gt;
#Matthew Flynn, WIT, flynnm3@wit.edu&lt;br /&gt;
#Karl Fritscher, MGH, kfritscher@gmail.com&lt;br /&gt;
#Yi Gao, Univ AL Birmingham, gaoyi.cn@gmail.com&lt;br /&gt;
#Maria Gonzalez-Puente, WIT, gonzalezpuentem@wit.edu&lt;br /&gt;
#Daniel Haehn, Boston Childrens Hospital, daniel.haehn@childrens.harvard.edu&lt;br /&gt;
#Michael Halle, BWH-SPL, mhalle@bwh.harvard.edu&lt;br /&gt;
#Rola Harmouche, BWH, rharmo@bwh.harvard.edu&lt;br /&gt;
#Amanda Hartung, Rochester Inst of Tech, amh1646@rit.edu&lt;br /&gt;
#Nobuhiko Hata, BWH, hata@bwh.harvard.edu&lt;br /&gt;
#Nicholas Herlambang, AZE Technology Inc, nicholas.herlambang@azetech.com&lt;br /&gt;
#Matthew Holden, Queen's Univ (Canada), mholden8@cs.queensu.ca&lt;br /&gt;
#Andrei Irimia, UCLA, andrei.irimia@loni.ucla.edu&lt;br /&gt;
#Jayender Jagadeesan, BWH-SPL, jayender@bwh.harvard.edu&lt;br /&gt;
#Hans Johnson, Univ Iowa, hans-johnson@uiowa.edu&lt;br /&gt;
#Tina Kapur, BWH/HMS, tkapur@bwh.harvard.edu&lt;br /&gt;
#Alex Kikinis, BWH, alexkikinis@gmail.com&lt;br /&gt;
#Ron Kikinis, HMS, kikinis@bwh.harvard.edu&lt;br /&gt;
#Nils Klarlund, IEEE, klarlund@ieee.org&lt;br /&gt;
#Daniel Kostro, BWH, dkostro@bwh.harvard.edu&lt;br /&gt;
#Andras Lasso, Queen's Univ (Canada), lasso@cs.queensu.ca&lt;br /&gt;
#Rui Li, GE Global Research, li.rui@ge.com&lt;br /&gt;
#Xu Li, BWH, lixu0103@gmail.com&lt;br /&gt;
#Lichen Liang, MGH, lichenl@nmr.mgh.harvard.edu&lt;br /&gt;
#Sidong Liu, Univ Sydney (Australia), sliu7418@uni.sydney.edu.au&lt;br /&gt;
#William Lorensen, Bill's Basement, bill.lorensen@gmail.com &lt;br /&gt;
#Bradley Lowekamp, Medical Science &amp;amp; Computing Inc, bradley.lowekamp@nih.gov&lt;br /&gt;
#Athena Lyons, Univ Western Australia, 20359511@student.uwa.edu.au&lt;br /&gt;
#Nikos Makris, MGH, nikos@nmr.mgh.harvard.edu&lt;br /&gt;
#Katie Mastrogiacomo, BWH - SPL, kmast@bwh.harvard.edu&lt;br /&gt;
#Alireza Mehrtash, BWH - SPL, mehrtash@bwh.harvard.edu&lt;br /&gt;
#Hans Meine, Fraunhofer MEVIS (Germany), hans.meine@mevis.fraunhofer.de&lt;br /&gt;
#Jim Miller, GE Global Research, millerjv@ge.com&lt;br /&gt;
#Luis Murta, Univ Sao Paulo (Brazil), lomurta@gmail.com&lt;br /&gt;
#Arie Nakhmani, Univ AL Birmingham, anry@uab.edu&lt;br /&gt;
#Isaiah Norton, BWH, inorton@bwh.harvard.edu&lt;br /&gt;
#Lauren O'Donnell, BWH, odonnell@bwh.harvard.edu&lt;br /&gt;
#Dirk Padfield, GE Global Research, padfield@research.ge.com&lt;br /&gt;
#Jian Pan, Zhejiang Univ of Technology (China), pj@zjut.edu.cn&lt;br /&gt;
#George Papadimitriou, MGH, georgep@nmr.mgh.harvard.edu&lt;br /&gt;
#Nirav Patel, WPI, napatel@wpi.edu&lt;br /&gt;
#Tobias Penzkofer, BWH - SPL, pt@bwh.harvard.edu&lt;br /&gt;
#Rudolph Pienaar, Boston Childrens Hospital, Rudolph.Pienaar@childrens.harvard.edu&lt;br /&gt;
#Steve Pieper, Isomics Inc, pieper@isomics.com&lt;br /&gt;
#Csaba Pinter, Queen's Univ (Canada), pinter@cs.queensu.ca&lt;br /&gt;
#Sonia Pujol, HMS, spujol@bwh.harvard.edu&lt;br /&gt;
#Adam Rankin, Queen's Univ (Canada), rankin@cs.queensu.ca&lt;br /&gt;
#Nathaniel Reynolds, MGH, reynolds@nmr.mgh.harvard.edu&lt;br /&gt;
#Raul San Jose, BWH, rjosest@bwh.harvard.edu&lt;br /&gt;
#Peter Savadjiev, BWH, petersv@bwh.harvard.edu&lt;br /&gt;
#Anuja Sharma, Univ UT-SCI Institute, anuja@cs.utah.edu&lt;br /&gt;
#Greg Sharp, MGH, gcsharp@partners.org&lt;br /&gt;
#Nadya Shusharina, MGH, nshusharina@partners.org&lt;br /&gt;
#Sebastian Tauscher, Leibniz Univ Hannover (Germany), sebastian.tauscher@imes.uni-hannover.de&lt;br /&gt;
#Clare Tempany, BWH, ctempanyafdhal@partners.org&lt;br /&gt;
#Cyrill von Tiesenhausen, KUKA Laboratories (Germany), cyrill.tiesenhausen@kuka.com&lt;br /&gt;
#Gaurie Tilak, BWH, gaurie_tilak@hms.harvard.edu&lt;br /&gt;
#Matthew Toews, BWH/HMS, mt@bwh.harvard.edu&lt;br /&gt;
#Junichi Tokuda, BWH, tokuda@bwh.harvard.edu&lt;br /&gt;
#Tamas Ungi, Queen's Univ (Canada), ungi@cs.queensu.ca&lt;br /&gt;
#Adriana Vilchis González, Univ del Estado de Mexico, hvigady@hotmail.com&lt;br /&gt;
#Kirby Vosburgh, BWH, kirby@bwh.harvard.edu&lt;br /&gt;
#Christian Wachinger, MIT, wachinge@mit.edu&lt;br /&gt;
#Bo Wang, Univ UT-SCI Institute, bowang@sci.utah.edu&lt;br /&gt;
#Demian Wassermann, BWH, demian@bwh.harvard.edu&lt;br /&gt;
#David Welch, Univ Iowa, david-welch@uiowa.edu&lt;br /&gt;
#William Wells, BWH/HMS, sw@bwh.harvard.edu&lt;br /&gt;
#Phillip White, BWH/HMS, white@bwh.harvard.edu&lt;br /&gt;
#Alex Yarmarkovich, Isomics Inc, alexy@bwh.harvard.edu&lt;br /&gt;
#Kitaro Yoshimitsu, BWH, kitarof1@bwh.harvard.edu&lt;br /&gt;
#Yang Yu, Rutgers Univ, yyu@cs.rutgers.edu&lt;br /&gt;
#Paolo Zaffino, Univ Magna Graecia of Catanzaro (Italy), p.zaffino@unicz.it&lt;br /&gt;
#Lilla Zollei, MGH, lzollei@nmr.mgh.harvard.edu&lt;/div&gt;</summary>
		<author><name>Grclirui</name></author>
		
	</entry>
	<entry>
		<id>https://www.na-mic.org/w/index.php?title=2013_Summer_Project_Week&amp;diff=82070</id>
		<title>2013 Summer Project Week</title>
		<link rel="alternate" type="text/html" href="https://www.na-mic.org/w/index.php?title=2013_Summer_Project_Week&amp;diff=82070"/>
		<updated>2013-06-18T03:11:09Z</updated>

		<summary type="html">&lt;p&gt;Grclirui: /* Infrastructure */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt; Back to [[Events]]&lt;br /&gt;
[[image:PW-MIT2013.png|300px]]&lt;br /&gt;
&lt;br /&gt;
Dates: June 17-21, 2013.&lt;br /&gt;
&lt;br /&gt;
Location: MIT, Cambridge, MA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Agenda==&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-style=&amp;quot;background:#b0d5e6;color:#02186f&amp;quot; &lt;br /&gt;
!style=&amp;quot;width:10%&amp;quot; |Time&lt;br /&gt;
!style=&amp;quot;width:18%&amp;quot; |Monday, June 17&lt;br /&gt;
!style=&amp;quot;width:18%&amp;quot; |Tuesday, June 18&lt;br /&gt;
!style=&amp;quot;width:18%&amp;quot; |Wednesday, June 19&lt;br /&gt;
!style=&amp;quot;width:18%&amp;quot; |Thursday, June 20&lt;br /&gt;
!style=&amp;quot;width:18%&amp;quot; |Friday, June 21&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|bgcolor=&amp;quot;#dbdbdb&amp;quot;|'''Project Presentations'''&lt;br /&gt;
|bgcolor=&amp;quot;#6494ec&amp;quot;|'''NA-MIC Update Day'''&lt;br /&gt;
|&lt;br /&gt;
|bgcolor=&amp;quot;#88aaae&amp;quot;|'''IGT and RT Day'''&lt;br /&gt;
|bgcolor=&amp;quot;#faedb6&amp;quot;|'''Reporting Day'''&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;#ffffdd&amp;quot;|'''8:30am'''&lt;br /&gt;
|&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Breakfast&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Breakfast&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Breakfast&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Breakfast&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;#ffffdd&amp;quot;|'''9am-12pm'''&lt;br /&gt;
|&lt;br /&gt;
|'''10-11am''' [[2013 Project Week Breakout Session:Slicer4Python|Slicer4 Python Modules, Testing, Q&amp;amp;A]] (Steve Pieper) &amp;lt;br&amp;gt;&lt;br /&gt;
[[MIT_Project_Week_Rooms|Grier Room (Left)]] &lt;br /&gt;
|'''9:30-11pm: &amp;lt;font color=&amp;quot;#4020ff&amp;quot;&amp;gt;Breakout Session:'''&amp;lt;/font&amp;gt;&amp;lt;br&amp;gt; [[2013 Project Week Breakout Session: SimpleITK|Slicer and SimpleITK]] (Hans Johnson, Brad Lowekamp)&lt;br /&gt;
[[MIT_Project_Week_Rooms#32-D507|32-D507]]&lt;br /&gt;
|'''10am-12pm: &amp;lt;font color=&amp;quot;#4020ff&amp;quot;&amp;gt;Breakout Session:'''&amp;lt;/font&amp;gt;&amp;lt;br&amp;gt;[[2013 Project Week Breakout Session: IGT|Image-Guided Therapy]] (Tina Kapur)&lt;br /&gt;
[[MIT_Project_Week_Rooms#32-D407|32-D407]]&lt;br /&gt;
|'''10am-12pm:''' [[#Projects|Project Progress Updates]]&lt;br /&gt;
[[MIT_Project_Week_Rooms#Grier_34-401_AB|Grier Rooms]]&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;#ffffdd&amp;quot;|'''12pm-1pm'''&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Lunch&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Lunch&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Lunch&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Lunch&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Lunch boxes; Adjourn by 1:30pm&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;#ffffdd&amp;quot;|'''1pm-5:30pm'''&lt;br /&gt;
|'''1-1:05pm: &amp;lt;font color=&amp;quot;#503020&amp;quot;&amp;gt;Ron Kikinis: Welcome&amp;lt;/font&amp;gt;'''&lt;br /&gt;
[[MIT_Project_Week_Rooms#Grier_34-401_AB|Grier Rooms]]&lt;br /&gt;
&amp;lt;br&amp;gt;----------------------------------------&amp;lt;br&amp;gt;&lt;br /&gt;
'''1:05-3:30pm:''' [[#Projects|Project Introductions]] (all Project Leads)&lt;br /&gt;
[[MIT_Project_Week_Rooms#Grier_34-401_AB|Grier Rooms]]&lt;br /&gt;
&amp;lt;br&amp;gt;----------------------------------------&amp;lt;br&amp;gt;&lt;br /&gt;
'''3:30-4:30pm''' [[2013 Summer Project Week Breakout Session:SlicerExtensions|Slicer4 Extensions]] (Jean-Christophe Fillion-Robin)  &amp;lt;br&amp;gt;&lt;br /&gt;
[[MIT_Project_Week_Rooms#Grier_34-401_AB|Grier Room (Left)]]&lt;br /&gt;
|'''1-3pm:''' [[Renewal-06-2013|NA-MIC Renewal]] &amp;lt;br&amp;gt;PIs &amp;lt;br&amp;gt;Closed Door Session with Ron&lt;br /&gt;
[[MIT_Project_Week_Rooms#32-D407|32-262]] &lt;br /&gt;
&amp;lt;br&amp;gt;----------------------------------------&amp;lt;br&amp;gt;&lt;br /&gt;
'''3-4pm:''' [[2013_Tutorial_Contest|Tutorial Contest Presentations]] &amp;lt;br&amp;gt;&lt;br /&gt;
[[MIT_Project_Week_Rooms#Grier_34-401_AB|Grier Rooms]]&lt;br /&gt;
|'''12:45-1pm:''' [[Events:TutorialContestJune2013|Tutorial Contest Winner Announcement]]&lt;br /&gt;
[[MIT_Project_Week_Rooms#Grier_34-401_AB|Grier Rooms]]&lt;br /&gt;
|&amp;lt;br&amp;gt;----------------------------------------&amp;lt;br&amp;gt;'''3-5:30pm: &amp;lt;font color=&amp;quot;#4020ff&amp;quot;&amp;gt;Breakout Session:'''&amp;lt;/font&amp;gt;&amp;lt;br&amp;gt; [[2013 Summer Project Week Breakout Session:RT|Radiation Therapy]] (Greg, Csaba)&lt;br /&gt;
[[MIT_Project_Week_Rooms#32-D407|32-D407]]&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;#ffffdd&amp;quot;|'''5:30pm'''&lt;br /&gt;
|bgcolor=&amp;quot;#f0e68b&amp;quot;|Adjourn for the day&lt;br /&gt;
|bgcolor=&amp;quot;#f0e68b&amp;quot;|Adjourn for the day&lt;br /&gt;
|bgcolor=&amp;quot;#f0e68b&amp;quot;|Adjourn for the day&lt;br /&gt;
|bgcolor=&amp;quot;#f0e68b&amp;quot;|Adjourn for the day&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== '''Projects''' ==&lt;br /&gt;
&lt;br /&gt;
Please use [http://wiki.na-mic.org/Wiki/index.php/Project_Week/Template this template] to create wiki pages for your project. Then link the page here with a list of key personnel. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Some Stats==&lt;br /&gt;
71 Projects, 97 Attendees.  First time attendees 25.&lt;br /&gt;
&lt;br /&gt;
===Huntington's Disease===&lt;br /&gt;
* [[Learn and Apply FiberBundleLabelSelect for Huntington's Disease Data]] (Hans, Demian)&lt;br /&gt;
* [[Investigate Potential Tensor Computation Improvement via Positive Semi-Definite (PSD) Tensor Estimation]] (Hans)&lt;br /&gt;
* [[2013_Summer_Project_Week:SinglePrecisionRegistrationITK| Single Precision Registration]] (Hans, Brad Lowekamp, Dave, Ali Ghayoor)&lt;br /&gt;
* [[Dynamically Configurable Quality Assurance Module for Large Huntington's Disease Database Frontend]] (Dave)&lt;br /&gt;
* [[DWIConvert]] (Dave, Kent Williams)&lt;br /&gt;
* [[Enhance and update SPL atlas]] (Dave, Hans)&lt;br /&gt;
* [[Linear Mixed-effects shape model to explore Huntington's Disease Data]] (Manasi, Dave, Hans, Ross)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- If it applies, update the project count reported below and at the top of the page --&amp;gt;&lt;br /&gt;
7 projects&lt;br /&gt;
&lt;br /&gt;
===Traumatic Brain Injury===&lt;br /&gt;
* [[Visualization and quantification of peri-contusional white matter bundles in traumatic brain injury using diffusion tensor imaging]] (Andrei Irimia, Micah Chambers, Ron Kikinis, Jack van Horn)&lt;br /&gt;
* [[Clinically oriented assessment of local changes in the properties of white matter affected by intra-cranial hemorrhage]] (Andrei Irimia, Micah Chambers, Ron Kikinis, Jack van Horn)&lt;br /&gt;
* [[Validation and testing of 3D Slicer modules implementing the Utah segmentation algorithm for traumatic brain injury]] (Bo Wang, Marcel Prastawa, Andrei Irimia, Micah Chambers, Guido Gerig, Jack van Horn)&lt;br /&gt;
* [[Exploring multi-modal registration for improved longitudinal modeling of patient-specific 4D DTI data]] (Anuja Sharma, Bo Wang, Andrei Irimia, Micah Chambers, Guido Gerig, Jack van Horn)&lt;br /&gt;
* [[2013_Summer_Project_Week: A Portable Ultrasound Device for Intracranial Hemorrhage Detection|A Portable Ultrasound Device for Intracranial Hemorrhage Detection]] (Jason White, Vicki Noble, Kirby Vosburgh)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- If it applies, update the project count reported below and at the top of the page --&amp;gt;&lt;br /&gt;
5 projects&lt;br /&gt;
&lt;br /&gt;
===Atrial Fibrillation and Cardiac Image Analysis===&lt;br /&gt;
* [[2013_Summer_Project_Week:Fibrosis_analysis|Fibrosis distribution analysis]] (Yi Gao, LiangJia Zhu, Rob MacLeod, Josh Cates, Ron Kikinis, Allen Tannenbaum)&lt;br /&gt;
* [[2013_Summer_Project_Week:CARMA_workflow_wizard|Cardiac MRI Toolkit LA segmentation and enhancement quantification workflow wizard]] (Salma Bengali, Alan Morris, Brian Zenger, Josh Cates, Rob MacLeod)&lt;br /&gt;
* [[2013_Summer_Project_Week:CARMA_Documentataion|Cardiac MRI Toolkit Documentation Project]] (Salma Bengali, Alan Morris, Brian Zenger, Josh Cates, Rob MacLeod)&lt;br /&gt;
* [[2013_Summer_Project_Week:CARMA_Visualization|LA model visualization]] (Salma Bengali, Alan Morris, Josh Cates, Rob MacLeod)&lt;br /&gt;
* [[2013_Summer_Project_Week:CARMA_AutoLASeg|Cardiac MRI Toolkit: Automatic LA Segmentation with Graph Cuts Module]] (Salma Bengali, Alan Morris, Josh Cates, Gopal, Ross Whitaker, Rob MacLeod)&lt;br /&gt;
* [[2013_Summer_Project_Week:Sobolev_Segmenter|Medical Volume Segmentation Using Sobolev Active Contours]] (Arie Nakhmani, Yi Gao, LiangJia Zhu, Rob MacLeod, Josh Cates, Ron Kikinis, Allen Tannenbaum)&lt;br /&gt;
* [[2013_Summer_Project_Week:Left_Ventricle_Motion_Analysis_using_Tagged_MRI|Left Ventricle Motion Analysis using Tagged MRI]] (Yang Yu, Shaoting Zhang, Dimitris Metaxas)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- If it applies, update the project count reported below and at the top of the page --&amp;gt;&lt;br /&gt;
7 projects&lt;br /&gt;
&lt;br /&gt;
===Radiation Therapy===&lt;br /&gt;
* [[2013_Summer_Project_Week:Landmark_Registration| Landmark Registration]] (Steve, Nadya, Greg, Paolo, Erol)&lt;br /&gt;
* [[2013_Summer_Project_Week:Slicer_RT:_DICOM-RT_Export | SlicerRT: Dicom-RT Export]] (Greg Sharp, Kevin Wang, Csaba Pinter)&lt;br /&gt;
* [[2013_Summer_Project_Week:Proton_dose_calculation | Proton dose calculation]]  (Greg Sharp, Kevin Wang, Maxime Desplanques)&lt;br /&gt;
* [[2013_Summer_Project_Week:Deformable_registration_validation_toolkit | Deformable registration validation toolkit]] (Greg Sharp, Kevin Wang, Andrey Fedorov)&lt;br /&gt;
* [[2013_Summer_Project_Week:Deformable_transforms | Deformable transform handling in Transforms module]] (Csaba Pinter, Alex Yarmarkovich, Andras Lasso)&lt;br /&gt;
* [[2013_Summer_Project_Week:Brachy_HDR_Ultrasound | Creating DICOM series from ultrasound for prostate HDR brachytherapy]] (Adam Rankin)&lt;br /&gt;
* [[Analysis of different atlas-based segmentation techniques for parotid glands]] (Christian Wachinger, Karl Fritscher, Greg Sharp, Matthew Brennan)&lt;br /&gt;
* [[2013_Summer_Project_Week:Prostate_radiotherapy_DICOM_communication|DICOM communication between Slicer and Oncentra Prostate radiation therapy planning system]] (Andrey Fedorov, Csaba Pinter, Emily Neubauer-Sugar, Alireza Mehrtash)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- If it applies, update the project count reported below and at the top of the page --&amp;gt;&lt;br /&gt;
8 projects&lt;br /&gt;
&lt;br /&gt;
===IGT and Device Integration with Slicer===&lt;br /&gt;
* [[2013_Summer_Project_Week:TractAtlasCluster| Tract Atlas and Clustering for Neurosurgery]] (Lauren O'Donnell)&lt;br /&gt;
* [[2013_Summer_Project_Week:SlicerIGT_Extension| SlicerIGT extension]] (Tamas Ungi, Junichi Tokuda, Laurent Chauvin)&lt;br /&gt;
* [[2013_Summer_Project_Week:Ultrasound_Calibration| Ultrasound Calibration]] (Matthew Toews, Daniel Kostro, William Wells, Stephen Aylward, Isaiah Norton, Tamas Ungi)&lt;br /&gt;
* [[2013_Summer_Project_Week:Ultrasound_Needle_Detection| Ultrasound Needle Detection]] (Alireza Mehrtash, Daniel Kostro, Matthew Toews, Tamas Ungi, William Wells, Tina Kapur)&lt;br /&gt;
* [[2013_Summer_Project_Week:Liver_Trajectory_Management| Liver Trajectory Management]] (Laurent Chauvin, Junichi Tokuda)&lt;br /&gt;
* [[2013_Summer_Project_Week:4DUltrasound| 4D Ultrasound]] (Laurent Chauvin, Junichi Tokuda)&lt;br /&gt;
* [[2013_Summer_Project_Week:LabelMapStatistics| Label map statistics]] (Laurent Chauvin, Csaba Pinter)&lt;br /&gt;
* [[2013_Summer_Project_Week:PerkTutorExtension| Perk Tutor Extension]] (Matthew Holden, Tamas Ungi)&lt;br /&gt;
* [[2013_Summer_Project_Week:Open_source_electromagnetic_trackers_using_OpenIGTLink| Open-source electromagnetic trackers using OpenIGTLink]] (Peter Traneus Anderson, Tina Kapur, Sonia Pujol)&lt;br /&gt;
* [[2013_Summer_Project_Week:3D_prostate_segmentation_of_Ultrasound_image| Segmentation of Prostate Gland from 3D US for Prostate Interventions]] (Xu Li, Andriy Fedorov, Tina Kapur, William Wells)&lt;br /&gt;
* [[2013_Summer_Project_Week:3D_prostate_registration_of_Ultrasound_image_using_MRI| Registration of an MRI delineated image of the Prostate Gland ot a 3D US for Prostate Interventions]] (Demian Wassermann, Andriy Fedorov, Tina Kapur, William Wells)&lt;br /&gt;
* [[2013_Summer_Project_Week:ProstateBRP| MRI-guided robotic prostate interventinos]] (Junichi Tokuda, Greg Fischer, Nirav Patel, Nobuhiko Hata, Clare Tempnay)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- If it applies, update the project count reported below and at the top of the page --&amp;gt;&lt;br /&gt;
12 projects&lt;br /&gt;
&lt;br /&gt;
===Chronic Obstructive Pulmonary Disease===&lt;br /&gt;
* [[2013_Summer_Project_Week:Airway_Inspector_Porting | Porting Airway Inspector to Slicer 4]] (Raul San Jose, Demian Wassermann, Rola Harmouche)&lt;br /&gt;
* [[2013_Summer_Project_Week:MRML_Infrastructure_Airway_Inspector | Airway Inspector: Slicer Extension and MRML Infrastructure]] (Demian Wassermann, Raul San Jose, Rola Harmouche)&lt;br /&gt;
* [[2013_Summer_Project_Week:Nipype_CLI_Integration | Integration of Nipype with CLI modules in the Chest Imaging Platform Library ]] (Rola Harmouche,Demian Wassermann, Raul San Jose)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- If it applies, update the project count reported below and at the top of the page --&amp;gt;&lt;br /&gt;
3 projects&lt;br /&gt;
&lt;br /&gt;
=== '''Additional Collaborations'''===&lt;br /&gt;
* [[2013_Summer_Project_Week:Radnostics |Spine Segmentation &amp;amp; Osteoporosis Detection In CT Imaging Studies]] (Anthony Blumfield, Ron Kikinis)&lt;br /&gt;
* [[2013_Summer_Project_Week: Computer Assisted Surgery| Computer Assisted Reconstruction of Complex Bone Fractures]] (Karl Fritscher, Peter Karasev, Ivan Kolesov, Allen Tannenbaum, Ron Kikinis)&lt;br /&gt;
* [[2013_Summer_Project_Week:XNAT 3D Viewer| XNAT 3D Viewer]] (Amanda Hartung, Steve Pieper, Daniel Haehn)&lt;br /&gt;
* [[2013_Summer_Project_Week:kukarobot| Interface for the integration of a KUKA robot using OpenIGTLink]] (Sebastian Tauscher, Thomas Neff, Junichi Tokuda, Nobuhiko Hata)&lt;br /&gt;
* [[2013_Summer_Project_Week:Application of Statistical Shape Modeling to Robot Assisted Spine Surgery | Application of Statistical Shape Modeling to Robot Assisted Spine Surgery]] (Marine Clogenson)&lt;br /&gt;
* [[2013_Summer_Project_Week:Robot_Control| Robot Control]] (A.Vilchis, J-C. Avila-Vilchis, S.Pujol)&lt;br /&gt;
* [[2013_Summer_Project_Week:Epilepsy_Surgery|Identification of MRI Blurring in Temporal Lobe Epilepsy Surgery]] (Luiz Murta)&lt;br /&gt;
* [[2013_Summer_Project_Week:_Is_Neurosurgical_Rigid_Registration_Really_Rigid%3F| Is Neurosurgical Rigid Registration Really Rigid?]] (Athena)&lt;br /&gt;
* [[2013_Summer_Project_Week: Individualized Neuroimaging Content Analysis using 3D Slicer in Alzheimer's Disease| Individualized Neuroimaging Content Analysis using 3D Slicer]] (Sidong Liu, Weidong Cai, Sonia Pujol, Ron Kikinis)&lt;br /&gt;
* [[2013_Summer_Project_Week:CMFReg | Cranio-Maxillofacial Registration]] (Vinicius Boen)&lt;br /&gt;
* [[2013_Summer_Project_Week:DTIPipelineExtensions | DTI Analysis Pipeline as Slicer4 Extensions]] (Francois Budin)&lt;br /&gt;
*[[2013_Project_Week:WebbasedAnatomicalTeachingFrameworkSummer2013|Web-based anatomical teaching framework]] (Lilla Zollei, Nathaniel Reynolds, Daniel Haehn, Nicolas Rannou, Steve Pieper, Rudolph Pienaar)&lt;br /&gt;
* [[2013_Summer_Project_Week:Biomedical_Image_Computing_Teaching_Modules|3D Slicer based Biomedical image computing teaching modules]]   (A. Vilchis, J-C. Avila-Vilchis, S. Pujol)&lt;br /&gt;
* [[2013_Summer_Project_Week:Analyzing Breast Tumor Heterogeneity Using 3D Slicer|Analyzing Breast Tumor Heterogeneity Using 3D Slicer]] (Sneha Durgapal, Jayender Jagadeesan, Tobias Penzkofer, Vivek Narayan)&lt;br /&gt;
* [[2013_Summer_Project_Week:WMH Segmentation for Stroke|WMH Segmentation for Stroke]] (Adrian Dalca, Ramesh Sridharan, Kayhan Batmanghelich, Polina Golland)&lt;br /&gt;
* [[2013_Summer_Project_Week:WMQL Integration in Slicer|White Matter Query Language (WMQL) Integration in Slicer]] (Demian Wassermann, Carl-Fredrik Westin)&lt;br /&gt;
* [[2013_Summer_Project_Week:Documentation for Slicer 4.2 Data Loading and 3D Visualization|Documentation for Slicer 4.2 Data Loading and 3D Visualization]] (Parth Amin WIT, Matt Flynn WIT, Dr. Pujol HMS)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- If it applies, update the project count reported below and at the top of the page --&amp;gt;&lt;br /&gt;
16 projects&lt;br /&gt;
&lt;br /&gt;
==='''Infrastructure'''===&lt;br /&gt;
* [[2013_Summer_Project_Week:MarkupsModuleSummer2013| Markups/Annotations rewrite]] (Nicole Aucoin, Ron Kikinis)&lt;br /&gt;
* [[2013_Summer_Project_Week:Patient_hierarchy | Patient hierarchy]] (Csaba Pinter, Andras Lasso, Steve Pieper)&lt;br /&gt;
* [[2013_Summer_Project_Week:CLI_Improvements | CLI Improvements (hierarchy nodes, related nodes, roles)]] (Andras Lasso, Csaba Pinter, Jc, Steve, Jim)&lt;br /&gt;
* [[2013_Summer_Project_Week:CLI_Matlab | CLI module implementation in Matlab]] (Andras Lasso, Jc, Steve, Jim)&lt;br /&gt;
* [[2013_Summer_Project_Week:Sample_Data | Sample Data]] (Steve Pieper, Jim Miller, Bill Lorensen, Jc)&lt;br /&gt;
* [[ITK -VTK wrapper]] (Paolo Zaffino, Greg Sharp, Steve Pieper)&lt;br /&gt;
* [[2013_Summer_Project_Week:Optimizing start time of slicer| Optimizing start time of slicer]] (Jc, Steve)&lt;br /&gt;
* [[Common resampling and conversion utility functions in Slicer]] (Csaba Pinter, Steve Pieper, Hans, Kevin Wang)&lt;br /&gt;
* [[2013_Summer_Project_Week:CLI_modules_in_MeVisLab| Integrating CTK CLI modules into MeVisLab]] (Hans Meine, Steve, Jc)&lt;br /&gt;
* [[2013_Summer_Project_Week:SimpleITK_GUI| Common Usage GUI for SimpleITK]] (Brad Lowekamp, Hans Johnson, Dave Welch)&lt;br /&gt;
* [[2013_Summer_Project_Week:Extension_dependencies| Extension dependencies]] (Jc, Adam Rankin)&lt;br /&gt;
* [[2013_Summer_Project_Week:Parameter_heirarchy| Parameter (time) Hierarchy]] (Adam Rankin)&lt;br /&gt;
* [[2013_Summer_Project_Week:ITK_Shared_IO_Libraries| ITK Shared I/O Libraries]] (Brad Lowekamp)&lt;br /&gt;
* [[2013_Summer_Project_Week:Python_Embedding| Python Embedding Library]] (Rui, Jim, Jc, Steve)&lt;br /&gt;
&amp;lt;!-- If it applies, update the project count reported below and at the top of the page --&amp;gt;&lt;br /&gt;
14 projects&lt;br /&gt;
&lt;br /&gt;
== '''Background''' ==&lt;br /&gt;
&lt;br /&gt;
We are pleased to announce the 17th PROJECT WEEK of hands-on research and development activity for applications in Neuroscience, Image-Guided Therapy and several additional areas of biomedical research that enable personalized medicine. Participants will engage in open source programming using the [[NA-MIC-Kit|NA-MIC Kit]], algorithm design, medical imaging sequence development, tracking experiments, and clinical application. The main goal of this event is to move forward the translational research deliverables of the sponsoring centers and their collaborators. Active and potential collaborators are encouraged and welcome to attend this event. This event will be set up to maximize informal interaction between participants.  If you would like to learn more about this event, please [http://public.kitware.com/cgi-bin/mailman/listinfo/na-mic-project-week click here to join our mailing list].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Active preparation begins on Thursday, April 25th at 3pm ET, with a kick-off teleconference.  Invitations to this call will be sent to members of the sponsoring communities, their collaborators, past attendees of the event, as well as any parties who have expressed an interest in working with these centers. The main goal of the kick-off call is to get an idea of which groups/projects will be active at the upcoming event, and to ensure that there is sufficient coverage for all. Subsequent teleconferences will allow for more focused discussions on individual projects and allow the hosts to finalize the project teams, consolidate any common components, and identify topics that should be discussed in breakout sessions. In the final days leading upto the meeting, all project teams will be asked to fill in a template page on this wiki that describes the objectives and plan of their projects.  &lt;br /&gt;
&lt;br /&gt;
The event itself will start off with a short presentation by each project team, driven using their previously created description, and will help all participants get acquainted with others who are doing similar work. In the rest of the week, about half the time will be spent in breakout discussions on topics of common interest of subsets of the attendees, and the other half will be spent in project teams, doing hands-on project work.  The hands-on activities will be done in 40-50 small teams of size 2-4, each with a mix of multi-disciplinary expertise.  To facilitate this work, a large room at MIT will be setup with several tables, with internet and power access, and each computer software development based team will gather on a table with their individual laptops, connect to the internet to download their software and data, and be able to work on their projects.  Teams working on projects that require the use of medical devices will proceed to Brigham and Women's Hospital and carry out their experiments there. On the last day of the event, a closing presentation session will be held in which each project team will present a summary of what they accomplished during the week.&lt;br /&gt;
&lt;br /&gt;
This event is part of the translational research efforts of [http://www.na-mic.org NA-MIC], [http://www.ncigt.org NCIGT], [http://nac.spl.harvard.edu/ NAC], [http://catalyst.harvard.edu/home.html Harvard Catalyst],  [http://www.cimit.org CIMIT], and OCAIRO.  It is an expansion of the NA-MIC Summer Project Week that has been held annually since 2005. It will be held every summer at MIT and Brigham and Womens Hospital in Boston, typically during the last full week of June, and in Salt Lake City in the winter, typically during the second week of January.  &lt;br /&gt;
&lt;br /&gt;
A summary of all past NA-MIC Project Events is available [[Project_Events#Past|here]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== '''Logistics''' ==&lt;br /&gt;
&lt;br /&gt;
*'''Dates:''' June 17-21, 2013.&lt;br /&gt;
*'''Location:''' [[MIT_Project_Week_Rooms| Stata Center / RLE MIT]]. &lt;br /&gt;
*'''REGISTRATION:'''  http://www.regonline.com/namic2013summerprojweek. Please note that  as you proceed to the checkout portion of the registration process, RegOnline will offer you a chance to opt into a free trial of ACTIVEAdvantage -- click on &amp;quot;No thanks&amp;quot; in order to finish your Project Week registration.&lt;br /&gt;
*'''Registration Fee:''' $300.&lt;br /&gt;
*'''Hotel:''' Similar to previous years, no rooms have been blocked in a particular hotel.&lt;br /&gt;
*'''Room sharing''': If interested, add your name to the list before May 27th. See [[2013_Summer_Project_Week/RoomSharing|here]]&lt;br /&gt;
&lt;br /&gt;
== '''Preparation''' ==&lt;br /&gt;
&lt;br /&gt;
# Please make sure that you are on the http://public.kitware.com/cgi-bin/mailman/listinfo/na-mic-project-week mailing list&lt;br /&gt;
# The NA-MIC engineering team will be discussing projects in a their [http://wiki.na-mic.org/Wiki/index.php/Engineering:TCON_2013 weekly teleconferences]. Participants from the above mailing list will be invited to join to discuss their projects, so please make sure you are on it!&lt;br /&gt;
# By 3pm ET on Thursday May 8, all participants to add a one line title of their project to #Projects&lt;br /&gt;
# By 3pm ET on Thursday June 6, all project leads to complete [[Project_Week/Template|Complete a templated wiki page for your project]]. Please do not edit the template page itself, but create a new page for your project and cut-and-paste the text from this template page.  If you have questions, please send an email to tkapur at bwh.harvard.edu.&lt;br /&gt;
# By 3pm on June 13: Create a directory for each project on the [[Engineering:SandBox|NAMIC Sandbox]] (Matt)&lt;br /&gt;
## Commit on each sandbox directory the code examples/snippets that represent our first guesses of appropriate methods. (Luis and Steve will help with this, as needed)&lt;br /&gt;
## Gather test images in any of the Data sharing resources we have (e.g. XNAT/MIDAS). These ones don't have to be many. At least three different cases, so we can get an idea of the modality-specific characteristics of these images. Put the IDs of these data sets on the wiki page. (the participants must do this.)&lt;br /&gt;
## Where possible, setup nightly tests on a separate Dashboard, where we will run the methods that we are experimenting with. The test should post result images and computation time. (Matt)&lt;br /&gt;
# Please note that by the time we get to the project event, we should be trying to close off a project milestone rather than starting to work on one...&lt;br /&gt;
# People doing Slicer related projects should come to project week with slicer built on your laptop.&lt;br /&gt;
## See the [http://www.slicer.org/slicerWiki/index.php/Documentation/4.0/Developers Developer Section of slicer.org] for information.&lt;br /&gt;
## Projects to develop extension modules should be built against the latest Slicer4 trunk.&lt;br /&gt;
&lt;br /&gt;
== '''Registrants''' ==&lt;br /&gt;
&lt;br /&gt;
Do not add your name to this list - it is maintained by the organizers based on your paid registration.  ([http://www.regonline.com/Register/Checkin.aspx?EventID=1233699  Please click here to register.])&lt;br /&gt;
&lt;br /&gt;
#Parth Amin, WIT, aminp@wit.edu&lt;br /&gt;
#Charles Anderson, BWH, canderson26@partners.org&lt;br /&gt;
#Peter Anderson, retired, traneus@verizon.net&lt;br /&gt;
#Nicole Aucoin, BWH, nicole@bwh.harvard.edu&lt;br /&gt;
#Juan Carlos Avila Vilchis, Univ del Estado de Mexico, jc.avila.vilchis@hotmail.com&lt;br /&gt;
#Kayhan Batmanghelich, MIT, kayhan@csail.mit.edu&lt;br /&gt;
#Salma Bengali, Univ UT, salma.bengali@carma.utah.edu&lt;br /&gt;
#Anthony Blumfield, Radnostics, Anthony.Blumfield@Radnostics.com&lt;br /&gt;
#Vinicius Boen, Univ Michigan, vboen@umich.edu&lt;br /&gt;
#Matthew Brennan, MIT, brennanm@mit.edu&lt;br /&gt;
#Francois Budin, NIRAL-UNC, fbudin@unc.edu&lt;br /&gt;
#Ivan Buzurovic, BWH/HMS, ibuzurovic@lroc.harvard.edu&lt;br /&gt;
#Josh Cates, Univ UT, cates@sci.utah.edu&lt;br /&gt;
#Micah Chambers, UCLA, micahcc@ucla.edu&lt;br /&gt;
#Laurent Chauvin, BWH - SPL, lchauvin@bwh.harvard.edu&lt;br /&gt;
#Marine Clogenson, Ecole Polytechnique Federale de Lausanne (Switzerland), marine.clogenson@epfl.ch&lt;br /&gt;
#Adrian Dalca, MIT, adalca@MIT.EDU&lt;br /&gt;
#Matthew D'Artista, BWH - SPL, mdartista7@gmail.com&lt;br /&gt;
#Manasi Datar, Univ UT-SCI Institute, datar@sci.utah.edu&lt;br /&gt;
#Sneha Durgapal, BWH, durgapalsneha@gmail.com&lt;br /&gt;
#Luping Fang, Zhejiang Univ of Technology (China), flp@zjut.edu.cn&lt;br /&gt;
#Andriy Fedorov, BWH, fedorov@bwh.harvard.edu&lt;br /&gt;
#Jean-Christophe Fillion-Robin, Kitware, jchris.fillionr@kitware.com&lt;br /&gt;
#Gregory Fischer, WPI, gfischer@wpi.edu&lt;br /&gt;
#Barton Fiske, zSpace Inc, bfiske@zspace.com&lt;br /&gt;
#Matthew Flynn, WIT, flynnm3@wit.edu&lt;br /&gt;
#Karl Fritscher, MGH, kfritscher@gmail.com&lt;br /&gt;
#Yi Gao, Univ AL Birmingham, gaoyi.cn@gmail.com&lt;br /&gt;
#Maria Gonzalez-Puente, WIT, gonzalezpuentem@wit.edu&lt;br /&gt;
#Daniel Haehn, Boston Childrens Hospital, daniel.haehn@childrens.harvard.edu&lt;br /&gt;
#Michael Halle, BWH-SPL, mhalle@bwh.harvard.edu&lt;br /&gt;
#Rola Harmouche, BWH, rharmo@bwh.harvard.edu&lt;br /&gt;
#Amanda Hartung, Rochester Inst of Tech, amh1646@rit.edu&lt;br /&gt;
#Nobuhiko Hata, BWH, hata@bwh.harvard.edu&lt;br /&gt;
#Nicholas Herlambang, AZE Technology Inc, nicholas.herlambang@azetech.com&lt;br /&gt;
#Matthew Holden, Queen's Univ (Canada), mholden8@cs.queensu.ca&lt;br /&gt;
#Andrei Irimia, UCLA, andrei.irimia@loni.ucla.edu&lt;br /&gt;
#Jayender Jagadeesan, BWH-SPL, jayender@bwh.harvard.edu&lt;br /&gt;
#Hans Johnson, Univ Iowa, hans-johnson@uiowa.edu&lt;br /&gt;
#Tina Kapur, BWH/HMS, tkapur@bwh.harvard.edu&lt;br /&gt;
#Alex Kikinis, BWH, alexkikinis@gmail.com&lt;br /&gt;
#Ron Kikinis, HMS, kikinis@bwh.harvard.edu&lt;br /&gt;
#Nils Klarlund, IEEE, klarlund@ieee.org&lt;br /&gt;
#Daniel Kostro, BWH, dkostro@bwh.harvard.edu&lt;br /&gt;
#Andras Lasso, Queen's Univ (Canada), lasso@cs.queensu.ca&lt;br /&gt;
#Rui Li, GE Global Research, li.rui@ge.com&lt;br /&gt;
#Xu Li, BWH, lixu0103@gmail.com&lt;br /&gt;
#Lichen Liang, MGH, lichenl@nmr.mgh.harvard.edu&lt;br /&gt;
#Sidong Liu, Univ Sydney (Australia), sliu7418@uni.sydney.edu.au&lt;br /&gt;
#William Lorensen, Bill's Basement, bill.lorensen@gmail.com &lt;br /&gt;
#Bradley Lowekamp, Medical Science &amp;amp; Computing Inc, bradley.lowekamp@nih.gov&lt;br /&gt;
#Athena Lyons, Univ Western Australia, 20359511@student.uwa.edu.au&lt;br /&gt;
#Nikos Makris, MGH, nikos@nmr.mgh.harvard.edu&lt;br /&gt;
#Katie Mastrogiacomo, BWH - SPL, kmast@bwh.harvard.edu&lt;br /&gt;
#Alireza Mehrtash, BWH - SPL, mehrtash@bwh.harvard.edu&lt;br /&gt;
#Hans Meine, Fraunhofer MEVIS (Germany), hans.meine@mevis.fraunhofer.de&lt;br /&gt;
#Jim Miller, GE Global Research, millerjv@ge.com&lt;br /&gt;
#Luis Murta, Univ Sao Paulo (Brazil), lomurta@gmail.com&lt;br /&gt;
#Arie Nakhmani, Univ AL Birmingham, anry@uab.edu&lt;br /&gt;
#Isaiah Norton, BWH, inorton@bwh.harvard.edu&lt;br /&gt;
#Lauren O'Donnell, BWH, odonnell@bwh.harvard.edu&lt;br /&gt;
#Dirk Padfield, GE Global Research, padfield@research.ge.com&lt;br /&gt;
#Jian Pan, Zhejiang Univ of Technology (China), pj@zjut.edu.cn&lt;br /&gt;
#George Papadimitriou, MGH, georgep@nmr.mgh.harvard.edu&lt;br /&gt;
#Nirav Patel, WPI, napatel@wpi.edu&lt;br /&gt;
#Tobias Penzkofer, BWH - SPL, pt@bwh.harvard.edu&lt;br /&gt;
#Rudolph Pienaar, Boston Childrens Hospital, Rudolph.Pienaar@childrens.harvard.edu&lt;br /&gt;
#Steve Pieper, Isomics Inc, pieper@isomics.com&lt;br /&gt;
#Csaba Pinter, Queen's Univ (Canada), pinter@cs.queensu.ca&lt;br /&gt;
#Sonia Pujol, HMS, spujol@bwh.harvard.edu&lt;br /&gt;
#Adam Rankin, Queen's Univ (Canada), rankin@cs.queensu.ca&lt;br /&gt;
#Nathaniel Reynolds, MGH, reynolds@nmr.mgh.harvard.edu&lt;br /&gt;
#Raul San Jose, BWH, rjosest@bwh.harvard.edu&lt;br /&gt;
#Peter Savadjiev, BWH, petersv@bwh.harvard.edu&lt;br /&gt;
#Anuja Sharma, Univ UT-SCI Institute, anuja@cs.utah.edu&lt;br /&gt;
#Greg Sharp, MGH, gcsharp@partners.org&lt;br /&gt;
#Nadya Shusharina, MGH, nshusharina@partners.org&lt;br /&gt;
#Sebastian Tauscher, Leibniz Univ Hannover (Germany), sebastian.tauscher@imes.uni-hannover.de&lt;br /&gt;
#Clare Tempany, BWH, ctempanyafdhal@partners.org&lt;br /&gt;
#Cyrill von Tiesenhausen, KUKA Laboratories (Germany), cyrill.tiesenhausen@kuka.com&lt;br /&gt;
#Gaurie Tilak, BWH, gaurie_tilak@hms.harvard.edu&lt;br /&gt;
#Matthew Toews, BWH/HMS, mt@bwh.harvard.edu&lt;br /&gt;
#Junichi Tokuda, BWH, tokuda@bwh.harvard.edu&lt;br /&gt;
#Tamas Ungi, Queen's Univ (Canada), ungi@cs.queensu.ca&lt;br /&gt;
#Adriana Vilchis González, Univ del Estado de Mexico, hvigady@hotmail.com&lt;br /&gt;
#Kirby Vosburgh, BWH, kirby@bwh.harvard.edu&lt;br /&gt;
#Christian Wachinger, MIT, wachinge@mit.edu&lt;br /&gt;
#Bo Wang, Univ UT-SCI Institute, bowang@sci.utah.edu&lt;br /&gt;
#Demian Wassermann, BWH, demian@bwh.harvard.edu&lt;br /&gt;
#David Welch, Univ Iowa, david-welch@uiowa.edu&lt;br /&gt;
#William Wells, BWH/HMS, sw@bwh.harvard.edu&lt;br /&gt;
#Phillip White, BWH/HMS, white@bwh.harvard.edu&lt;br /&gt;
#Alex Yarmarkovich, Isomics Inc, alexy@bwh.harvard.edu&lt;br /&gt;
#Kitaro Yoshimitsu, BWH, kitarof1@bwh.harvard.edu&lt;br /&gt;
#Yang Yu, Rutgers Univ, yyu@cs.rutgers.edu&lt;br /&gt;
#Paolo Zaffino, Univ Magna Graecia of Catanzaro (Italy), p.zaffino@unicz.it&lt;br /&gt;
#Lilla Zollei, MGH, lzollei@nmr.mgh.harvard.edu&lt;/div&gt;</summary>
		<author><name>Grclirui</name></author>
		
	</entry>
	<entry>
		<id>https://www.na-mic.org/w/index.php?title=2013_Summer_Project_Week&amp;diff=82069</id>
		<title>2013 Summer Project Week</title>
		<link rel="alternate" type="text/html" href="https://www.na-mic.org/w/index.php?title=2013_Summer_Project_Week&amp;diff=82069"/>
		<updated>2013-06-18T03:09:56Z</updated>

		<summary type="html">&lt;p&gt;Grclirui: /* Infrastructure */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt; Back to [[Events]]&lt;br /&gt;
[[image:PW-MIT2013.png|300px]]&lt;br /&gt;
&lt;br /&gt;
Dates: June 17-21, 2013.&lt;br /&gt;
&lt;br /&gt;
Location: MIT, Cambridge, MA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Agenda==&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-style=&amp;quot;background:#b0d5e6;color:#02186f&amp;quot; &lt;br /&gt;
!style=&amp;quot;width:10%&amp;quot; |Time&lt;br /&gt;
!style=&amp;quot;width:18%&amp;quot; |Monday, June 17&lt;br /&gt;
!style=&amp;quot;width:18%&amp;quot; |Tuesday, June 18&lt;br /&gt;
!style=&amp;quot;width:18%&amp;quot; |Wednesday, June 19&lt;br /&gt;
!style=&amp;quot;width:18%&amp;quot; |Thursday, June 20&lt;br /&gt;
!style=&amp;quot;width:18%&amp;quot; |Friday, June 21&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|bgcolor=&amp;quot;#dbdbdb&amp;quot;|'''Project Presentations'''&lt;br /&gt;
|bgcolor=&amp;quot;#6494ec&amp;quot;|'''NA-MIC Update Day'''&lt;br /&gt;
|&lt;br /&gt;
|bgcolor=&amp;quot;#88aaae&amp;quot;|'''IGT and RT Day'''&lt;br /&gt;
|bgcolor=&amp;quot;#faedb6&amp;quot;|'''Reporting Day'''&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;#ffffdd&amp;quot;|'''8:30am'''&lt;br /&gt;
|&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Breakfast&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Breakfast&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Breakfast&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Breakfast&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;#ffffdd&amp;quot;|'''9am-12pm'''&lt;br /&gt;
|&lt;br /&gt;
|'''10-11am''' [[2013 Project Week Breakout Session:Slicer4Python|Slicer4 Python Modules, Testing, Q&amp;amp;A]] (Steve Pieper) &amp;lt;br&amp;gt;&lt;br /&gt;
[[MIT_Project_Week_Rooms|Grier Room (Left)]] &lt;br /&gt;
|'''9:30-11pm: &amp;lt;font color=&amp;quot;#4020ff&amp;quot;&amp;gt;Breakout Session:'''&amp;lt;/font&amp;gt;&amp;lt;br&amp;gt; [[2013 Project Week Breakout Session: SimpleITK|Slicer and SimpleITK]] (Hans Johnson, Brad Lowekamp)&lt;br /&gt;
[[MIT_Project_Week_Rooms#32-D507|32-D507]]&lt;br /&gt;
|'''10am-12pm: &amp;lt;font color=&amp;quot;#4020ff&amp;quot;&amp;gt;Breakout Session:'''&amp;lt;/font&amp;gt;&amp;lt;br&amp;gt;[[2013 Project Week Breakout Session: IGT|Image-Guided Therapy]] (Tina Kapur)&lt;br /&gt;
[[MIT_Project_Week_Rooms#32-D407|32-D407]]&lt;br /&gt;
|'''10am-12pm:''' [[#Projects|Project Progress Updates]]&lt;br /&gt;
[[MIT_Project_Week_Rooms#Grier_34-401_AB|Grier Rooms]]&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;#ffffdd&amp;quot;|'''12pm-1pm'''&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Lunch&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Lunch&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Lunch&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Lunch&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Lunch boxes; Adjourn by 1:30pm&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;#ffffdd&amp;quot;|'''1pm-5:30pm'''&lt;br /&gt;
|'''1-1:05pm: &amp;lt;font color=&amp;quot;#503020&amp;quot;&amp;gt;Ron Kikinis: Welcome&amp;lt;/font&amp;gt;'''&lt;br /&gt;
[[MIT_Project_Week_Rooms#Grier_34-401_AB|Grier Rooms]]&lt;br /&gt;
&amp;lt;br&amp;gt;----------------------------------------&amp;lt;br&amp;gt;&lt;br /&gt;
'''1:05-3:30pm:''' [[#Projects|Project Introductions]] (all Project Leads)&lt;br /&gt;
[[MIT_Project_Week_Rooms#Grier_34-401_AB|Grier Rooms]]&lt;br /&gt;
&amp;lt;br&amp;gt;----------------------------------------&amp;lt;br&amp;gt;&lt;br /&gt;
'''3:30-4:30pm''' [[2013 Summer Project Week Breakout Session:SlicerExtensions|Slicer4 Extensions]] (Jean-Christophe Fillion-Robin)  &amp;lt;br&amp;gt;&lt;br /&gt;
[[MIT_Project_Week_Rooms#Grier_34-401_AB|Grier Room (Left)]]&lt;br /&gt;
|'''1-3pm:''' [[Renewal-06-2013|NA-MIC Renewal]] &amp;lt;br&amp;gt;PIs &amp;lt;br&amp;gt;Closed Door Session with Ron&lt;br /&gt;
[[MIT_Project_Week_Rooms#32-D407|32-262]] &lt;br /&gt;
&amp;lt;br&amp;gt;----------------------------------------&amp;lt;br&amp;gt;&lt;br /&gt;
'''3-4pm:''' [[2013_Tutorial_Contest|Tutorial Contest Presentations]] &amp;lt;br&amp;gt;&lt;br /&gt;
[[MIT_Project_Week_Rooms#Grier_34-401_AB|Grier Rooms]]&lt;br /&gt;
|'''12:45-1pm:''' [[Events:TutorialContestJune2013|Tutorial Contest Winner Announcement]]&lt;br /&gt;
[[MIT_Project_Week_Rooms#Grier_34-401_AB|Grier Rooms]]&lt;br /&gt;
|&amp;lt;br&amp;gt;----------------------------------------&amp;lt;br&amp;gt;'''3-5:30pm: &amp;lt;font color=&amp;quot;#4020ff&amp;quot;&amp;gt;Breakout Session:'''&amp;lt;/font&amp;gt;&amp;lt;br&amp;gt; [[2013 Summer Project Week Breakout Session:RT|Radiation Therapy]] (Greg, Csaba)&lt;br /&gt;
[[MIT_Project_Week_Rooms#32-D407|32-D407]]&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;#ffffdd&amp;quot;|'''5:30pm'''&lt;br /&gt;
|bgcolor=&amp;quot;#f0e68b&amp;quot;|Adjourn for the day&lt;br /&gt;
|bgcolor=&amp;quot;#f0e68b&amp;quot;|Adjourn for the day&lt;br /&gt;
|bgcolor=&amp;quot;#f0e68b&amp;quot;|Adjourn for the day&lt;br /&gt;
|bgcolor=&amp;quot;#f0e68b&amp;quot;|Adjourn for the day&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== '''Projects''' ==&lt;br /&gt;
&lt;br /&gt;
Please use [http://wiki.na-mic.org/Wiki/index.php/Project_Week/Template this template] to create wiki pages for your project. Then link the page here with a list of key personnel. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Some Stats==&lt;br /&gt;
71 Projects, 97 Attendees.  First time attendees 25.&lt;br /&gt;
&lt;br /&gt;
===Huntington's Disease===&lt;br /&gt;
* [[Learn and Apply FiberBundleLabelSelect for Huntington's Disease Data]] (Hans, Demian)&lt;br /&gt;
* [[Investigate Potential Tensor Computation Improvement via Positive Semi-Definite (PSD) Tensor Estimation]] (Hans)&lt;br /&gt;
* [[2013_Summer_Project_Week:SinglePrecisionRegistrationITK| Single Precision Registration]] (Hans, Brad Lowekamp, Dave, Ali Ghayoor)&lt;br /&gt;
* [[Dynamically Configurable Quality Assurance Module for Large Huntington's Disease Database Frontend]] (Dave)&lt;br /&gt;
* [[DWIConvert]] (Dave, Kent Williams)&lt;br /&gt;
* [[Enhance and update SPL atlas]] (Dave, Hans)&lt;br /&gt;
* [[Linear Mixed-effects shape model to explore Huntington's Disease Data]] (Manasi, Dave, Hans, Ross)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- If it applies, update the project count reported below and at the top of the page --&amp;gt;&lt;br /&gt;
7 projects&lt;br /&gt;
&lt;br /&gt;
===Traumatic Brain Injury===&lt;br /&gt;
* [[Visualization and quantification of peri-contusional white matter bundles in traumatic brain injury using diffusion tensor imaging]] (Andrei Irimia, Micah Chambers, Ron Kikinis, Jack van Horn)&lt;br /&gt;
* [[Clinically oriented assessment of local changes in the properties of white matter affected by intra-cranial hemorrhage]] (Andrei Irimia, Micah Chambers, Ron Kikinis, Jack van Horn)&lt;br /&gt;
* [[Validation and testing of 3D Slicer modules implementing the Utah segmentation algorithm for traumatic brain injury]] (Bo Wang, Marcel Prastawa, Andrei Irimia, Micah Chambers, Guido Gerig, Jack van Horn)&lt;br /&gt;
* [[Exploring multi-modal registration for improved longitudinal modeling of patient-specific 4D DTI data]] (Anuja Sharma, Bo Wang, Andrei Irimia, Micah Chambers, Guido Gerig, Jack van Horn)&lt;br /&gt;
* [[2013_Summer_Project_Week: A Portable Ultrasound Device for Intracranial Hemorrhage Detection|A Portable Ultrasound Device for Intracranial Hemorrhage Detection]] (Jason White, Vicki Noble, Kirby Vosburgh)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- If it applies, update the project count reported below and at the top of the page --&amp;gt;&lt;br /&gt;
5 projects&lt;br /&gt;
&lt;br /&gt;
===Atrial Fibrillation and Cardiac Image Analysis===&lt;br /&gt;
* [[2013_Summer_Project_Week:Fibrosis_analysis|Fibrosis distribution analysis]] (Yi Gao, LiangJia Zhu, Rob MacLeod, Josh Cates, Ron Kikinis, Allen Tannenbaum)&lt;br /&gt;
* [[2013_Summer_Project_Week:CARMA_workflow_wizard|Cardiac MRI Toolkit LA segmentation and enhancement quantification workflow wizard]] (Salma Bengali, Alan Morris, Brian Zenger, Josh Cates, Rob MacLeod)&lt;br /&gt;
* [[2013_Summer_Project_Week:CARMA_Documentataion|Cardiac MRI Toolkit Documentation Project]] (Salma Bengali, Alan Morris, Brian Zenger, Josh Cates, Rob MacLeod)&lt;br /&gt;
* [[2013_Summer_Project_Week:CARMA_Visualization|LA model visualization]] (Salma Bengali, Alan Morris, Josh Cates, Rob MacLeod)&lt;br /&gt;
* [[2013_Summer_Project_Week:CARMA_AutoLASeg|Cardiac MRI Toolkit: Automatic LA Segmentation with Graph Cuts Module]] (Salma Bengali, Alan Morris, Josh Cates, Gopal, Ross Whitaker, Rob MacLeod)&lt;br /&gt;
* [[2013_Summer_Project_Week:Sobolev_Segmenter|Medical Volume Segmentation Using Sobolev Active Contours]] (Arie Nakhmani, Yi Gao, LiangJia Zhu, Rob MacLeod, Josh Cates, Ron Kikinis, Allen Tannenbaum)&lt;br /&gt;
* [[2013_Summer_Project_Week:Left_Ventricle_Motion_Analysis_using_Tagged_MRI|Left Ventricle Motion Analysis using Tagged MRI]] (Yang Yu, Shaoting Zhang, Dimitris Metaxas)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- If it applies, update the project count reported below and at the top of the page --&amp;gt;&lt;br /&gt;
7 projects&lt;br /&gt;
&lt;br /&gt;
===Radiation Therapy===&lt;br /&gt;
* [[2013_Summer_Project_Week:Landmark_Registration| Landmark Registration]] (Steve, Nadya, Greg, Paolo, Erol)&lt;br /&gt;
* [[2013_Summer_Project_Week:Slicer_RT:_DICOM-RT_Export | SlicerRT: Dicom-RT Export]] (Greg Sharp, Kevin Wang, Csaba Pinter)&lt;br /&gt;
* [[2013_Summer_Project_Week:Proton_dose_calculation | Proton dose calculation]]  (Greg Sharp, Kevin Wang, Maxime Desplanques)&lt;br /&gt;
* [[2013_Summer_Project_Week:Deformable_registration_validation_toolkit | Deformable registration validation toolkit]] (Greg Sharp, Kevin Wang, Andrey Fedorov)&lt;br /&gt;
* [[2013_Summer_Project_Week:Deformable_transforms | Deformable transform handling in Transforms module]] (Csaba Pinter, Alex Yarmarkovich, Andras Lasso)&lt;br /&gt;
* [[2013_Summer_Project_Week:Brachy_HDR_Ultrasound | Creating DICOM series from ultrasound for prostate HDR brachytherapy]] (Adam Rankin)&lt;br /&gt;
* [[Analysis of different atlas-based segmentation techniques for parotid glands]] (Christian Wachinger, Karl Fritscher, Greg Sharp, Matthew Brennan)&lt;br /&gt;
* [[2013_Summer_Project_Week:Prostate_radiotherapy_DICOM_communication|DICOM communication between Slicer and Oncentra Prostate radiation therapy planning system]] (Andrey Fedorov, Csaba Pinter, Emily Neubauer-Sugar, Alireza Mehrtash)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- If it applies, update the project count reported below and at the top of the page --&amp;gt;&lt;br /&gt;
8 projects&lt;br /&gt;
&lt;br /&gt;
===IGT and Device Integration with Slicer===&lt;br /&gt;
* [[2013_Summer_Project_Week:TractAtlasCluster| Tract Atlas and Clustering for Neurosurgery]] (Lauren O'Donnell)&lt;br /&gt;
* [[2013_Summer_Project_Week:SlicerIGT_Extension| SlicerIGT extension]] (Tamas Ungi, Junichi Tokuda, Laurent Chauvin)&lt;br /&gt;
* [[2013_Summer_Project_Week:Ultrasound_Calibration| Ultrasound Calibration]] (Matthew Toews, Daniel Kostro, William Wells, Stephen Aylward, Isaiah Norton, Tamas Ungi)&lt;br /&gt;
* [[2013_Summer_Project_Week:Ultrasound_Needle_Detection| Ultrasound Needle Detection]] (Alireza Mehrtash, Daniel Kostro, Matthew Toews, Tamas Ungi, William Wells, Tina Kapur)&lt;br /&gt;
* [[2013_Summer_Project_Week:Liver_Trajectory_Management| Liver Trajectory Management]] (Laurent Chauvin, Junichi Tokuda)&lt;br /&gt;
* [[2013_Summer_Project_Week:4DUltrasound| 4D Ultrasound]] (Laurent Chauvin, Junichi Tokuda)&lt;br /&gt;
* [[2013_Summer_Project_Week:LabelMapStatistics| Label map statistics]] (Laurent Chauvin, Csaba Pinter)&lt;br /&gt;
* [[2013_Summer_Project_Week:PerkTutorExtension| Perk Tutor Extension]] (Matthew Holden, Tamas Ungi)&lt;br /&gt;
* [[2013_Summer_Project_Week:Open_source_electromagnetic_trackers_using_OpenIGTLink| Open-source electromagnetic trackers using OpenIGTLink]] (Peter Traneus Anderson, Tina Kapur, Sonia Pujol)&lt;br /&gt;
* [[2013_Summer_Project_Week:3D_prostate_segmentation_of_Ultrasound_image| Segmentation of Prostate Gland from 3D US for Prostate Interventions]] (Xu Li, Andriy Fedorov, Tina Kapur, William Wells)&lt;br /&gt;
* [[2013_Summer_Project_Week:3D_prostate_registration_of_Ultrasound_image_using_MRI| Registration of an MRI delineated image of the Prostate Gland ot a 3D US for Prostate Interventions]] (Demian Wassermann, Andriy Fedorov, Tina Kapur, William Wells)&lt;br /&gt;
* [[2013_Summer_Project_Week:ProstateBRP| MRI-guided robotic prostate interventinos]] (Junichi Tokuda, Greg Fischer, Nirav Patel, Nobuhiko Hata, Clare Tempnay)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- If it applies, update the project count reported below and at the top of the page --&amp;gt;&lt;br /&gt;
12 projects&lt;br /&gt;
&lt;br /&gt;
===Chronic Obstructive Pulmonary Disease===&lt;br /&gt;
* [[2013_Summer_Project_Week:Airway_Inspector_Porting | Porting Airway Inspector to Slicer 4]] (Raul San Jose, Demian Wassermann, Rola Harmouche)&lt;br /&gt;
* [[2013_Summer_Project_Week:MRML_Infrastructure_Airway_Inspector | Airway Inspector: Slicer Extension and MRML Infrastructure]] (Demian Wassermann, Raul San Jose, Rola Harmouche)&lt;br /&gt;
* [[2013_Summer_Project_Week:Nipype_CLI_Integration | Integration of Nipype with CLI modules in the Chest Imaging Platform Library ]] (Rola Harmouche,Demian Wassermann, Raul San Jose)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- If it applies, update the project count reported below and at the top of the page --&amp;gt;&lt;br /&gt;
3 projects&lt;br /&gt;
&lt;br /&gt;
=== '''Additional Collaborations'''===&lt;br /&gt;
* [[2013_Summer_Project_Week:Radnostics |Spine Segmentation &amp;amp; Osteoporosis Detection In CT Imaging Studies]] (Anthony Blumfield, Ron Kikinis)&lt;br /&gt;
* [[2013_Summer_Project_Week: Computer Assisted Surgery| Computer Assisted Reconstruction of Complex Bone Fractures]] (Karl Fritscher, Peter Karasev, Ivan Kolesov, Allen Tannenbaum, Ron Kikinis)&lt;br /&gt;
* [[2013_Summer_Project_Week:XNAT 3D Viewer| XNAT 3D Viewer]] (Amanda Hartung, Steve Pieper, Daniel Haehn)&lt;br /&gt;
* [[2013_Summer_Project_Week:kukarobot| Interface for the integration of a KUKA robot using OpenIGTLink]] (Sebastian Tauscher, Thomas Neff, Junichi Tokuda, Nobuhiko Hata)&lt;br /&gt;
* [[2013_Summer_Project_Week:Application of Statistical Shape Modeling to Robot Assisted Spine Surgery | Application of Statistical Shape Modeling to Robot Assisted Spine Surgery]] (Marine Clogenson)&lt;br /&gt;
* [[2013_Summer_Project_Week:Robot_Control| Robot Control]] (A.Vilchis, J-C. Avila-Vilchis, S.Pujol)&lt;br /&gt;
* [[2013_Summer_Project_Week:Epilepsy_Surgery|Identification of MRI Blurring in Temporal Lobe Epilepsy Surgery]] (Luiz Murta)&lt;br /&gt;
* [[2013_Summer_Project_Week:_Is_Neurosurgical_Rigid_Registration_Really_Rigid%3F| Is Neurosurgical Rigid Registration Really Rigid?]] (Athena)&lt;br /&gt;
* [[2013_Summer_Project_Week: Individualized Neuroimaging Content Analysis using 3D Slicer in Alzheimer's Disease| Individualized Neuroimaging Content Analysis using 3D Slicer]] (Sidong Liu, Weidong Cai, Sonia Pujol, Ron Kikinis)&lt;br /&gt;
* [[2013_Summer_Project_Week:CMFReg | Cranio-Maxillofacial Registration]] (Vinicius Boen)&lt;br /&gt;
* [[2013_Summer_Project_Week:DTIPipelineExtensions | DTI Analysis Pipeline as Slicer4 Extensions]] (Francois Budin)&lt;br /&gt;
*[[2013_Project_Week:WebbasedAnatomicalTeachingFrameworkSummer2013|Web-based anatomical teaching framework]] (Lilla Zollei, Nathaniel Reynolds, Daniel Haehn, Nicolas Rannou, Steve Pieper, Rudolph Pienaar)&lt;br /&gt;
* [[2013_Summer_Project_Week:Biomedical_Image_Computing_Teaching_Modules|3D Slicer based Biomedical image computing teaching modules]]   (A. Vilchis, J-C. Avila-Vilchis, S. Pujol)&lt;br /&gt;
* [[2013_Summer_Project_Week:Analyzing Breast Tumor Heterogeneity Using 3D Slicer|Analyzing Breast Tumor Heterogeneity Using 3D Slicer]] (Sneha Durgapal, Jayender Jagadeesan, Tobias Penzkofer, Vivek Narayan)&lt;br /&gt;
* [[2013_Summer_Project_Week:WMH Segmentation for Stroke|WMH Segmentation for Stroke]] (Adrian Dalca, Ramesh Sridharan, Kayhan Batmanghelich, Polina Golland)&lt;br /&gt;
* [[2013_Summer_Project_Week:WMQL Integration in Slicer|White Matter Query Language (WMQL) Integration in Slicer]] (Demian Wassermann, Carl-Fredrik Westin)&lt;br /&gt;
* [[2013_Summer_Project_Week:Documentation for Slicer 4.2 Data Loading and 3D Visualization|Documentation for Slicer 4.2 Data Loading and 3D Visualization]] (Parth Amin WIT, Matt Flynn WIT, Dr. Pujol HMS)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- If it applies, update the project count reported below and at the top of the page --&amp;gt;&lt;br /&gt;
16 projects&lt;br /&gt;
&lt;br /&gt;
==='''Infrastructure'''===&lt;br /&gt;
* [[2013_Summer_Project_Week:MarkupsModuleSummer2013| Markups/Annotations rewrite]] (Nicole Aucoin, Ron Kikinis)&lt;br /&gt;
* [[2013_Summer_Project_Week:Patient_hierarchy | Patient hierarchy]] (Csaba Pinter, Andras Lasso, Steve Pieper)&lt;br /&gt;
* [[2013_Summer_Project_Week:CLI_Improvements | CLI Improvements (hierarchy nodes, related nodes, roles)]] (Andras Lasso, Csaba Pinter, Jc, Steve, Jim)&lt;br /&gt;
* [[2013_Summer_Project_Week:CLI_Matlab | CLI module implementation in Matlab]] (Andras Lasso, Jc, Steve, Jim)&lt;br /&gt;
* [[2013_Summer_Project_Week:Sample_Data | Sample Data]] (Steve Pieper, Jim Miller, Bill Lorensen, Jc)&lt;br /&gt;
* [[ITK -VTK wrapper]] (Paolo Zaffino, Greg Sharp, Steve Pieper)&lt;br /&gt;
* [[2013_Summer_Project_Week:Optimizing start time of slicer| Optimizing start time of slicer]] (Jc, Steve)&lt;br /&gt;
* [[Common resampling and conversion utility functions in Slicer]] (Csaba Pinter, Steve Pieper, Hans, Kevin Wang)&lt;br /&gt;
* [[2013_Summer_Project_Week:CLI_modules_in_MeVisLab| Integrating CTK CLI modules into MeVisLab]] (Hans Meine, Steve, Jc)&lt;br /&gt;
* [[2013_Summer_Project_Week:SimpleITK_GUI| Common Usage GUI for SimpleITK]] (Brad Lowekamp, Hans Johnson, Dave Welch)&lt;br /&gt;
* [[2013_Summer_Project_Week:Extension_dependencies| Extension dependencies]] (Jc, Adam Rankin)&lt;br /&gt;
* [[2013_Summer_Project_Week:Parameter_heirarchy| Parameter (time) Hierarchy]] (Adam Rankin)&lt;br /&gt;
* [[2013_Summer_Project_Week:ITK_Shared_IO_Libraries| ITK Shared I/O Libraries]] (Brad Lowekamp)&lt;br /&gt;
* [[2013_Summer_Project_Week:Python_Embedding| Python_Embedding Library]] (Rui, Jim, Jc, Steve)&lt;br /&gt;
&amp;lt;!-- If it applies, update the project count reported below and at the top of the page --&amp;gt;&lt;br /&gt;
14 projects&lt;br /&gt;
&lt;br /&gt;
== '''Background''' ==&lt;br /&gt;
&lt;br /&gt;
We are pleased to announce the 17th PROJECT WEEK of hands-on research and development activity for applications in Neuroscience, Image-Guided Therapy and several additional areas of biomedical research that enable personalized medicine. Participants will engage in open source programming using the [[NA-MIC-Kit|NA-MIC Kit]], algorithm design, medical imaging sequence development, tracking experiments, and clinical application. The main goal of this event is to move forward the translational research deliverables of the sponsoring centers and their collaborators. Active and potential collaborators are encouraged and welcome to attend this event. This event will be set up to maximize informal interaction between participants.  If you would like to learn more about this event, please [http://public.kitware.com/cgi-bin/mailman/listinfo/na-mic-project-week click here to join our mailing list].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Active preparation begins on Thursday, April 25th at 3pm ET, with a kick-off teleconference.  Invitations to this call will be sent to members of the sponsoring communities, their collaborators, past attendees of the event, as well as any parties who have expressed an interest in working with these centers. The main goal of the kick-off call is to get an idea of which groups/projects will be active at the upcoming event, and to ensure that there is sufficient coverage for all. Subsequent teleconferences will allow for more focused discussions on individual projects and allow the hosts to finalize the project teams, consolidate any common components, and identify topics that should be discussed in breakout sessions. In the final days leading upto the meeting, all project teams will be asked to fill in a template page on this wiki that describes the objectives and plan of their projects.  &lt;br /&gt;
&lt;br /&gt;
The event itself will start off with a short presentation by each project team, driven using their previously created description, and will help all participants get acquainted with others who are doing similar work. In the rest of the week, about half the time will be spent in breakout discussions on topics of common interest of subsets of the attendees, and the other half will be spent in project teams, doing hands-on project work.  The hands-on activities will be done in 40-50 small teams of size 2-4, each with a mix of multi-disciplinary expertise.  To facilitate this work, a large room at MIT will be setup with several tables, with internet and power access, and each computer software development based team will gather on a table with their individual laptops, connect to the internet to download their software and data, and be able to work on their projects.  Teams working on projects that require the use of medical devices will proceed to Brigham and Women's Hospital and carry out their experiments there. On the last day of the event, a closing presentation session will be held in which each project team will present a summary of what they accomplished during the week.&lt;br /&gt;
&lt;br /&gt;
This event is part of the translational research efforts of [http://www.na-mic.org NA-MIC], [http://www.ncigt.org NCIGT], [http://nac.spl.harvard.edu/ NAC], [http://catalyst.harvard.edu/home.html Harvard Catalyst],  [http://www.cimit.org CIMIT], and OCAIRO.  It is an expansion of the NA-MIC Summer Project Week that has been held annually since 2005. It will be held every summer at MIT and Brigham and Womens Hospital in Boston, typically during the last full week of June, and in Salt Lake City in the winter, typically during the second week of January.  &lt;br /&gt;
&lt;br /&gt;
A summary of all past NA-MIC Project Events is available [[Project_Events#Past|here]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== '''Logistics''' ==&lt;br /&gt;
&lt;br /&gt;
*'''Dates:''' June 17-21, 2013.&lt;br /&gt;
*'''Location:''' [[MIT_Project_Week_Rooms| Stata Center / RLE MIT]]. &lt;br /&gt;
*'''REGISTRATION:'''  http://www.regonline.com/namic2013summerprojweek. Please note that  as you proceed to the checkout portion of the registration process, RegOnline will offer you a chance to opt into a free trial of ACTIVEAdvantage -- click on &amp;quot;No thanks&amp;quot; in order to finish your Project Week registration.&lt;br /&gt;
*'''Registration Fee:''' $300.&lt;br /&gt;
*'''Hotel:''' Similar to previous years, no rooms have been blocked in a particular hotel.&lt;br /&gt;
*'''Room sharing''': If interested, add your name to the list before May 27th. See [[2013_Summer_Project_Week/RoomSharing|here]]&lt;br /&gt;
&lt;br /&gt;
== '''Preparation''' ==&lt;br /&gt;
&lt;br /&gt;
# Please make sure that you are on the http://public.kitware.com/cgi-bin/mailman/listinfo/na-mic-project-week mailing list&lt;br /&gt;
# The NA-MIC engineering team will be discussing projects in a their [http://wiki.na-mic.org/Wiki/index.php/Engineering:TCON_2013 weekly teleconferences]. Participants from the above mailing list will be invited to join to discuss their projects, so please make sure you are on it!&lt;br /&gt;
# By 3pm ET on Thursday May 8, all participants to add a one line title of their project to #Projects&lt;br /&gt;
# By 3pm ET on Thursday June 6, all project leads to complete [[Project_Week/Template|Complete a templated wiki page for your project]]. Please do not edit the template page itself, but create a new page for your project and cut-and-paste the text from this template page.  If you have questions, please send an email to tkapur at bwh.harvard.edu.&lt;br /&gt;
# By 3pm on June 13: Create a directory for each project on the [[Engineering:SandBox|NAMIC Sandbox]] (Matt)&lt;br /&gt;
## Commit on each sandbox directory the code examples/snippets that represent our first guesses of appropriate methods. (Luis and Steve will help with this, as needed)&lt;br /&gt;
## Gather test images in any of the Data sharing resources we have (e.g. XNAT/MIDAS). These ones don't have to be many. At least three different cases, so we can get an idea of the modality-specific characteristics of these images. Put the IDs of these data sets on the wiki page. (the participants must do this.)&lt;br /&gt;
## Where possible, setup nightly tests on a separate Dashboard, where we will run the methods that we are experimenting with. The test should post result images and computation time. (Matt)&lt;br /&gt;
# Please note that by the time we get to the project event, we should be trying to close off a project milestone rather than starting to work on one...&lt;br /&gt;
# People doing Slicer related projects should come to project week with slicer built on your laptop.&lt;br /&gt;
## See the [http://www.slicer.org/slicerWiki/index.php/Documentation/4.0/Developers Developer Section of slicer.org] for information.&lt;br /&gt;
## Projects to develop extension modules should be built against the latest Slicer4 trunk.&lt;br /&gt;
&lt;br /&gt;
== '''Registrants''' ==&lt;br /&gt;
&lt;br /&gt;
Do not add your name to this list - it is maintained by the organizers based on your paid registration.  ([http://www.regonline.com/Register/Checkin.aspx?EventID=1233699  Please click here to register.])&lt;br /&gt;
&lt;br /&gt;
#Parth Amin, WIT, aminp@wit.edu&lt;br /&gt;
#Charles Anderson, BWH, canderson26@partners.org&lt;br /&gt;
#Peter Anderson, retired, traneus@verizon.net&lt;br /&gt;
#Nicole Aucoin, BWH, nicole@bwh.harvard.edu&lt;br /&gt;
#Juan Carlos Avila Vilchis, Univ del Estado de Mexico, jc.avila.vilchis@hotmail.com&lt;br /&gt;
#Kayhan Batmanghelich, MIT, kayhan@csail.mit.edu&lt;br /&gt;
#Salma Bengali, Univ UT, salma.bengali@carma.utah.edu&lt;br /&gt;
#Anthony Blumfield, Radnostics, Anthony.Blumfield@Radnostics.com&lt;br /&gt;
#Vinicius Boen, Univ Michigan, vboen@umich.edu&lt;br /&gt;
#Matthew Brennan, MIT, brennanm@mit.edu&lt;br /&gt;
#Francois Budin, NIRAL-UNC, fbudin@unc.edu&lt;br /&gt;
#Ivan Buzurovic, BWH/HMS, ibuzurovic@lroc.harvard.edu&lt;br /&gt;
#Josh Cates, Univ UT, cates@sci.utah.edu&lt;br /&gt;
#Micah Chambers, UCLA, micahcc@ucla.edu&lt;br /&gt;
#Laurent Chauvin, BWH - SPL, lchauvin@bwh.harvard.edu&lt;br /&gt;
#Marine Clogenson, Ecole Polytechnique Federale de Lausanne (Switzerland), marine.clogenson@epfl.ch&lt;br /&gt;
#Adrian Dalca, MIT, adalca@MIT.EDU&lt;br /&gt;
#Matthew D'Artista, BWH - SPL, mdartista7@gmail.com&lt;br /&gt;
#Manasi Datar, Univ UT-SCI Institute, datar@sci.utah.edu&lt;br /&gt;
#Sneha Durgapal, BWH, durgapalsneha@gmail.com&lt;br /&gt;
#Luping Fang, Zhejiang Univ of Technology (China), flp@zjut.edu.cn&lt;br /&gt;
#Andriy Fedorov, BWH, fedorov@bwh.harvard.edu&lt;br /&gt;
#Jean-Christophe Fillion-Robin, Kitware, jchris.fillionr@kitware.com&lt;br /&gt;
#Gregory Fischer, WPI, gfischer@wpi.edu&lt;br /&gt;
#Barton Fiske, zSpace Inc, bfiske@zspace.com&lt;br /&gt;
#Matthew Flynn, WIT, flynnm3@wit.edu&lt;br /&gt;
#Karl Fritscher, MGH, kfritscher@gmail.com&lt;br /&gt;
#Yi Gao, Univ AL Birmingham, gaoyi.cn@gmail.com&lt;br /&gt;
#Maria Gonzalez-Puente, WIT, gonzalezpuentem@wit.edu&lt;br /&gt;
#Daniel Haehn, Boston Childrens Hospital, daniel.haehn@childrens.harvard.edu&lt;br /&gt;
#Michael Halle, BWH-SPL, mhalle@bwh.harvard.edu&lt;br /&gt;
#Rola Harmouche, BWH, rharmo@bwh.harvard.edu&lt;br /&gt;
#Amanda Hartung, Rochester Inst of Tech, amh1646@rit.edu&lt;br /&gt;
#Nobuhiko Hata, BWH, hata@bwh.harvard.edu&lt;br /&gt;
#Nicholas Herlambang, AZE Technology Inc, nicholas.herlambang@azetech.com&lt;br /&gt;
#Matthew Holden, Queen's Univ (Canada), mholden8@cs.queensu.ca&lt;br /&gt;
#Andrei Irimia, UCLA, andrei.irimia@loni.ucla.edu&lt;br /&gt;
#Jayender Jagadeesan, BWH-SPL, jayender@bwh.harvard.edu&lt;br /&gt;
#Hans Johnson, Univ Iowa, hans-johnson@uiowa.edu&lt;br /&gt;
#Tina Kapur, BWH/HMS, tkapur@bwh.harvard.edu&lt;br /&gt;
#Alex Kikinis, BWH, alexkikinis@gmail.com&lt;br /&gt;
#Ron Kikinis, HMS, kikinis@bwh.harvard.edu&lt;br /&gt;
#Nils Klarlund, IEEE, klarlund@ieee.org&lt;br /&gt;
#Daniel Kostro, BWH, dkostro@bwh.harvard.edu&lt;br /&gt;
#Andras Lasso, Queen's Univ (Canada), lasso@cs.queensu.ca&lt;br /&gt;
#Rui Li, GE Global Research, li.rui@ge.com&lt;br /&gt;
#Xu Li, BWH, lixu0103@gmail.com&lt;br /&gt;
#Lichen Liang, MGH, lichenl@nmr.mgh.harvard.edu&lt;br /&gt;
#Sidong Liu, Univ Sydney (Australia), sliu7418@uni.sydney.edu.au&lt;br /&gt;
#William Lorensen, Bill's Basement, bill.lorensen@gmail.com &lt;br /&gt;
#Bradley Lowekamp, Medical Science &amp;amp; Computing Inc, bradley.lowekamp@nih.gov&lt;br /&gt;
#Athena Lyons, Univ Western Australia, 20359511@student.uwa.edu.au&lt;br /&gt;
#Nikos Makris, MGH, nikos@nmr.mgh.harvard.edu&lt;br /&gt;
#Katie Mastrogiacomo, BWH - SPL, kmast@bwh.harvard.edu&lt;br /&gt;
#Alireza Mehrtash, BWH - SPL, mehrtash@bwh.harvard.edu&lt;br /&gt;
#Hans Meine, Fraunhofer MEVIS (Germany), hans.meine@mevis.fraunhofer.de&lt;br /&gt;
#Jim Miller, GE Global Research, millerjv@ge.com&lt;br /&gt;
#Luis Murta, Univ Sao Paulo (Brazil), lomurta@gmail.com&lt;br /&gt;
#Arie Nakhmani, Univ AL Birmingham, anry@uab.edu&lt;br /&gt;
#Isaiah Norton, BWH, inorton@bwh.harvard.edu&lt;br /&gt;
#Lauren O'Donnell, BWH, odonnell@bwh.harvard.edu&lt;br /&gt;
#Dirk Padfield, GE Global Research, padfield@research.ge.com&lt;br /&gt;
#Jian Pan, Zhejiang Univ of Technology (China), pj@zjut.edu.cn&lt;br /&gt;
#George Papadimitriou, MGH, georgep@nmr.mgh.harvard.edu&lt;br /&gt;
#Nirav Patel, WPI, napatel@wpi.edu&lt;br /&gt;
#Tobias Penzkofer, BWH - SPL, pt@bwh.harvard.edu&lt;br /&gt;
#Rudolph Pienaar, Boston Childrens Hospital, Rudolph.Pienaar@childrens.harvard.edu&lt;br /&gt;
#Steve Pieper, Isomics Inc, pieper@isomics.com&lt;br /&gt;
#Csaba Pinter, Queen's Univ (Canada), pinter@cs.queensu.ca&lt;br /&gt;
#Sonia Pujol, HMS, spujol@bwh.harvard.edu&lt;br /&gt;
#Adam Rankin, Queen's Univ (Canada), rankin@cs.queensu.ca&lt;br /&gt;
#Nathaniel Reynolds, MGH, reynolds@nmr.mgh.harvard.edu&lt;br /&gt;
#Raul San Jose, BWH, rjosest@bwh.harvard.edu&lt;br /&gt;
#Peter Savadjiev, BWH, petersv@bwh.harvard.edu&lt;br /&gt;
#Anuja Sharma, Univ UT-SCI Institute, anuja@cs.utah.edu&lt;br /&gt;
#Greg Sharp, MGH, gcsharp@partners.org&lt;br /&gt;
#Nadya Shusharina, MGH, nshusharina@partners.org&lt;br /&gt;
#Sebastian Tauscher, Leibniz Univ Hannover (Germany), sebastian.tauscher@imes.uni-hannover.de&lt;br /&gt;
#Clare Tempany, BWH, ctempanyafdhal@partners.org&lt;br /&gt;
#Cyrill von Tiesenhausen, KUKA Laboratories (Germany), cyrill.tiesenhausen@kuka.com&lt;br /&gt;
#Gaurie Tilak, BWH, gaurie_tilak@hms.harvard.edu&lt;br /&gt;
#Matthew Toews, BWH/HMS, mt@bwh.harvard.edu&lt;br /&gt;
#Junichi Tokuda, BWH, tokuda@bwh.harvard.edu&lt;br /&gt;
#Tamas Ungi, Queen's Univ (Canada), ungi@cs.queensu.ca&lt;br /&gt;
#Adriana Vilchis González, Univ del Estado de Mexico, hvigady@hotmail.com&lt;br /&gt;
#Kirby Vosburgh, BWH, kirby@bwh.harvard.edu&lt;br /&gt;
#Christian Wachinger, MIT, wachinge@mit.edu&lt;br /&gt;
#Bo Wang, Univ UT-SCI Institute, bowang@sci.utah.edu&lt;br /&gt;
#Demian Wassermann, BWH, demian@bwh.harvard.edu&lt;br /&gt;
#David Welch, Univ Iowa, david-welch@uiowa.edu&lt;br /&gt;
#William Wells, BWH/HMS, sw@bwh.harvard.edu&lt;br /&gt;
#Phillip White, BWH/HMS, white@bwh.harvard.edu&lt;br /&gt;
#Alex Yarmarkovich, Isomics Inc, alexy@bwh.harvard.edu&lt;br /&gt;
#Kitaro Yoshimitsu, BWH, kitarof1@bwh.harvard.edu&lt;br /&gt;
#Yang Yu, Rutgers Univ, yyu@cs.rutgers.edu&lt;br /&gt;
#Paolo Zaffino, Univ Magna Graecia of Catanzaro (Italy), p.zaffino@unicz.it&lt;br /&gt;
#Lilla Zollei, MGH, lzollei@nmr.mgh.harvard.edu&lt;/div&gt;</summary>
		<author><name>Grclirui</name></author>
		
	</entry>
	<entry>
		<id>https://www.na-mic.org/w/index.php?title=2013_Summer_Project_Week&amp;diff=82068</id>
		<title>2013 Summer Project Week</title>
		<link rel="alternate" type="text/html" href="https://www.na-mic.org/w/index.php?title=2013_Summer_Project_Week&amp;diff=82068"/>
		<updated>2013-06-18T03:09:22Z</updated>

		<summary type="html">&lt;p&gt;Grclirui: /* Infrastructure */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt; Back to [[Events]]&lt;br /&gt;
[[image:PW-MIT2013.png|300px]]&lt;br /&gt;
&lt;br /&gt;
Dates: June 17-21, 2013.&lt;br /&gt;
&lt;br /&gt;
Location: MIT, Cambridge, MA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Agenda==&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-style=&amp;quot;background:#b0d5e6;color:#02186f&amp;quot; &lt;br /&gt;
!style=&amp;quot;width:10%&amp;quot; |Time&lt;br /&gt;
!style=&amp;quot;width:18%&amp;quot; |Monday, June 17&lt;br /&gt;
!style=&amp;quot;width:18%&amp;quot; |Tuesday, June 18&lt;br /&gt;
!style=&amp;quot;width:18%&amp;quot; |Wednesday, June 19&lt;br /&gt;
!style=&amp;quot;width:18%&amp;quot; |Thursday, June 20&lt;br /&gt;
!style=&amp;quot;width:18%&amp;quot; |Friday, June 21&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|bgcolor=&amp;quot;#dbdbdb&amp;quot;|'''Project Presentations'''&lt;br /&gt;
|bgcolor=&amp;quot;#6494ec&amp;quot;|'''NA-MIC Update Day'''&lt;br /&gt;
|&lt;br /&gt;
|bgcolor=&amp;quot;#88aaae&amp;quot;|'''IGT and RT Day'''&lt;br /&gt;
|bgcolor=&amp;quot;#faedb6&amp;quot;|'''Reporting Day'''&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;#ffffdd&amp;quot;|'''8:30am'''&lt;br /&gt;
|&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Breakfast&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Breakfast&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Breakfast&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Breakfast&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;#ffffdd&amp;quot;|'''9am-12pm'''&lt;br /&gt;
|&lt;br /&gt;
|'''10-11am''' [[2013 Project Week Breakout Session:Slicer4Python|Slicer4 Python Modules, Testing, Q&amp;amp;A]] (Steve Pieper) &amp;lt;br&amp;gt;&lt;br /&gt;
[[MIT_Project_Week_Rooms|Grier Room (Left)]] &lt;br /&gt;
|'''9:30-11pm: &amp;lt;font color=&amp;quot;#4020ff&amp;quot;&amp;gt;Breakout Session:'''&amp;lt;/font&amp;gt;&amp;lt;br&amp;gt; [[2013 Project Week Breakout Session: SimpleITK|Slicer and SimpleITK]] (Hans Johnson, Brad Lowekamp)&lt;br /&gt;
[[MIT_Project_Week_Rooms#32-D507|32-D507]]&lt;br /&gt;
|'''10am-12pm: &amp;lt;font color=&amp;quot;#4020ff&amp;quot;&amp;gt;Breakout Session:'''&amp;lt;/font&amp;gt;&amp;lt;br&amp;gt;[[2013 Project Week Breakout Session: IGT|Image-Guided Therapy]] (Tina Kapur)&lt;br /&gt;
[[MIT_Project_Week_Rooms#32-D407|32-D407]]&lt;br /&gt;
|'''10am-12pm:''' [[#Projects|Project Progress Updates]]&lt;br /&gt;
[[MIT_Project_Week_Rooms#Grier_34-401_AB|Grier Rooms]]&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;#ffffdd&amp;quot;|'''12pm-1pm'''&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Lunch&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Lunch&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Lunch&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Lunch&lt;br /&gt;
|bgcolor=&amp;quot;#ffffaa&amp;quot;|Lunch boxes; Adjourn by 1:30pm&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;#ffffdd&amp;quot;|'''1pm-5:30pm'''&lt;br /&gt;
|'''1-1:05pm: &amp;lt;font color=&amp;quot;#503020&amp;quot;&amp;gt;Ron Kikinis: Welcome&amp;lt;/font&amp;gt;'''&lt;br /&gt;
[[MIT_Project_Week_Rooms#Grier_34-401_AB|Grier Rooms]]&lt;br /&gt;
&amp;lt;br&amp;gt;----------------------------------------&amp;lt;br&amp;gt;&lt;br /&gt;
'''1:05-3:30pm:''' [[#Projects|Project Introductions]] (all Project Leads)&lt;br /&gt;
[[MIT_Project_Week_Rooms#Grier_34-401_AB|Grier Rooms]]&lt;br /&gt;
&amp;lt;br&amp;gt;----------------------------------------&amp;lt;br&amp;gt;&lt;br /&gt;
'''3:30-4:30pm''' [[2013 Summer Project Week Breakout Session:SlicerExtensions|Slicer4 Extensions]] (Jean-Christophe Fillion-Robin)  &amp;lt;br&amp;gt;&lt;br /&gt;
[[MIT_Project_Week_Rooms#Grier_34-401_AB|Grier Room (Left)]]&lt;br /&gt;
|'''1-3pm:''' [[Renewal-06-2013|NA-MIC Renewal]] &amp;lt;br&amp;gt;PIs &amp;lt;br&amp;gt;Closed Door Session with Ron&lt;br /&gt;
[[MIT_Project_Week_Rooms#32-D407|32-262]] &lt;br /&gt;
&amp;lt;br&amp;gt;----------------------------------------&amp;lt;br&amp;gt;&lt;br /&gt;
'''3-4pm:''' [[2013_Tutorial_Contest|Tutorial Contest Presentations]] &amp;lt;br&amp;gt;&lt;br /&gt;
[[MIT_Project_Week_Rooms#Grier_34-401_AB|Grier Rooms]]&lt;br /&gt;
|'''12:45-1pm:''' [[Events:TutorialContestJune2013|Tutorial Contest Winner Announcement]]&lt;br /&gt;
[[MIT_Project_Week_Rooms#Grier_34-401_AB|Grier Rooms]]&lt;br /&gt;
|&amp;lt;br&amp;gt;----------------------------------------&amp;lt;br&amp;gt;'''3-5:30pm: &amp;lt;font color=&amp;quot;#4020ff&amp;quot;&amp;gt;Breakout Session:'''&amp;lt;/font&amp;gt;&amp;lt;br&amp;gt; [[2013 Summer Project Week Breakout Session:RT|Radiation Therapy]] (Greg, Csaba)&lt;br /&gt;
[[MIT_Project_Week_Rooms#32-D407|32-D407]]&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;#ffffdd&amp;quot;|'''5:30pm'''&lt;br /&gt;
|bgcolor=&amp;quot;#f0e68b&amp;quot;|Adjourn for the day&lt;br /&gt;
|bgcolor=&amp;quot;#f0e68b&amp;quot;|Adjourn for the day&lt;br /&gt;
|bgcolor=&amp;quot;#f0e68b&amp;quot;|Adjourn for the day&lt;br /&gt;
|bgcolor=&amp;quot;#f0e68b&amp;quot;|Adjourn for the day&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== '''Projects''' ==&lt;br /&gt;
&lt;br /&gt;
Please use [http://wiki.na-mic.org/Wiki/index.php/Project_Week/Template this template] to create wiki pages for your project. Then link the page here with a list of key personnel. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Some Stats==&lt;br /&gt;
71 Projects, 97 Attendees.  First time attendees 25.&lt;br /&gt;
&lt;br /&gt;
===Huntington's Disease===&lt;br /&gt;
* [[Learn and Apply FiberBundleLabelSelect for Huntington's Disease Data]] (Hans, Demian)&lt;br /&gt;
* [[Investigate Potential Tensor Computation Improvement via Positive Semi-Definite (PSD) Tensor Estimation]] (Hans)&lt;br /&gt;
* [[2013_Summer_Project_Week:SinglePrecisionRegistrationITK| Single Precision Registration]] (Hans, Brad Lowekamp, Dave, Ali Ghayoor)&lt;br /&gt;
* [[Dynamically Configurable Quality Assurance Module for Large Huntington's Disease Database Frontend]] (Dave)&lt;br /&gt;
* [[DWIConvert]] (Dave, Kent Williams)&lt;br /&gt;
* [[Enhance and update SPL atlas]] (Dave, Hans)&lt;br /&gt;
* [[Linear Mixed-effects shape model to explore Huntington's Disease Data]] (Manasi, Dave, Hans, Ross)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- If it applies, update the project count reported below and at the top of the page --&amp;gt;&lt;br /&gt;
7 projects&lt;br /&gt;
&lt;br /&gt;
===Traumatic Brain Injury===&lt;br /&gt;
* [[Visualization and quantification of peri-contusional white matter bundles in traumatic brain injury using diffusion tensor imaging]] (Andrei Irimia, Micah Chambers, Ron Kikinis, Jack van Horn)&lt;br /&gt;
* [[Clinically oriented assessment of local changes in the properties of white matter affected by intra-cranial hemorrhage]] (Andrei Irimia, Micah Chambers, Ron Kikinis, Jack van Horn)&lt;br /&gt;
* [[Validation and testing of 3D Slicer modules implementing the Utah segmentation algorithm for traumatic brain injury]] (Bo Wang, Marcel Prastawa, Andrei Irimia, Micah Chambers, Guido Gerig, Jack van Horn)&lt;br /&gt;
* [[Exploring multi-modal registration for improved longitudinal modeling of patient-specific 4D DTI data]] (Anuja Sharma, Bo Wang, Andrei Irimia, Micah Chambers, Guido Gerig, Jack van Horn)&lt;br /&gt;
* [[2013_Summer_Project_Week: A Portable Ultrasound Device for Intracranial Hemorrhage Detection|A Portable Ultrasound Device for Intracranial Hemorrhage Detection]] (Jason White, Vicki Noble, Kirby Vosburgh)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- If it applies, update the project count reported below and at the top of the page --&amp;gt;&lt;br /&gt;
5 projects&lt;br /&gt;
&lt;br /&gt;
===Atrial Fibrillation and Cardiac Image Analysis===&lt;br /&gt;
* [[2013_Summer_Project_Week:Fibrosis_analysis|Fibrosis distribution analysis]] (Yi Gao, LiangJia Zhu, Rob MacLeod, Josh Cates, Ron Kikinis, Allen Tannenbaum)&lt;br /&gt;
* [[2013_Summer_Project_Week:CARMA_workflow_wizard|Cardiac MRI Toolkit LA segmentation and enhancement quantification workflow wizard]] (Salma Bengali, Alan Morris, Brian Zenger, Josh Cates, Rob MacLeod)&lt;br /&gt;
* [[2013_Summer_Project_Week:CARMA_Documentataion|Cardiac MRI Toolkit Documentation Project]] (Salma Bengali, Alan Morris, Brian Zenger, Josh Cates, Rob MacLeod)&lt;br /&gt;
* [[2013_Summer_Project_Week:CARMA_Visualization|LA model visualization]] (Salma Bengali, Alan Morris, Josh Cates, Rob MacLeod)&lt;br /&gt;
* [[2013_Summer_Project_Week:CARMA_AutoLASeg|Cardiac MRI Toolkit: Automatic LA Segmentation with Graph Cuts Module]] (Salma Bengali, Alan Morris, Josh Cates, Gopal, Ross Whitaker, Rob MacLeod)&lt;br /&gt;
* [[2013_Summer_Project_Week:Sobolev_Segmenter|Medical Volume Segmentation Using Sobolev Active Contours]] (Arie Nakhmani, Yi Gao, LiangJia Zhu, Rob MacLeod, Josh Cates, Ron Kikinis, Allen Tannenbaum)&lt;br /&gt;
* [[2013_Summer_Project_Week:Left_Ventricle_Motion_Analysis_using_Tagged_MRI|Left Ventricle Motion Analysis using Tagged MRI]] (Yang Yu, Shaoting Zhang, Dimitris Metaxas)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- If it applies, update the project count reported below and at the top of the page --&amp;gt;&lt;br /&gt;
7 projects&lt;br /&gt;
&lt;br /&gt;
===Radiation Therapy===&lt;br /&gt;
* [[2013_Summer_Project_Week:Landmark_Registration| Landmark Registration]] (Steve, Nadya, Greg, Paolo, Erol)&lt;br /&gt;
* [[2013_Summer_Project_Week:Slicer_RT:_DICOM-RT_Export | SlicerRT: Dicom-RT Export]] (Greg Sharp, Kevin Wang, Csaba Pinter)&lt;br /&gt;
* [[2013_Summer_Project_Week:Proton_dose_calculation | Proton dose calculation]]  (Greg Sharp, Kevin Wang, Maxime Desplanques)&lt;br /&gt;
* [[2013_Summer_Project_Week:Deformable_registration_validation_toolkit | Deformable registration validation toolkit]] (Greg Sharp, Kevin Wang, Andrey Fedorov)&lt;br /&gt;
* [[2013_Summer_Project_Week:Deformable_transforms | Deformable transform handling in Transforms module]] (Csaba Pinter, Alex Yarmarkovich, Andras Lasso)&lt;br /&gt;
* [[2013_Summer_Project_Week:Brachy_HDR_Ultrasound | Creating DICOM series from ultrasound for prostate HDR brachytherapy]] (Adam Rankin)&lt;br /&gt;
* [[Analysis of different atlas-based segmentation techniques for parotid glands]] (Christian Wachinger, Karl Fritscher, Greg Sharp, Matthew Brennan)&lt;br /&gt;
* [[2013_Summer_Project_Week:Prostate_radiotherapy_DICOM_communication|DICOM communication between Slicer and Oncentra Prostate radiation therapy planning system]] (Andrey Fedorov, Csaba Pinter, Emily Neubauer-Sugar, Alireza Mehrtash)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- If it applies, update the project count reported below and at the top of the page --&amp;gt;&lt;br /&gt;
8 projects&lt;br /&gt;
&lt;br /&gt;
===IGT and Device Integration with Slicer===&lt;br /&gt;
* [[2013_Summer_Project_Week:TractAtlasCluster| Tract Atlas and Clustering for Neurosurgery]] (Lauren O'Donnell)&lt;br /&gt;
* [[2013_Summer_Project_Week:SlicerIGT_Extension| SlicerIGT extension]] (Tamas Ungi, Junichi Tokuda, Laurent Chauvin)&lt;br /&gt;
* [[2013_Summer_Project_Week:Ultrasound_Calibration| Ultrasound Calibration]] (Matthew Toews, Daniel Kostro, William Wells, Stephen Aylward, Isaiah Norton, Tamas Ungi)&lt;br /&gt;
* [[2013_Summer_Project_Week:Ultrasound_Needle_Detection| Ultrasound Needle Detection]] (Alireza Mehrtash, Daniel Kostro, Matthew Toews, Tamas Ungi, William Wells, Tina Kapur)&lt;br /&gt;
* [[2013_Summer_Project_Week:Liver_Trajectory_Management| Liver Trajectory Management]] (Laurent Chauvin, Junichi Tokuda)&lt;br /&gt;
* [[2013_Summer_Project_Week:4DUltrasound| 4D Ultrasound]] (Laurent Chauvin, Junichi Tokuda)&lt;br /&gt;
* [[2013_Summer_Project_Week:LabelMapStatistics| Label map statistics]] (Laurent Chauvin, Csaba Pinter)&lt;br /&gt;
* [[2013_Summer_Project_Week:PerkTutorExtension| Perk Tutor Extension]] (Matthew Holden, Tamas Ungi)&lt;br /&gt;
* [[2013_Summer_Project_Week:Open_source_electromagnetic_trackers_using_OpenIGTLink| Open-source electromagnetic trackers using OpenIGTLink]] (Peter Traneus Anderson, Tina Kapur, Sonia Pujol)&lt;br /&gt;
* [[2013_Summer_Project_Week:3D_prostate_segmentation_of_Ultrasound_image| Segmentation of Prostate Gland from 3D US for Prostate Interventions]] (Xu Li, Andriy Fedorov, Tina Kapur, William Wells)&lt;br /&gt;
* [[2013_Summer_Project_Week:3D_prostate_registration_of_Ultrasound_image_using_MRI| Registration of an MRI delineated image of the Prostate Gland ot a 3D US for Prostate Interventions]] (Demian Wassermann, Andriy Fedorov, Tina Kapur, William Wells)&lt;br /&gt;
* [[2013_Summer_Project_Week:ProstateBRP| MRI-guided robotic prostate interventinos]] (Junichi Tokuda, Greg Fischer, Nirav Patel, Nobuhiko Hata, Clare Tempnay)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- If it applies, update the project count reported below and at the top of the page --&amp;gt;&lt;br /&gt;
12 projects&lt;br /&gt;
&lt;br /&gt;
===Chronic Obstructive Pulmonary Disease===&lt;br /&gt;
* [[2013_Summer_Project_Week:Airway_Inspector_Porting | Porting Airway Inspector to Slicer 4]] (Raul San Jose, Demian Wassermann, Rola Harmouche)&lt;br /&gt;
* [[2013_Summer_Project_Week:MRML_Infrastructure_Airway_Inspector | Airway Inspector: Slicer Extension and MRML Infrastructure]] (Demian Wassermann, Raul San Jose, Rola Harmouche)&lt;br /&gt;
* [[2013_Summer_Project_Week:Nipype_CLI_Integration | Integration of Nipype with CLI modules in the Chest Imaging Platform Library ]] (Rola Harmouche,Demian Wassermann, Raul San Jose)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- If it applies, update the project count reported below and at the top of the page --&amp;gt;&lt;br /&gt;
3 projects&lt;br /&gt;
&lt;br /&gt;
=== '''Additional Collaborations'''===&lt;br /&gt;
* [[2013_Summer_Project_Week:Radnostics |Spine Segmentation &amp;amp; Osteoporosis Detection In CT Imaging Studies]] (Anthony Blumfield, Ron Kikinis)&lt;br /&gt;
* [[2013_Summer_Project_Week: Computer Assisted Surgery| Computer Assisted Reconstruction of Complex Bone Fractures]] (Karl Fritscher, Peter Karasev, Ivan Kolesov, Allen Tannenbaum, Ron Kikinis)&lt;br /&gt;
* [[2013_Summer_Project_Week:XNAT 3D Viewer| XNAT 3D Viewer]] (Amanda Hartung, Steve Pieper, Daniel Haehn)&lt;br /&gt;
* [[2013_Summer_Project_Week:kukarobot| Interface for the integration of a KUKA robot using OpenIGTLink]] (Sebastian Tauscher, Thomas Neff, Junichi Tokuda, Nobuhiko Hata)&lt;br /&gt;
* [[2013_Summer_Project_Week:Application of Statistical Shape Modeling to Robot Assisted Spine Surgery | Application of Statistical Shape Modeling to Robot Assisted Spine Surgery]] (Marine Clogenson)&lt;br /&gt;
* [[2013_Summer_Project_Week:Robot_Control| Robot Control]] (A.Vilchis, J-C. Avila-Vilchis, S.Pujol)&lt;br /&gt;
* [[2013_Summer_Project_Week:Epilepsy_Surgery|Identification of MRI Blurring in Temporal Lobe Epilepsy Surgery]] (Luiz Murta)&lt;br /&gt;
* [[2013_Summer_Project_Week:_Is_Neurosurgical_Rigid_Registration_Really_Rigid%3F| Is Neurosurgical Rigid Registration Really Rigid?]] (Athena)&lt;br /&gt;
* [[2013_Summer_Project_Week: Individualized Neuroimaging Content Analysis using 3D Slicer in Alzheimer's Disease| Individualized Neuroimaging Content Analysis using 3D Slicer]] (Sidong Liu, Weidong Cai, Sonia Pujol, Ron Kikinis)&lt;br /&gt;
* [[2013_Summer_Project_Week:CMFReg | Cranio-Maxillofacial Registration]] (Vinicius Boen)&lt;br /&gt;
* [[2013_Summer_Project_Week:DTIPipelineExtensions | DTI Analysis Pipeline as Slicer4 Extensions]] (Francois Budin)&lt;br /&gt;
*[[2013_Project_Week:WebbasedAnatomicalTeachingFrameworkSummer2013|Web-based anatomical teaching framework]] (Lilla Zollei, Nathaniel Reynolds, Daniel Haehn, Nicolas Rannou, Steve Pieper, Rudolph Pienaar)&lt;br /&gt;
* [[2013_Summer_Project_Week:Biomedical_Image_Computing_Teaching_Modules|3D Slicer based Biomedical image computing teaching modules]]   (A. Vilchis, J-C. Avila-Vilchis, S. Pujol)&lt;br /&gt;
* [[2013_Summer_Project_Week:Analyzing Breast Tumor Heterogeneity Using 3D Slicer|Analyzing Breast Tumor Heterogeneity Using 3D Slicer]] (Sneha Durgapal, Jayender Jagadeesan, Tobias Penzkofer, Vivek Narayan)&lt;br /&gt;
* [[2013_Summer_Project_Week:WMH Segmentation for Stroke|WMH Segmentation for Stroke]] (Adrian Dalca, Ramesh Sridharan, Kayhan Batmanghelich, Polina Golland)&lt;br /&gt;
* [[2013_Summer_Project_Week:WMQL Integration in Slicer|White Matter Query Language (WMQL) Integration in Slicer]] (Demian Wassermann, Carl-Fredrik Westin)&lt;br /&gt;
* [[2013_Summer_Project_Week:Documentation for Slicer 4.2 Data Loading and 3D Visualization|Documentation for Slicer 4.2 Data Loading and 3D Visualization]] (Parth Amin WIT, Matt Flynn WIT, Dr. Pujol HMS)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- If it applies, update the project count reported below and at the top of the page --&amp;gt;&lt;br /&gt;
16 projects&lt;br /&gt;
&lt;br /&gt;
==='''Infrastructure'''===&lt;br /&gt;
* [[2013_Summer_Project_Week:MarkupsModuleSummer2013| Markups/Annotations rewrite]] (Nicole Aucoin, Ron Kikinis)&lt;br /&gt;
* [[2013_Summer_Project_Week:Patient_hierarchy | Patient hierarchy]] (Csaba Pinter, Andras Lasso, Steve Pieper)&lt;br /&gt;
* [[2013_Summer_Project_Week:CLI_Improvements | CLI Improvements (hierarchy nodes, related nodes, roles)]] (Andras Lasso, Csaba Pinter, Jc, Steve, Jim)&lt;br /&gt;
* [[2013_Summer_Project_Week:CLI_Matlab | CLI module implementation in Matlab]] (Andras Lasso, Jc, Steve, Jim)&lt;br /&gt;
* [[2013_Summer_Project_Week:Sample_Data | Sample Data]] (Steve Pieper, Jim Miller, Bill Lorensen, Jc)&lt;br /&gt;
* [[ITK -VTK wrapper]] (Paolo Zaffino, Greg Sharp, Steve Pieper)&lt;br /&gt;
* [[2013_Summer_Project_Week:Optimizing start time of slicer| Optimizing start time of slicer]] (Jc, Steve)&lt;br /&gt;
* [[Common resampling and conversion utility functions in Slicer]] (Csaba Pinter, Steve Pieper, Hans, Kevin Wang)&lt;br /&gt;
* [[2013_Summer_Project_Week:CLI_modules_in_MeVisLab| Integrating CTK CLI modules into MeVisLab]] (Hans Meine, Steve, Jc)&lt;br /&gt;
* [[2013_Summer_Project_Week:SimpleITK_GUI| Common Usage GUI for SimpleITK]] (Brad Lowekamp, Hans Johnson, Dave Welch)&lt;br /&gt;
* [[2013_Summer_Project_Week:Extension_dependencies| Extension dependencies]] (Jc, Adam Rankin)&lt;br /&gt;
* [[2013_Summer_Project_Week:Parameter_heirarchy| Parameter (time) Hierarchy]] (Adam Rankin)&lt;br /&gt;
* [[2013_Summer_Project_Week:ITK_Shared_IO_Libraries| ITK Shared I/O Libraries]] (Brad Lowekamp)&lt;br /&gt;
* [[2013_Summer_Project_Week:Python_Embedding| Python_Embedding Library]] (Rui, Jim, Jc, Steve)&lt;br /&gt;
&amp;lt;!-- If it applies, update the project count reported below and at the top of the page --&amp;gt;&lt;br /&gt;
13 projects&lt;br /&gt;
&lt;br /&gt;
== '''Background''' ==&lt;br /&gt;
&lt;br /&gt;
We are pleased to announce the 17th PROJECT WEEK of hands-on research and development activity for applications in Neuroscience, Image-Guided Therapy and several additional areas of biomedical research that enable personalized medicine. Participants will engage in open source programming using the [[NA-MIC-Kit|NA-MIC Kit]], algorithm design, medical imaging sequence development, tracking experiments, and clinical application. The main goal of this event is to move forward the translational research deliverables of the sponsoring centers and their collaborators. Active and potential collaborators are encouraged and welcome to attend this event. This event will be set up to maximize informal interaction between participants.  If you would like to learn more about this event, please [http://public.kitware.com/cgi-bin/mailman/listinfo/na-mic-project-week click here to join our mailing list].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Active preparation begins on Thursday, April 25th at 3pm ET, with a kick-off teleconference.  Invitations to this call will be sent to members of the sponsoring communities, their collaborators, past attendees of the event, as well as any parties who have expressed an interest in working with these centers. The main goal of the kick-off call is to get an idea of which groups/projects will be active at the upcoming event, and to ensure that there is sufficient coverage for all. Subsequent teleconferences will allow for more focused discussions on individual projects and allow the hosts to finalize the project teams, consolidate any common components, and identify topics that should be discussed in breakout sessions. In the final days leading upto the meeting, all project teams will be asked to fill in a template page on this wiki that describes the objectives and plan of their projects.  &lt;br /&gt;
&lt;br /&gt;
The event itself will start off with a short presentation by each project team, driven using their previously created description, and will help all participants get acquainted with others who are doing similar work. In the rest of the week, about half the time will be spent in breakout discussions on topics of common interest of subsets of the attendees, and the other half will be spent in project teams, doing hands-on project work.  The hands-on activities will be done in 40-50 small teams of size 2-4, each with a mix of multi-disciplinary expertise.  To facilitate this work, a large room at MIT will be setup with several tables, with internet and power access, and each computer software development based team will gather on a table with their individual laptops, connect to the internet to download their software and data, and be able to work on their projects.  Teams working on projects that require the use of medical devices will proceed to Brigham and Women's Hospital and carry out their experiments there. On the last day of the event, a closing presentation session will be held in which each project team will present a summary of what they accomplished during the week.&lt;br /&gt;
&lt;br /&gt;
This event is part of the translational research efforts of [http://www.na-mic.org NA-MIC], [http://www.ncigt.org NCIGT], [http://nac.spl.harvard.edu/ NAC], [http://catalyst.harvard.edu/home.html Harvard Catalyst],  [http://www.cimit.org CIMIT], and OCAIRO.  It is an expansion of the NA-MIC Summer Project Week that has been held annually since 2005. It will be held every summer at MIT and Brigham and Womens Hospital in Boston, typically during the last full week of June, and in Salt Lake City in the winter, typically during the second week of January.  &lt;br /&gt;
&lt;br /&gt;
A summary of all past NA-MIC Project Events is available [[Project_Events#Past|here]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== '''Logistics''' ==&lt;br /&gt;
&lt;br /&gt;
*'''Dates:''' June 17-21, 2013.&lt;br /&gt;
*'''Location:''' [[MIT_Project_Week_Rooms| Stata Center / RLE MIT]]. &lt;br /&gt;
*'''REGISTRATION:'''  http://www.regonline.com/namic2013summerprojweek. Please note that  as you proceed to the checkout portion of the registration process, RegOnline will offer you a chance to opt into a free trial of ACTIVEAdvantage -- click on &amp;quot;No thanks&amp;quot; in order to finish your Project Week registration.&lt;br /&gt;
*'''Registration Fee:''' $300.&lt;br /&gt;
*'''Hotel:''' Similar to previous years, no rooms have been blocked in a particular hotel.&lt;br /&gt;
*'''Room sharing''': If interested, add your name to the list before May 27th. See [[2013_Summer_Project_Week/RoomSharing|here]]&lt;br /&gt;
&lt;br /&gt;
== '''Preparation''' ==&lt;br /&gt;
&lt;br /&gt;
# Please make sure that you are on the http://public.kitware.com/cgi-bin/mailman/listinfo/na-mic-project-week mailing list&lt;br /&gt;
# The NA-MIC engineering team will be discussing projects in a their [http://wiki.na-mic.org/Wiki/index.php/Engineering:TCON_2013 weekly teleconferences]. Participants from the above mailing list will be invited to join to discuss their projects, so please make sure you are on it!&lt;br /&gt;
# By 3pm ET on Thursday May 8, all participants to add a one line title of their project to #Projects&lt;br /&gt;
# By 3pm ET on Thursday June 6, all project leads to complete [[Project_Week/Template|Complete a templated wiki page for your project]]. Please do not edit the template page itself, but create a new page for your project and cut-and-paste the text from this template page.  If you have questions, please send an email to tkapur at bwh.harvard.edu.&lt;br /&gt;
# By 3pm on June 13: Create a directory for each project on the [[Engineering:SandBox|NAMIC Sandbox]] (Matt)&lt;br /&gt;
## Commit on each sandbox directory the code examples/snippets that represent our first guesses of appropriate methods. (Luis and Steve will help with this, as needed)&lt;br /&gt;
## Gather test images in any of the Data sharing resources we have (e.g. XNAT/MIDAS). These ones don't have to be many. At least three different cases, so we can get an idea of the modality-specific characteristics of these images. Put the IDs of these data sets on the wiki page. (the participants must do this.)&lt;br /&gt;
## Where possible, setup nightly tests on a separate Dashboard, where we will run the methods that we are experimenting with. The test should post result images and computation time. (Matt)&lt;br /&gt;
# Please note that by the time we get to the project event, we should be trying to close off a project milestone rather than starting to work on one...&lt;br /&gt;
# People doing Slicer related projects should come to project week with slicer built on your laptop.&lt;br /&gt;
## See the [http://www.slicer.org/slicerWiki/index.php/Documentation/4.0/Developers Developer Section of slicer.org] for information.&lt;br /&gt;
## Projects to develop extension modules should be built against the latest Slicer4 trunk.&lt;br /&gt;
&lt;br /&gt;
== '''Registrants''' ==&lt;br /&gt;
&lt;br /&gt;
Do not add your name to this list - it is maintained by the organizers based on your paid registration.  ([http://www.regonline.com/Register/Checkin.aspx?EventID=1233699  Please click here to register.])&lt;br /&gt;
&lt;br /&gt;
#Parth Amin, WIT, aminp@wit.edu&lt;br /&gt;
#Charles Anderson, BWH, canderson26@partners.org&lt;br /&gt;
#Peter Anderson, retired, traneus@verizon.net&lt;br /&gt;
#Nicole Aucoin, BWH, nicole@bwh.harvard.edu&lt;br /&gt;
#Juan Carlos Avila Vilchis, Univ del Estado de Mexico, jc.avila.vilchis@hotmail.com&lt;br /&gt;
#Kayhan Batmanghelich, MIT, kayhan@csail.mit.edu&lt;br /&gt;
#Salma Bengali, Univ UT, salma.bengali@carma.utah.edu&lt;br /&gt;
#Anthony Blumfield, Radnostics, Anthony.Blumfield@Radnostics.com&lt;br /&gt;
#Vinicius Boen, Univ Michigan, vboen@umich.edu&lt;br /&gt;
#Matthew Brennan, MIT, brennanm@mit.edu&lt;br /&gt;
#Francois Budin, NIRAL-UNC, fbudin@unc.edu&lt;br /&gt;
#Ivan Buzurovic, BWH/HMS, ibuzurovic@lroc.harvard.edu&lt;br /&gt;
#Josh Cates, Univ UT, cates@sci.utah.edu&lt;br /&gt;
#Micah Chambers, UCLA, micahcc@ucla.edu&lt;br /&gt;
#Laurent Chauvin, BWH - SPL, lchauvin@bwh.harvard.edu&lt;br /&gt;
#Marine Clogenson, Ecole Polytechnique Federale de Lausanne (Switzerland), marine.clogenson@epfl.ch&lt;br /&gt;
#Adrian Dalca, MIT, adalca@MIT.EDU&lt;br /&gt;
#Matthew D'Artista, BWH - SPL, mdartista7@gmail.com&lt;br /&gt;
#Manasi Datar, Univ UT-SCI Institute, datar@sci.utah.edu&lt;br /&gt;
#Sneha Durgapal, BWH, durgapalsneha@gmail.com&lt;br /&gt;
#Luping Fang, Zhejiang Univ of Technology (China), flp@zjut.edu.cn&lt;br /&gt;
#Andriy Fedorov, BWH, fedorov@bwh.harvard.edu&lt;br /&gt;
#Jean-Christophe Fillion-Robin, Kitware, jchris.fillionr@kitware.com&lt;br /&gt;
#Gregory Fischer, WPI, gfischer@wpi.edu&lt;br /&gt;
#Barton Fiske, zSpace Inc, bfiske@zspace.com&lt;br /&gt;
#Matthew Flynn, WIT, flynnm3@wit.edu&lt;br /&gt;
#Karl Fritscher, MGH, kfritscher@gmail.com&lt;br /&gt;
#Yi Gao, Univ AL Birmingham, gaoyi.cn@gmail.com&lt;br /&gt;
#Maria Gonzalez-Puente, WIT, gonzalezpuentem@wit.edu&lt;br /&gt;
#Daniel Haehn, Boston Childrens Hospital, daniel.haehn@childrens.harvard.edu&lt;br /&gt;
#Michael Halle, BWH-SPL, mhalle@bwh.harvard.edu&lt;br /&gt;
#Rola Harmouche, BWH, rharmo@bwh.harvard.edu&lt;br /&gt;
#Amanda Hartung, Rochester Inst of Tech, amh1646@rit.edu&lt;br /&gt;
#Nobuhiko Hata, BWH, hata@bwh.harvard.edu&lt;br /&gt;
#Nicholas Herlambang, AZE Technology Inc, nicholas.herlambang@azetech.com&lt;br /&gt;
#Matthew Holden, Queen's Univ (Canada), mholden8@cs.queensu.ca&lt;br /&gt;
#Andrei Irimia, UCLA, andrei.irimia@loni.ucla.edu&lt;br /&gt;
#Jayender Jagadeesan, BWH-SPL, jayender@bwh.harvard.edu&lt;br /&gt;
#Hans Johnson, Univ Iowa, hans-johnson@uiowa.edu&lt;br /&gt;
#Tina Kapur, BWH/HMS, tkapur@bwh.harvard.edu&lt;br /&gt;
#Alex Kikinis, BWH, alexkikinis@gmail.com&lt;br /&gt;
#Ron Kikinis, HMS, kikinis@bwh.harvard.edu&lt;br /&gt;
#Nils Klarlund, IEEE, klarlund@ieee.org&lt;br /&gt;
#Daniel Kostro, BWH, dkostro@bwh.harvard.edu&lt;br /&gt;
#Andras Lasso, Queen's Univ (Canada), lasso@cs.queensu.ca&lt;br /&gt;
#Rui Li, GE Global Research, li.rui@ge.com&lt;br /&gt;
#Xu Li, BWH, lixu0103@gmail.com&lt;br /&gt;
#Lichen Liang, MGH, lichenl@nmr.mgh.harvard.edu&lt;br /&gt;
#Sidong Liu, Univ Sydney (Australia), sliu7418@uni.sydney.edu.au&lt;br /&gt;
#William Lorensen, Bill's Basement, bill.lorensen@gmail.com &lt;br /&gt;
#Bradley Lowekamp, Medical Science &amp;amp; Computing Inc, bradley.lowekamp@nih.gov&lt;br /&gt;
#Athena Lyons, Univ Western Australia, 20359511@student.uwa.edu.au&lt;br /&gt;
#Nikos Makris, MGH, nikos@nmr.mgh.harvard.edu&lt;br /&gt;
#Katie Mastrogiacomo, BWH - SPL, kmast@bwh.harvard.edu&lt;br /&gt;
#Alireza Mehrtash, BWH - SPL, mehrtash@bwh.harvard.edu&lt;br /&gt;
#Hans Meine, Fraunhofer MEVIS (Germany), hans.meine@mevis.fraunhofer.de&lt;br /&gt;
#Jim Miller, GE Global Research, millerjv@ge.com&lt;br /&gt;
#Luis Murta, Univ Sao Paulo (Brazil), lomurta@gmail.com&lt;br /&gt;
#Arie Nakhmani, Univ AL Birmingham, anry@uab.edu&lt;br /&gt;
#Isaiah Norton, BWH, inorton@bwh.harvard.edu&lt;br /&gt;
#Lauren O'Donnell, BWH, odonnell@bwh.harvard.edu&lt;br /&gt;
#Dirk Padfield, GE Global Research, padfield@research.ge.com&lt;br /&gt;
#Jian Pan, Zhejiang Univ of Technology (China), pj@zjut.edu.cn&lt;br /&gt;
#George Papadimitriou, MGH, georgep@nmr.mgh.harvard.edu&lt;br /&gt;
#Nirav Patel, WPI, napatel@wpi.edu&lt;br /&gt;
#Tobias Penzkofer, BWH - SPL, pt@bwh.harvard.edu&lt;br /&gt;
#Rudolph Pienaar, Boston Childrens Hospital, Rudolph.Pienaar@childrens.harvard.edu&lt;br /&gt;
#Steve Pieper, Isomics Inc, pieper@isomics.com&lt;br /&gt;
#Csaba Pinter, Queen's Univ (Canada), pinter@cs.queensu.ca&lt;br /&gt;
#Sonia Pujol, HMS, spujol@bwh.harvard.edu&lt;br /&gt;
#Adam Rankin, Queen's Univ (Canada), rankin@cs.queensu.ca&lt;br /&gt;
#Nathaniel Reynolds, MGH, reynolds@nmr.mgh.harvard.edu&lt;br /&gt;
#Raul San Jose, BWH, rjosest@bwh.harvard.edu&lt;br /&gt;
#Peter Savadjiev, BWH, petersv@bwh.harvard.edu&lt;br /&gt;
#Anuja Sharma, Univ UT-SCI Institute, anuja@cs.utah.edu&lt;br /&gt;
#Greg Sharp, MGH, gcsharp@partners.org&lt;br /&gt;
#Nadya Shusharina, MGH, nshusharina@partners.org&lt;br /&gt;
#Sebastian Tauscher, Leibniz Univ Hannover (Germany), sebastian.tauscher@imes.uni-hannover.de&lt;br /&gt;
#Clare Tempany, BWH, ctempanyafdhal@partners.org&lt;br /&gt;
#Cyrill von Tiesenhausen, KUKA Laboratories (Germany), cyrill.tiesenhausen@kuka.com&lt;br /&gt;
#Gaurie Tilak, BWH, gaurie_tilak@hms.harvard.edu&lt;br /&gt;
#Matthew Toews, BWH/HMS, mt@bwh.harvard.edu&lt;br /&gt;
#Junichi Tokuda, BWH, tokuda@bwh.harvard.edu&lt;br /&gt;
#Tamas Ungi, Queen's Univ (Canada), ungi@cs.queensu.ca&lt;br /&gt;
#Adriana Vilchis González, Univ del Estado de Mexico, hvigady@hotmail.com&lt;br /&gt;
#Kirby Vosburgh, BWH, kirby@bwh.harvard.edu&lt;br /&gt;
#Christian Wachinger, MIT, wachinge@mit.edu&lt;br /&gt;
#Bo Wang, Univ UT-SCI Institute, bowang@sci.utah.edu&lt;br /&gt;
#Demian Wassermann, BWH, demian@bwh.harvard.edu&lt;br /&gt;
#David Welch, Univ Iowa, david-welch@uiowa.edu&lt;br /&gt;
#William Wells, BWH/HMS, sw@bwh.harvard.edu&lt;br /&gt;
#Phillip White, BWH/HMS, white@bwh.harvard.edu&lt;br /&gt;
#Alex Yarmarkovich, Isomics Inc, alexy@bwh.harvard.edu&lt;br /&gt;
#Kitaro Yoshimitsu, BWH, kitarof1@bwh.harvard.edu&lt;br /&gt;
#Yang Yu, Rutgers Univ, yyu@cs.rutgers.edu&lt;br /&gt;
#Paolo Zaffino, Univ Magna Graecia of Catanzaro (Italy), p.zaffino@unicz.it&lt;br /&gt;
#Lilla Zollei, MGH, lzollei@nmr.mgh.harvard.edu&lt;/div&gt;</summary>
		<author><name>Grclirui</name></author>
		
	</entry>
	<entry>
		<id>https://www.na-mic.org/w/index.php?title=Project_Week/Template&amp;diff=82067</id>
		<title>Project Week/Template</title>
		<link rel="alternate" type="text/html" href="https://www.na-mic.org/w/index.php?title=Project_Week/Template&amp;diff=82067"/>
		<updated>2013-06-18T03:03:52Z</updated>

		<summary type="html">&lt;p&gt;Grclirui: /* Instructions for Use of this Template */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:PW-MIT2013.png|[[2013_Summer_Project_Week#Projects|Projects List]]&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Key Investigators==&lt;br /&gt;
* GRC: Rui Li, Jim Miller&lt;br /&gt;
* Kitware: Jean-Christophe Fillion-Robin&lt;br /&gt;
* Isomics: Steve Pieper&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin: 20px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 27%; float: left; padding-right: 3%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Objective&amp;lt;/h3&amp;gt;&lt;br /&gt;
Python embedding library to manage calling python functions from C++. This will eliminate the code duplication  in Slicer.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 27%; float: left; padding-right: 3%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Approach, Plan&amp;lt;/h3&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Discuss with Jc and Steve regarding how to incorporate into Slicer. Currently it &lt;br /&gt;
is used as a downloadable library during superbuild, similar to SlicerExecutionModel.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 40%; float: left;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Progress&amp;lt;/h3&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Delivery Mechanism==&lt;br /&gt;
&lt;br /&gt;
https://github.com/grclirui/PythonCppAPI.git&lt;/div&gt;</summary>
		<author><name>Grclirui</name></author>
		
	</entry>
	<entry>
		<id>https://www.na-mic.org/w/index.php?title=Project_Week/Template&amp;diff=82066</id>
		<title>Project Week/Template</title>
		<link rel="alternate" type="text/html" href="https://www.na-mic.org/w/index.php?title=Project_Week/Template&amp;diff=82066"/>
		<updated>2013-06-18T03:03:23Z</updated>

		<summary type="html">&lt;p&gt;Grclirui: /* Key Investigators */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:PW-MIT2013.png|[[2013_Summer_Project_Week#Projects|Projects List]]&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Instructions for Use of this Template==&lt;br /&gt;
#Please create a new wiki page with an appropriate title for your project using the convention 2013_Summer_Project_Week:&amp;lt;Project Name&amp;gt;&lt;br /&gt;
#Copy the entire text of this page into the page created above&lt;br /&gt;
#Link the created page into the list of projects for the project event&lt;br /&gt;
#Delete this section from the created page&lt;br /&gt;
#Send an email to tkapur at bwh.harvard.edu if you are stuck&lt;br /&gt;
&lt;br /&gt;
==Key Investigators==&lt;br /&gt;
* GRC: Rui Li, Jim Miller&lt;br /&gt;
* Kitware: Jean-Christophe Fillion-Robin&lt;br /&gt;
* Isomics: Steve Pieper&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin: 20px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 27%; float: left; padding-right: 3%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Objective&amp;lt;/h3&amp;gt;&lt;br /&gt;
Python embedding library to manage calling python functions from C++. This will eliminate the code duplication  in Slicer.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 27%; float: left; padding-right: 3%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Approach, Plan&amp;lt;/h3&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Discuss with Jc and Steve regarding how to incorporate into Slicer. Currently it &lt;br /&gt;
is used as a downloadable library during superbuild, similar to SlicerExecutionModel.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 40%; float: left;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Progress&amp;lt;/h3&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Delivery Mechanism==&lt;br /&gt;
&lt;br /&gt;
https://github.com/grclirui/PythonCppAPI.git&lt;/div&gt;</summary>
		<author><name>Grclirui</name></author>
		
	</entry>
	<entry>
		<id>https://www.na-mic.org/w/index.php?title=Project_Week/Template&amp;diff=82065</id>
		<title>Project Week/Template</title>
		<link rel="alternate" type="text/html" href="https://www.na-mic.org/w/index.php?title=Project_Week/Template&amp;diff=82065"/>
		<updated>2013-06-18T03:01:21Z</updated>

		<summary type="html">&lt;p&gt;Grclirui: /* Delivery Mechanism */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:PW-MIT2013.png|[[2013_Summer_Project_Week#Projects|Projects List]]&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Instructions for Use of this Template==&lt;br /&gt;
#Please create a new wiki page with an appropriate title for your project using the convention 2013_Summer_Project_Week:&amp;lt;Project Name&amp;gt;&lt;br /&gt;
#Copy the entire text of this page into the page created above&lt;br /&gt;
#Link the created page into the list of projects for the project event&lt;br /&gt;
#Delete this section from the created page&lt;br /&gt;
#Send an email to tkapur at bwh.harvard.edu if you are stuck&lt;br /&gt;
&lt;br /&gt;
==Key Investigators==&lt;br /&gt;
* GRC: Rui Li, Jim Miller&lt;br /&gt;
* Kitware: Jean-Christophe Fillion-Robin&lt;br /&gt;
* Isomics: Steve Pieper&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin: 20px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 27%; float: left; padding-right: 3%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Objective&amp;lt;/h3&amp;gt;&lt;br /&gt;
Python embedding library to manage calling python functions from C++. This will eliminate the code duplication  in Slicer.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 27%; float: left; padding-right: 3%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Approach, Plan&amp;lt;/h3&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Our approach for analyzing diffusion tensors is summarized in the IPMI 2007 reference below.  The main challenge to this approach is &amp;lt;foo&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Our plan for the project week is to first try out &amp;lt;bar&amp;gt;,...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 40%; float: left;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Progress&amp;lt;/h3&amp;gt;&lt;br /&gt;
Software for the fiber tracking and statistical analysis along the tracts has been implemented. The statistical methods for diffusion tensors are implemented as ITK code as part of the [[NA-MIC/Projects/Diffusion_Image_Analysis/DTI_Software_and_Algorithm_Infrastructure|DTI Software Infrastructure]] project. The methods have been validated on a repeated scan of a healthy individual. This work has been published as a conference paper (MICCAI 2005) and a journal version (MEDIA 2006). Our recent IPMI 2007 paper includes a nonparametric regression method for analyzing data along a fiber tract.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Delivery Mechanism==&lt;br /&gt;
&lt;br /&gt;
https://github.com/grclirui/PythonCppAPI.git&lt;/div&gt;</summary>
		<author><name>Grclirui</name></author>
		
	</entry>
	<entry>
		<id>https://www.na-mic.org/w/index.php?title=Project_Week/Template&amp;diff=82064</id>
		<title>Project Week/Template</title>
		<link rel="alternate" type="text/html" href="https://www.na-mic.org/w/index.php?title=Project_Week/Template&amp;diff=82064"/>
		<updated>2013-06-18T02:59:46Z</updated>

		<summary type="html">&lt;p&gt;Grclirui: /* References */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:PW-MIT2013.png|[[2013_Summer_Project_Week#Projects|Projects List]]&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Instructions for Use of this Template==&lt;br /&gt;
#Please create a new wiki page with an appropriate title for your project using the convention 2013_Summer_Project_Week:&amp;lt;Project Name&amp;gt;&lt;br /&gt;
#Copy the entire text of this page into the page created above&lt;br /&gt;
#Link the created page into the list of projects for the project event&lt;br /&gt;
#Delete this section from the created page&lt;br /&gt;
#Send an email to tkapur at bwh.harvard.edu if you are stuck&lt;br /&gt;
&lt;br /&gt;
==Key Investigators==&lt;br /&gt;
* GRC: Rui Li, Jim Miller&lt;br /&gt;
* Kitware: Jean-Christophe Fillion-Robin&lt;br /&gt;
* Isomics: Steve Pieper&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin: 20px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 27%; float: left; padding-right: 3%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Objective&amp;lt;/h3&amp;gt;&lt;br /&gt;
Python embedding library to manage calling python functions from C++. This will eliminate the code duplication  in Slicer.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 27%; float: left; padding-right: 3%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Approach, Plan&amp;lt;/h3&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Our approach for analyzing diffusion tensors is summarized in the IPMI 2007 reference below.  The main challenge to this approach is &amp;lt;foo&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Our plan for the project week is to first try out &amp;lt;bar&amp;gt;,...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 40%; float: left;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Progress&amp;lt;/h3&amp;gt;&lt;br /&gt;
Software for the fiber tracking and statistical analysis along the tracts has been implemented. The statistical methods for diffusion tensors are implemented as ITK code as part of the [[NA-MIC/Projects/Diffusion_Image_Analysis/DTI_Software_and_Algorithm_Infrastructure|DTI Software Infrastructure]] project. The methods have been validated on a repeated scan of a healthy individual. This work has been published as a conference paper (MICCAI 2005) and a journal version (MEDIA 2006). Our recent IPMI 2007 paper includes a nonparametric regression method for analyzing data along a fiber tract.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Delivery Mechanism==&lt;br /&gt;
&lt;br /&gt;
This work will be delivered to the NA-MIC Kit as a (please select the appropriate options by noting YES against them below)&lt;br /&gt;
&lt;br /&gt;
#ITK Module&lt;br /&gt;
#Slicer Module&lt;br /&gt;
##Built-in&lt;br /&gt;
##Extension -- commandline&lt;br /&gt;
##Extension -- loadable&lt;br /&gt;
#Other (Please specify)&lt;/div&gt;</summary>
		<author><name>Grclirui</name></author>
		
	</entry>
	<entry>
		<id>https://www.na-mic.org/w/index.php?title=Project_Week/Template&amp;diff=82063</id>
		<title>Project Week/Template</title>
		<link rel="alternate" type="text/html" href="https://www.na-mic.org/w/index.php?title=Project_Week/Template&amp;diff=82063"/>
		<updated>2013-06-18T02:56:57Z</updated>

		<summary type="html">&lt;p&gt;Grclirui: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:PW-MIT2013.png|[[2013_Summer_Project_Week#Projects|Projects List]]&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Instructions for Use of this Template==&lt;br /&gt;
#Please create a new wiki page with an appropriate title for your project using the convention 2013_Summer_Project_Week:&amp;lt;Project Name&amp;gt;&lt;br /&gt;
#Copy the entire text of this page into the page created above&lt;br /&gt;
#Link the created page into the list of projects for the project event&lt;br /&gt;
#Delete this section from the created page&lt;br /&gt;
#Send an email to tkapur at bwh.harvard.edu if you are stuck&lt;br /&gt;
&lt;br /&gt;
==Key Investigators==&lt;br /&gt;
* GRC: Rui Li, Jim Miller&lt;br /&gt;
* Kitware: Jean-Christophe Fillion-Robin&lt;br /&gt;
* Isomics: Steve Pieper&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin: 20px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 27%; float: left; padding-right: 3%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Objective&amp;lt;/h3&amp;gt;&lt;br /&gt;
Python embedding library to manage calling python functions from C++. This will eliminate the code duplication  in Slicer.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 27%; float: left; padding-right: 3%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Approach, Plan&amp;lt;/h3&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Our approach for analyzing diffusion tensors is summarized in the IPMI 2007 reference below.  The main challenge to this approach is &amp;lt;foo&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Our plan for the project week is to first try out &amp;lt;bar&amp;gt;,...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 40%; float: left;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Progress&amp;lt;/h3&amp;gt;&lt;br /&gt;
Software for the fiber tracking and statistical analysis along the tracts has been implemented. The statistical methods for diffusion tensors are implemented as ITK code as part of the [[NA-MIC/Projects/Diffusion_Image_Analysis/DTI_Software_and_Algorithm_Infrastructure|DTI Software Infrastructure]] project. The methods have been validated on a repeated scan of a healthy individual. This work has been published as a conference paper (MICCAI 2005) and a journal version (MEDIA 2006). Our recent IPMI 2007 paper includes a nonparametric regression method for analyzing data along a fiber tract.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Delivery Mechanism==&lt;br /&gt;
&lt;br /&gt;
This work will be delivered to the NA-MIC Kit as a (please select the appropriate options by noting YES against them below)&lt;br /&gt;
&lt;br /&gt;
#ITK Module&lt;br /&gt;
#Slicer Module&lt;br /&gt;
##Built-in&lt;br /&gt;
##Extension -- commandline&lt;br /&gt;
##Extension -- loadable&lt;br /&gt;
#Other (Please specify)&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
*Fletcher P, Tao R, Jeong W, Whitaker R. [http://www.na-mic.org/publications/item/view/634 A volumetric approach to quantifying region-to-region white matter connectivity in diffusion tensor MRI.] Inf Process Med Imaging. 2007;20:346-358. PMID: 17633712.&lt;br /&gt;
* Corouge I, Fletcher P, Joshi S, Gouttard S, Gerig G. [http://www.na-mic.org/publications/item/view/292 Fiber tract-oriented statistics for quantitative diffusion tensor MRI analysis.] Med Image Anal. 2006 Oct;10(5):786-98. PMID: 16926104.&lt;br /&gt;
* Corouge I, Fletcher P, Joshi S, Gilmore J, Gerig G. [http://www.na-mic.org/publications/item/view/1122 Fiber tract-oriented statistics for quantitative diffusion tensor MRI analysis.] Int Conf Med Image Comput Comput Assist Interv. 2005;8(Pt 1):131-9. PMID: 16685838.&lt;br /&gt;
* Goodlett C, Corouge I, Jomier M, Gerig G, A Quantitative DTI Fiber Tract Analysis Suite, The Insight Journal, vol. ISC/NAMIC/ MICCAI Workshop on Open-Source Software, 2005, Online publication: http://hdl.handle.net/1926/39 .&lt;/div&gt;</summary>
		<author><name>Grclirui</name></author>
		
	</entry>
	<entry>
		<id>https://www.na-mic.org/w/index.php?title=File:SlicerPersonalCloudDownloadandQuery.png&amp;diff=80045</id>
		<title>File:SlicerPersonalCloudDownloadandQuery.png</title>
		<link rel="alternate" type="text/html" href="https://www.na-mic.org/w/index.php?title=File:SlicerPersonalCloudDownloadandQuery.png&amp;diff=80045"/>
		<updated>2013-01-11T16:32:21Z</updated>

		<summary type="html">&lt;p&gt;Grclirui: uploaded a new version of &amp;quot;File:SlicerPersonalCloudDownloadandQuery.png&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Grclirui</name></author>
		
	</entry>
	<entry>
		<id>https://www.na-mic.org/w/index.php?title=File:SlicerPersonalCloudConfigure.png&amp;diff=79393</id>
		<title>File:SlicerPersonalCloudConfigure.png</title>
		<link rel="alternate" type="text/html" href="https://www.na-mic.org/w/index.php?title=File:SlicerPersonalCloudConfigure.png&amp;diff=79393"/>
		<updated>2013-01-07T18:17:06Z</updated>

		<summary type="html">&lt;p&gt;Grclirui: uploaded a new version of &amp;quot;File:SlicerPersonalCloudConfigure.png&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Grclirui</name></author>
		
	</entry>
	<entry>
		<id>https://www.na-mic.org/w/index.php?title=File:SlicerPersonalCloudConfigure.png&amp;diff=79387</id>
		<title>File:SlicerPersonalCloudConfigure.png</title>
		<link rel="alternate" type="text/html" href="https://www.na-mic.org/w/index.php?title=File:SlicerPersonalCloudConfigure.png&amp;diff=79387"/>
		<updated>2013-01-07T18:07:01Z</updated>

		<summary type="html">&lt;p&gt;Grclirui: uploaded a new version of &amp;quot;File:SlicerPersonalCloudConfigure.png&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Grclirui</name></author>
		
	</entry>
	<entry>
		<id>https://www.na-mic.org/w/index.php?title=2013_Project_Week:Slicer_Personal_Cloud&amp;diff=79381</id>
		<title>2013 Project Week:Slicer Personal Cloud</title>
		<link rel="alternate" type="text/html" href="https://www.na-mic.org/w/index.php?title=2013_Project_Week:Slicer_Personal_Cloud&amp;diff=79381"/>
		<updated>2013-01-07T18:02:32Z</updated>

		<summary type="html">&lt;p&gt;Grclirui: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:PW-MIT2013.png|[[2013_Winter_Project_Week#Projects|Projects List]]&lt;br /&gt;
Image:SlicerPersonalCloudOverview.png‎|Interaction: Overview&lt;br /&gt;
Image:SlicerPersonalCloudConfigure.png‎|Interaction: Configure&lt;br /&gt;
Image:SlicerPersonalCloudApply.png‎|Interaction: Submit a job to the cloud&lt;br /&gt;
Image:SlicerPersonalCloudDownloadandQuery‎.png|Interaction: Download results and query for job status (work in progress)&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Key Investigators==&lt;br /&gt;
* GRC: Rui Li, Jim Miller&lt;br /&gt;
* Isomics: Steve Pieper&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin: 20px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 27%; float: left; padding-right: 3%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Objective&amp;lt;/h3&amp;gt;&lt;br /&gt;
Enable Slicer users to schedule long running analyses on their server machine from their client machine. The results will be&lt;br /&gt;
available for downloading on the client machine when it is ready. One use case would be to set up a module on your laptop, &lt;br /&gt;
submit to your Personal Slicer Cloud, pack up your laptop for the drive home, and upon arriving at your destination open your &lt;br /&gt;
laptop to download and review the results computed while you were in transit.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 27%; float: left; padding-right: 3%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Approach, Plan&amp;lt;/h3&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Our approach for developing the Slicer personal cloud is that the users will interact with the module on the client side as &lt;br /&gt;
they would normally do. Instead of running the module locally, the data and parameters are packaged and send over to&lt;br /&gt;
the cloud server via one mouse click. The current implementation using python packages to manage client and server &lt;br /&gt;
communication. On the server side, once the request is received, the submitted job is run as a command line module by &lt;br /&gt;
executing ``Slicer --launch commandString&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 40%; float: left;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Progress&amp;lt;/h3&amp;gt;&lt;br /&gt;
We have implemented the basic pipeline of submitting a job, run the job on the cloud server and downloading the results.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Delivery Mechanism==&lt;br /&gt;
&lt;br /&gt;
This work will be delivered to the NA-MIC Kit as a (please select the appropriate options by noting YES against them below)&lt;br /&gt;
&lt;br /&gt;
#ITK Module&lt;br /&gt;
#Slicer Module&lt;br /&gt;
##Built-in&lt;br /&gt;
##Extension -- commandline &lt;br /&gt;
##Extension -- loadable &lt;br /&gt;
#Other (Please specify) YES&lt;br /&gt;
&lt;br /&gt;
==References==&lt;/div&gt;</summary>
		<author><name>Grclirui</name></author>
		
	</entry>
	<entry>
		<id>https://www.na-mic.org/w/index.php?title=File:SlicerPersonalCloudDownloadandQuery.png&amp;diff=79380</id>
		<title>File:SlicerPersonalCloudDownloadandQuery.png</title>
		<link rel="alternate" type="text/html" href="https://www.na-mic.org/w/index.php?title=File:SlicerPersonalCloudDownloadandQuery.png&amp;diff=79380"/>
		<updated>2013-01-07T18:01:33Z</updated>

		<summary type="html">&lt;p&gt;Grclirui: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Grclirui</name></author>
		
	</entry>
	<entry>
		<id>https://www.na-mic.org/w/index.php?title=File:SlicerPersonalCloudApply.png&amp;diff=79379</id>
		<title>File:SlicerPersonalCloudApply.png</title>
		<link rel="alternate" type="text/html" href="https://www.na-mic.org/w/index.php?title=File:SlicerPersonalCloudApply.png&amp;diff=79379"/>
		<updated>2013-01-07T18:01:05Z</updated>

		<summary type="html">&lt;p&gt;Grclirui: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Grclirui</name></author>
		
	</entry>
	<entry>
		<id>https://www.na-mic.org/w/index.php?title=File:SlicerPersonalCloudConfigure.png&amp;diff=79378</id>
		<title>File:SlicerPersonalCloudConfigure.png</title>
		<link rel="alternate" type="text/html" href="https://www.na-mic.org/w/index.php?title=File:SlicerPersonalCloudConfigure.png&amp;diff=79378"/>
		<updated>2013-01-07T18:00:16Z</updated>

		<summary type="html">&lt;p&gt;Grclirui: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Grclirui</name></author>
		
	</entry>
	<entry>
		<id>https://www.na-mic.org/w/index.php?title=File:SlicerPersonalCloudOverview.png&amp;diff=79377</id>
		<title>File:SlicerPersonalCloudOverview.png</title>
		<link rel="alternate" type="text/html" href="https://www.na-mic.org/w/index.php?title=File:SlicerPersonalCloudOverview.png&amp;diff=79377"/>
		<updated>2013-01-07T17:59:41Z</updated>

		<summary type="html">&lt;p&gt;Grclirui: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Grclirui</name></author>
		
	</entry>
	<entry>
		<id>https://www.na-mic.org/w/index.php?title=2013_Project_Week:Slicer_Personal_Cloud&amp;diff=79374</id>
		<title>2013 Project Week:Slicer Personal Cloud</title>
		<link rel="alternate" type="text/html" href="https://www.na-mic.org/w/index.php?title=2013_Project_Week:Slicer_Personal_Cloud&amp;diff=79374"/>
		<updated>2013-01-07T17:42:13Z</updated>

		<summary type="html">&lt;p&gt;Grclirui: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:PW-MIT2013.png|[[2013_Winter_Project_Week#Projects|Projects List]]&lt;br /&gt;
Image:SlicerPersonalCloudOverview.png‎|Interaction: Overview&lt;br /&gt;
Image:SlicerPersonalCloudConfigure.png‎|Interaction: Configure&lt;br /&gt;
Image:SlicerPersonalCloudSubmit.png‎|Interaction: Submit a job to the cloud&lt;br /&gt;
Image:SlicerPersonalCloudDownloadandQuery‎.png|Interaction: Download results and query for job status (work in progress)&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Key Investigators==&lt;br /&gt;
* GRC: Rui Li, Jim Miller&lt;br /&gt;
* Isomics: Steve Pieper&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin: 20px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 27%; float: left; padding-right: 3%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Objective&amp;lt;/h3&amp;gt;&lt;br /&gt;
Enable Slicer users to schedule long running analyses on their server machine from their client machine. The results will be&lt;br /&gt;
available for downloading on the client machine when it is ready. One use case would be to set up a module on your laptop, &lt;br /&gt;
submit to your Personal Slicer Cloud, pack up your laptop for the drive home, and upon arriving at your destination open your &lt;br /&gt;
laptop to download and review the results computed while you were in transit.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 27%; float: left; padding-right: 3%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Approach, Plan&amp;lt;/h3&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Our approach for developing the Slicer personal cloud is that the users will interact with the module on the client side as &lt;br /&gt;
they would normally do. Instead of running the module locally, the data and parameters are packaged and send over to&lt;br /&gt;
the cloud server via one mouse click. The current implementation using python packages to manage client and server &lt;br /&gt;
communication. On the server side, once the request is received, the submitted job is run as a command line module by &lt;br /&gt;
executing ``Slicer --launch commandString&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 40%; float: left;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Progress&amp;lt;/h3&amp;gt;&lt;br /&gt;
We have implemented the basic pipeline of submitting a job, run the job on the cloud server and downloading the results.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Delivery Mechanism==&lt;br /&gt;
&lt;br /&gt;
This work will be delivered to the NA-MIC Kit as a (please select the appropriate options by noting YES against them below)&lt;br /&gt;
&lt;br /&gt;
#ITK Module&lt;br /&gt;
#Slicer Module&lt;br /&gt;
##Built-in&lt;br /&gt;
##Extension -- commandline &lt;br /&gt;
##Extension -- loadable &lt;br /&gt;
#Other (Please specify) YES&lt;br /&gt;
&lt;br /&gt;
==References==&lt;/div&gt;</summary>
		<author><name>Grclirui</name></author>
		
	</entry>
	<entry>
		<id>https://www.na-mic.org/w/index.php?title=2013_Project_Week:Slicer_Personal_Cloud&amp;diff=79373</id>
		<title>2013 Project Week:Slicer Personal Cloud</title>
		<link rel="alternate" type="text/html" href="https://www.na-mic.org/w/index.php?title=2013_Project_Week:Slicer_Personal_Cloud&amp;diff=79373"/>
		<updated>2013-01-07T17:41:26Z</updated>

		<summary type="html">&lt;p&gt;Grclirui: Created page with '__NOTOC__ &amp;lt;gallery&amp;gt; Image:PW-MIT2013.png|Projects List Image:SlicerPersonalCloudOverview.png‎|Interaction: Overview Image:SlicerPersonalCl…'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:PW-MIT2013.png|[[2013_Winter_Project_Week#Projects|Projects List]]&lt;br /&gt;
Image:SlicerPersonalCloudOverview.png‎|Interaction: Overview&lt;br /&gt;
Image:SlicerPersonalCloudConfigure.png‎|Interaction: Configure&lt;br /&gt;
Image:SlicerPersonalCloudSubmit.png‎|Interaction: Submit a job to the cloud&lt;br /&gt;
Image:SlicerPersonalCloudDownloadandQuery‎.png|Interaction: Download results and query for job status (work in progress)&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Key Investigators==&lt;br /&gt;
* GRC: Rui Li, Jim Miller&lt;br /&gt;
* Isomics: Steve Pieper&lt;br /&gt;
* BWH: Tina Kapur, Ron Kikinis&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin: 20px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 27%; float: left; padding-right: 3%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Objective&amp;lt;/h3&amp;gt;&lt;br /&gt;
Enable Slicer users to schedule long running analyses on their server machine from their client machine. The results will be&lt;br /&gt;
available for downloading on the client machine when it is ready. One use case would be to set up a module on your laptop, &lt;br /&gt;
submit to your Personal Slicer Cloud, pack up your laptop for the drive home, and upon arriving at your destination open your &lt;br /&gt;
laptop to download and review the results computed while you were in transit.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 27%; float: left; padding-right: 3%;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Approach, Plan&amp;lt;/h3&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Our approach for developing the Slicer personal cloud is that the users will interact with the module on the client side as &lt;br /&gt;
they would normally do. Instead of running the module locally, the data and parameters are packaged and send over to&lt;br /&gt;
the cloud server via one mouse click. The current implementation using python packages to manage client and server &lt;br /&gt;
communication. On the server side, once the request is received, the submitted job is run as a command line module by &lt;br /&gt;
executing ``Slicer --launch commandString&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 40%; float: left;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Progress&amp;lt;/h3&amp;gt;&lt;br /&gt;
We have implemented the basic pipeline of submitting a job, run the job on the cloud server and downloading the results.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Delivery Mechanism==&lt;br /&gt;
&lt;br /&gt;
This work will be delivered to the NA-MIC Kit as a (please select the appropriate options by noting YES against them below)&lt;br /&gt;
&lt;br /&gt;
#ITK Module&lt;br /&gt;
#Slicer Module&lt;br /&gt;
##Built-in&lt;br /&gt;
##Extension -- commandline &lt;br /&gt;
##Extension -- loadable &lt;br /&gt;
#Other (Please specify) YES&lt;br /&gt;
&lt;br /&gt;
==References==&lt;/div&gt;</summary>
		<author><name>Grclirui</name></author>
		
	</entry>
	<entry>
		<id>https://www.na-mic.org/w/index.php?title=2013_Winter_Project_Week&amp;diff=79359</id>
		<title>2013 Winter Project Week</title>
		<link rel="alternate" type="text/html" href="https://www.na-mic.org/w/index.php?title=2013_Winter_Project_Week&amp;diff=79359"/>
		<updated>2013-01-07T17:14:24Z</updated>

		<summary type="html">&lt;p&gt;Grclirui: /* NA-MIC Kit Internals */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Back to [[Project Events]], [[Events]]&lt;br /&gt;
 Back to [[Project Events]], [[AHM_2013]], [[Events]]&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;br /&gt;
[[image:PW-SLC2013.png|300px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Project Week is a hands on activity -- programming using the open source [[NA-MIC-Kit|NA-MIC Kit]], algorithm design, and clinical application -- that has become one of the major events in the NA-MIC, NCIGT, and NAC calendars. It is held in the summer at MIT, typically the last week of June, and a shorter version is held in Salt Lake City in the winter, typically the second week of January.   &lt;br /&gt;
&lt;br /&gt;
Active preparation begins 6-8 weeks prior to the meeting, when a kick-off teleconference is hosted by the NA-MIC Engineering, Dissemination, and Leadership teams, the primary hosts of this event.  Invitations to this call are sent to all na-mic members, past attendees of the event, as well as any parties who have expressed an interest in working with NA-MIC. The main goal of the kick-off call is to get an idea of which groups/projects will be active at the upcoming event, and to ensure that there is sufficient NA-MIC coverage for all. Subsequent teleconferences allow the hosts to finalize the project teams, consolidate any common components, and identify topics that should be discussed in breakout sessions. In the final days leading upto the meeting, all project teams are asked to fill in a template page on this wiki that describes the objectives and plan of their projects.&lt;br /&gt;
&lt;br /&gt;
The event itself starts off with a short presentation by each project team, driven using their previously created description, and allows all participants to be acquainted with others who are doing similar work. In the rest of the week, about half the time is spent in breakout discussions on topics of common interest of subsets of the attendees, and the other half is spent in project teams, doing hands-on programming, algorithm design, or clinical application of NA-MIC kit tools.  The hands-on activities are done in 10-20 small teams of size 3-5, each with a mix of experts in NA-MIC kit software, algorithms, and clinical.  To facilitate this work, a large room is setup with several tables, with internet and power access, and each team gathers on a table with their individual laptops, connects to the internet to download their software and data, and is able to work on their projects.  On the last day of the event, a closing presentation session is held in which each project team presents a summary of what they accomplished during the week.&lt;br /&gt;
&lt;br /&gt;
A summary of all past NA-MIC Project Events is available [[Project_Events#Past|here]].&lt;br /&gt;
= Dates.Venue.Registration =&lt;br /&gt;
&lt;br /&gt;
Please [[AHM_2013#Dates_Venue_Registration|click here for Dates, Venue, and Registration]] for this event.&lt;br /&gt;
&lt;br /&gt;
= [[AHM_2013#Agenda|'''AGENDA''']] and Project List=&lt;br /&gt;
&lt;br /&gt;
Please:&lt;br /&gt;
*  [[AHM_2013#Agenda|'''Click here for the agenda for AHM 2013 and Project Week''']].&lt;br /&gt;
*  [[#Projects|'''Click here to jump to Project list''']]&lt;br /&gt;
&lt;br /&gt;
=Background and Preparation=&lt;br /&gt;
&lt;br /&gt;
A summary of all past NA-MIC Project Events is available [[Project_Events#Past|here]].&lt;br /&gt;
&lt;br /&gt;
Please make sure that you are on the [http://public.kitware.com/cgi-bin/mailman/listinfo/na-mic-project-week na-mic-project-week mailing list]&lt;br /&gt;
&lt;br /&gt;
=Projects=&lt;br /&gt;
* [[2013_Project_Week_Template | Template for project pages]]&lt;br /&gt;
&lt;br /&gt;
==TBI==&lt;br /&gt;
* [[4D DTI tractography in Slicer for TBI | Coregistration of structural and diffusion MRI towards 4D modeling of TBI]] (Bo Wang, Andrei Irimia, Micah Chambers, Jack Van Horn, Marcel Prastawa, Guido Gerig)&lt;br /&gt;
* [[Clinically oriented TBI connectivity analysis in Slicer]] (Andrei Irimia, Bo Wang, Micah Chambers, Jack Van Horn, Marcel Prastawa, Guido Gerig)&lt;br /&gt;
* [[Geometric metamorphosis for TBI]] (Danielle Pace, Stephen Aylward, Andrei Irimia, Micah Chambers)&lt;br /&gt;
* [[UKF Tractography in Slicer 4]] (Ryan Eckbo, Yogesh Rathi, Demian Wassermann, C.F Westin, Ron Kikinis)&lt;br /&gt;
* [[4D DTI analysis via longitudinal modeling of tract diffusivities]] (Anuja Sharma, Bo Wang, Andrei Irimia, Micah Chambers, Jack Van Horn, Marcel Prastawa, Guido Gerig)&lt;br /&gt;
&lt;br /&gt;
==Atrial Fibrillation==&lt;br /&gt;
* [[2013_Project_Week:CARMA_Scar_Segmentation|Scar Identification (LiangJia Zhu, Yi Gao, Josh Cates, Rob MacLeod, Allen Tannenbaum)]]&lt;br /&gt;
* [[2013_Project_Week:CARMA_PV_Antrum_Cut|SLICER MODULE: PV Antrum Cut Filter (Salma Bengali, Alan Morris, Josh Cates, Rob MacLeod)]]&lt;br /&gt;
* [[2013_Project_Week:CARMA_LA_Seg_Gopal|SLICER MODULE: Automated LA Segmentation by Gopal (Gopal Veni, Salma Bengali, Greg Gardner, Alan Morris, Josh Cates, Rob MacLeod)]]&lt;br /&gt;
* [[2013_Project_Week:CARMA_2D_Dilate|SLICER MODULE: 2D Dilate Filter (Salma Bengali, Greg Gardner, Alan Morris, Josh Cates, Rob MacLeod)]]&lt;br /&gt;
* [[2013_Project_Week:CARMA_PractialLASeg|SLICER WORKFLOW: Practical Manual LA Segmentation in Slicer (Salma Bengali, Greg Gardner, Alan Morris, Josh Cates, Rob MacLeod)]]&lt;br /&gt;
* [[2013_Project_Week:CARMA_RT_MRI|PROJECT PLANNING: Real Time MRI in Slicer with OpenIGT (Alan Morris, Ashvin George, Josh Cates, Rob MacLeod)]]&lt;br /&gt;
&lt;br /&gt;
==Slicer4 Extensions==&lt;br /&gt;
* [[2013_Project_Week:DTIExtension|Diffusion Tensor Images processing tools as Slicer4 extensions (Francois Budin, Adrien Kaiser, Martin Styner)]]&lt;br /&gt;
&lt;br /&gt;
==Huntington's Disease==&lt;br /&gt;
* [[2013_Project_Week:QualityAssuranceModule|Quality assurance module enhancements]] (Dave Welch, Hans Johnson)&lt;br /&gt;
* [[2013_Project_Week:PythonModules|Slicer interface to add Python modules to Slicer environment]] (Dave Welch)&lt;br /&gt;
* [[2013_Project_Week:FastFiducialRegistrationModule|Fast fiducial registration module]] (Dave Welch, Nicole Aucoin)&lt;br /&gt;
* [[2013_Project_Week:4DShapeAnalysis | 4D shape analysis: application to HD]] (James Fishbaugh, Marcel Prastawa, Hans Johnson, Guido Gerig)&lt;br /&gt;
&lt;br /&gt;
==Head and Neck Cancer==&lt;br /&gt;
* [[2013_Winter_Project_Week:MABS|Multi atlas-based segmentation]] (Sharp, Shusharina, Golland)&lt;br /&gt;
* [[2013_Winter_Project_Week:Hybrid_registration|Hybrid interactive-automatic registration]] (Shusharina, Sharp, Pieper)&lt;br /&gt;
* [[2013_Winter_Project_Week:PointSetRegistration|Constrained Point Set Registration]] (Kolesov, Karasev, Sharp, Tannenbaum)&lt;br /&gt;
* [[2013_Winter_Project_Week:InteractiveSegmentation|Interactive Segmentation and Supporting Utilities]] (Karasev, Kolesov, Tannenbaum)&lt;br /&gt;
&lt;br /&gt;
==Stroke==&lt;br /&gt;
* [[2013_Project_Week:WMH_Segmentation_for_Stroke|White Matter Hyperintensity Segmentation in Stroke (Adrian Dalca, Ramesh Sridharan, Polina Golland)]]&lt;br /&gt;
* [[2013_Project_Week:Imaging_Genetic_for_Stroke|Imaging Genetics for Stroke (Adrian Dalca, Kayhan Batmanghelich, Polina Golland)]]&lt;br /&gt;
&lt;br /&gt;
==Image-Guided Interventions==&lt;br /&gt;
* [[2013_Project_Week:UnitedSlicerIGTExtension|United SlicerIGT extension, repository, website]] (Tamas Ungi, Junichi Tokuda, Adam Rankin)&lt;br /&gt;
* [[2013_Project_Week:BRAINSFit_new_features|BRAINSFit in ITK4: extra functionality and testing for prostate MR registration (Andrey, Hans)]]&lt;br /&gt;
* [[2013_Project_Week:PkModeling_for_prostate_DCE_MRI|PkModeling for prostate DCE MRI (Jim, Andrey)]]&lt;br /&gt;
* [[2013_Winter_Project_Week_Gyne_Brachy|iGyne Needle Digitalization]] (Alireza Mehrtash, Csaba Pinter)&lt;br /&gt;
* [[2013_Project_Week:AbdominalNavigationModule|Abdominal navigation module (Junichi Tokuda, Atsushi Yamada)]]&lt;br /&gt;
* [[2013_Project_Week:MobileImageOverlay|Mobile image overlay augmented reality needle guidance]] (Adam Rankin, Tamas Ungi)&lt;br /&gt;
* [[2013_Project_Week:MRIAblation|Thermal monitoring tools for MRI-guided laser ablation therapy of brain tumor]] (Laurent Chauvin, Noby Hata, Hatsuho Mamata)&lt;br /&gt;
&lt;br /&gt;
==Radiation Therapy==&lt;br /&gt;
* [[2013_Project_Week:DicomRtExport|SlicerRT: DICOM RT export]] (Kevin Wang, Greg Sharp, Csaba Pinter)&lt;br /&gt;
* [[2013_Project_Week:RtBeamGeometry|SlicerRT: Beam geometry widgets]] (Csaba Pinter, Greg Sharp)&lt;br /&gt;
&lt;br /&gt;
==Medical Robotics==&lt;br /&gt;
* [[Configurable fiducial-based device to image registration]] (Junichi Tokuda)&lt;br /&gt;
* [[2013_Project_Week:UltrasoundIntegration | Reviving ultrasound integration for visual servoing]] (Laurent Chauvin, Noby Hata)&lt;br /&gt;
* [[2013_Project_Week:AgileMedicalRobot | Agile medical robotics development with Slicer: Case study with MRI compatible robot(Taka Kato, Atsushi Yamada, Noby Hata, Kazuhumi Onuma)]]&lt;br /&gt;
* [[2013_Project_Week:InvestigatingRoleOfOpenSourceInTranslationalResearch | Investigating role of open source in translational research (Miki Kumekawa)]]&lt;br /&gt;
&lt;br /&gt;
==NA-MIC Kit Internals==&lt;br /&gt;
*[[2013_Project_Week:WebbasedAnatomicalTeachingFramework|Web-based anatomical teaching framework for mi2b2]] (Daniel Haehn, Steve Pieper, Sonia Pujol, Randy Gollub, Rudolph Pienaar, Ellen Grant)&lt;br /&gt;
*[[2013_Project_Week:ITKv4Default|ITKv4 Default in Superbuild]] - [http://www.na-mic.org/Bug/search.php?project_id=3&amp;amp;sticky_issues=on&amp;amp;sortby=last_updated&amp;amp;dir=DESC&amp;amp;hide_status_id=80&amp;amp;tag_string=ITKv4 Issues] (Matt McCormick, Luis Ibanez, Hans Johnson, Jc, Bill Lorensen, Bradley Lowekamp)&lt;br /&gt;
*[[2013_Project_Week:MarkupsModule|Slicer4 Markups Module]] (Nicole Aucoin)&lt;br /&gt;
*[[2013_Project_Week:ColorHierarchies|Slicer4 Color Hierarchies]] (Nicole Aucoin)&lt;br /&gt;
*[[2013_Project_Week:PatientHierarchy|Slicer4 Patient Hierarchy]] (Csaba Pinter, Andrey Fedorov?, Nicole Aucoin, Steve Pieper)&lt;br /&gt;
*[[2013_Project_Week:ScalarBar|Slicer4 Scalar bar improvements]] (Kevin Wang, Nicole Aucoin Csaba Pinter)&lt;br /&gt;
*[[2013_Project_Week:CliMatlabInterface|Slicer4 CLI Matlab interface]] (Kevin Wang, Steve Pieper, Csaba Pinter)&lt;br /&gt;
*[[2013_Project_Week:PETStandardUptakeValueComputation| PET/CT SUV Module for Clinicians]] (Sonia Pujol, Markus Van Tol, Nicole Aucoin)&lt;br /&gt;
*[[2013_Project_Week:SelfTests|Slicer4 Self Test and Sample Data Refactor]] (Steve Pieper, Jim Miller, Jc)&lt;br /&gt;
*[[2013_Project_Week:SimplifyMRMLReference|Simplify MRML References]] - Issue [http://www.na-mic.org/Bug/view.php?id=2727 #2727] (Alex Yarmarkovich, Andras Lasso?, Steve Pieper, Julien Finet ?, Jc ?)&lt;br /&gt;
*[[2013_Project_Week:SlicerIPythonIntegration|Integration of IPython]] (Jc, Hans Johnson, Dave Welch, Steve Pieper, Matt McCormick)&lt;br /&gt;
*[[2013_Project_Week:SlicerDebianPackage|Slicer Debian package]] (Jc, Dominique Belhachemi ?, Greg Sharp)&lt;br /&gt;
*[[2013_Project_Week:SimplifyRendererMouseInteraction|Simplify renderer window mouse interaction]] - Mailing list [http://slicer-devel.65872.n3.nabble.com/Left-mouse-button-changes-window-level-Is-it-good-tt4026815.html thread] (Csaba, Greg?, Andriy?, Steve, Jc)&lt;br /&gt;
*[[2013_Project_Week:PotentialSolutionForDefiningRoleAttributesForVolumes|Potential solutions for defining roles and/or attributes for volumes that are preserved when the volume is processed.]] - Mailing list [http://slicer-devel.65872.n3.nabble.com/Volume-node-subclass-tt4026807.html thread] (Andras?, Greg?, Andriy?, Steve, Jc)&lt;br /&gt;
*[[2013_Project_Week:SteeredRegistration|Interactive Registration for Image Guided Therapy]] (Dirk Padfield, Jim Miller, Steve Pieper, Kunlin Cao)&lt;br /&gt;
*[[2013_Project_Week:Threaded SimpleITK Modules|Threaded SimpleITK Modules]] (Brad Lowekamp, Steve Pieper)&lt;br /&gt;
*[[2013_Project_Week:Slicer Personal Cloud]] (Rui Li, Jim Miller)&lt;br /&gt;
*[[2013_Project_Week:XNATSlicer|XNATSlicer]] (Sunil Kumar, Dan Marcus, Steve Pieper, etc.)&lt;br /&gt;
*[[2013_Project_Week:PGP_Keysigning|PGP Keysigning]] (Matt McCormick, Luis Ibanez, Bradley Lowekamp)&lt;/div&gt;</summary>
		<author><name>Grclirui</name></author>
		
	</entry>
</feed>