<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://vrl.cs.brown.edu/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Josh+Tveite</id>
	<title>VrlWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://vrl.cs.brown.edu/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Josh+Tveite"/>
	<link rel="alternate" type="text/html" href="http://vrl.cs.brown.edu/wiki/index.php/Special:Contributions/Josh_Tveite"/>
	<updated>2026-04-19T14:59:24Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.1</generator>
	<entry>
		<id>http://vrl.cs.brown.edu/wiki/index.php?title=Dinosaur_Track_Viewer/Preprocess&amp;diff=6929</id>
		<title>Dinosaur Track Viewer/Preprocess</title>
		<link rel="alternate" type="text/html" href="http://vrl.cs.brown.edu/wiki/index.php?title=Dinosaur_Track_Viewer/Preprocess&amp;diff=6929"/>
		<updated>2017-09-12T01:32:47Z</updated>

		<summary type="html">&lt;p&gt;Josh Tveite: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= dinopreprocess=&lt;br /&gt;
This page covers the use of a set of scripts used to take the raw data produced by the LAMMPS simulation and convert it to a format that the Dinosaur Track Viewer can use.&lt;br /&gt;
&lt;br /&gt;
The scripts are available at https://github.com/jtveite/dinopreprocess . Please message [[User:Josh Tveite]] if you don&#039;t have access.&lt;br /&gt;
&lt;br /&gt;
Note that I am currently working on converting this page from the github readme version, so go there for images (should be fixed soon).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To use, put your dataset exported from Ovito into the root directory of this named dataset.lammps (symlinks are handy: `ln -s /path/to/your/file dataset.lammps`) then type make. Currently on CCV you need to pause partway through and switch python modules (2 is needed for clusters and tris due to using scipy, 3 is needed for the other 2 parts).&lt;br /&gt;
&lt;br /&gt;
Module requirements are (I believe) only python and scikit-learn.&lt;br /&gt;
&lt;br /&gt;
(Note that you need to edit the produced dataset.feet file to have the first line point to where your foot files are located relative to the program launch directory.)&lt;br /&gt;
&lt;br /&gt;
==Exporting from Ovito==&lt;br /&gt;
&lt;br /&gt;
So how do you go from new data to an exported file the makefile above can use? Read on!&lt;br /&gt;
&lt;br /&gt;
Your data should come as a series of .bin files in a folder (unless Peter changes the way he&#039;s doing things/someone else uses this). First fire up Ovito and go to the load screen. If you don&#039;t have Ovito you can download it at https://ovito.org/. If you are on the Brown CCV system you need to run &lt;br /&gt;
 module load ovito/2.6.2&lt;br /&gt;
and &lt;br /&gt;
 module load nvidia-driver/310.32&lt;br /&gt;
though I&#039;ve found Ovito to feel buggy sometimes there.&lt;br /&gt;
&lt;br /&gt;
![HowToLoad](images/1-load.png)&lt;br /&gt;
&lt;br /&gt;
Select the appropriate column mapping for this export. Whoever gave you the data should be able to give you a good idea of what to choose for this, or the following image is a good starting guess.&lt;br /&gt;
&lt;br /&gt;
![Mapping](images/2-mapping.png)&lt;br /&gt;
&lt;br /&gt;
Now you should be able to see your data in Ovito. You can also select the data in the modification pipeline on the right of the screen to see info about how Ovito sees it (as below).&lt;br /&gt;
&lt;br /&gt;
![Overview](images/3-overview.png)&lt;br /&gt;
&lt;br /&gt;
If you click on &amp;quot;Add Modification&amp;quot; you will get a screen with a list of all the modifications Ovito supports. There are a lot. I&#039;ve pointed in red to the few I use for this and blue to the ones that are occasionally useful.&lt;br /&gt;
&lt;br /&gt;
The way Ovito works is to have a pipeline of these modifications acting from the bottom to the top on the data.&lt;br /&gt;
&lt;br /&gt;
![Modifications Pipeline](images/4-modifications.png)&lt;br /&gt;
&lt;br /&gt;
The first modification to do is a &#039;Freeze Property&#039;. This stores the value of a property (in our case position) at a given frame (in our case the first) and allows you to access it in other frames. We use this for our layers. Press the &#039;Take new snapshot&#039; button to take the snapshot (be sure frame 0 is loaded!)&lt;br /&gt;
&lt;br /&gt;
![Freeze](images/5-freeze.png)&lt;br /&gt;
&lt;br /&gt;
Now we want to select the particles we will keep. The way we have been doing this is to select layers of constant z. One way of doing so is shown below.&lt;br /&gt;
&lt;br /&gt;
 fmod(FreezePos.3 + 1, 0.02) &amp;lt; 0.001&lt;br /&gt;
&lt;br /&gt;
Fmod does a floating point remainder operation. This allows us to easily find a number of evenly spaced layers. I add one because the datasets tend to be centered around 0 and wind up with a double thickness layer at 0 due to Ovito&#039;s implementation of fmod. 0.02 is simply a convenient value to start at as it frequently gives 3-5 layers (I tend to aim for 4). The last number is the thickness of the slice and can be varied at your leisure.&lt;br /&gt;
&lt;br /&gt;
![Select](images/6-expr.png)&lt;br /&gt;
&lt;br /&gt;
Notice how this selection starts a fair bit below the top. You can adjust the +1 (or add another small factor since to go up is negative) as seen below.&lt;br /&gt;
&lt;br /&gt;
![Better select](images/7-expradj.png)&lt;br /&gt;
&lt;br /&gt;
Now we want to delete the particles that aren&#039;t selected. To do this we add two items to the modification pipeline. First an &#039;Invert Selection&#039; and then a &#039;Delete Selected Particles&#039;.&lt;br /&gt;
&lt;br /&gt;
The reason I choose to select the ones I keep and then invert is so that I can easily see the number of particles being selected (pointed out better in a while).&lt;br /&gt;
&lt;br /&gt;
![DELETE](images/8-deleted.png)&lt;br /&gt;
&lt;br /&gt;
Now we get into the most subjective part. Trimming the dataset to minimize the particles on the edge that are uninteresting.&lt;br /&gt;
&lt;br /&gt;
To start we use the &#039;Compute Property&#039; modification. This allows us to add a property to the particle based on existing properties. In this case we want to compute the distance a particle is from it&#039;s starting position. (I cheat and frequently use Manhattan distance of even just `abs(FreezePos.3 - Position.Z)` since it&#039;s just informative.)&lt;br /&gt;
&lt;br /&gt;
![Compute Prop](images/9-compute.png)&lt;br /&gt;
&lt;br /&gt;
We then add a &#039;Color Coding&#039; modification. This lets us choose a value and color particles by it. Choose &#039;Distance&#039; or whatever you named your distance property. It will show a color gradient on the image as below. You may need to click &#039;Adjust Range&#039; to make it match the range.&lt;br /&gt;
&lt;br /&gt;
![Color!](images/10-colorcode.png)&lt;br /&gt;
&lt;br /&gt;
Well this isn&#039;t helpful. It looks like some particles moved a ton and are screwing up the color scheme and making it difficult for us to tell what&#039;s going on. Setting a lower value for the &#039;End Value&#039; fixes this.&lt;br /&gt;
&lt;br /&gt;
![Better color](images/11-coloradj.png)&lt;br /&gt;
&lt;br /&gt;
Now that we can see which particles didn&#039;t move much, we want to select and delete them. Do this by simple comparison with your freezed position. I usually start at 0, see how it looks (awful), then adjust by trial and error until it&#039;s about right.&lt;br /&gt;
&lt;br /&gt;
In this case I wound up with `FreezePos.1 &amp;gt; 0.06 || FreezePos.2 &amp;gt; 0.11`. Usually this has 4 statements instead of 2, but it was fairly tight on the other ends.&lt;br /&gt;
&lt;br /&gt;
![Trim selection](images/12-trimsel.png)&lt;br /&gt;
&lt;br /&gt;
When you&#039;re happy with the selection I move the trimming expression select down near the bottom of the pipeline so it happens first, then add a &#039;Delete Selected Particles&#039;. I do this so I can get an accurate count of particles later. &lt;br /&gt;
&lt;br /&gt;
![Trim Moved](images/13-trimmov.png)&lt;br /&gt;
&lt;br /&gt;
Look back at your first expression select. In the bottom is a number of particles selected. This is a helpful number to know how well your animation will run. (I usually aim for between 50k and 200k particles, but it can certainly run with more.)&lt;br /&gt;
&lt;br /&gt;
Good ways to reduce the number of particles include having fewer layers, reducing layer size, and trimming the outside tighter.&lt;br /&gt;
&lt;br /&gt;
![Counting](images/14-count.png)&lt;br /&gt;
&lt;br /&gt;
If that&#039;s not enough, another way you can trim is to subsample within the particles. Ideally you want this to be random, but random is hard. I simulate random by doing things with the `ParticleIdentifier` and make poor attempts at creating my own PRNG with this. My goto now is to take &lt;br /&gt;
&lt;br /&gt;
 sin(ParticleIdentifer * A + B) &amp;gt; x&lt;br /&gt;
&lt;br /&gt;
where `A` and `B` are large numbers pulled from my head  and `x` is a threshold value (0 samples half, higher takes less). This seems to approximate random particle selection. (Peter also claims that the IDs are basically random so just using them should be fine, but I didn&#039;t know that when I started doing this.)&lt;br /&gt;
&lt;br /&gt;
Notice how now there are half as many particles as before. (It wasn&#039;t really necessary for this dataset though.)&lt;br /&gt;
&lt;br /&gt;
![Random!](images/15-subsample.png)&lt;br /&gt;
&lt;br /&gt;
Now to write the file! Go back to the file menu and choose export.&lt;br /&gt;
&lt;br /&gt;
![Export](images/16-export.png)&lt;br /&gt;
&lt;br /&gt;
You want to save as type &#039;LAMMPS Dump File&#039;. Give it a name of your choosing. Conventions are good here. I advise using the same names the scientists you&#039;re working with do, perhaps adding properties of your export (# particles, #/location of layers, subsample rate, if you only export some of the frames).&lt;br /&gt;
&lt;br /&gt;
![Save Type](images/17-saveas.png)&lt;br /&gt;
&lt;br /&gt;
The export settings screen should come up now. You want to export as a sequence (usually every 1 frame, occasionally less) with a single file destination.&lt;br /&gt;
&lt;br /&gt;
The properties that should be written are ParticleIdentifier and Position.&lt;br /&gt;
&lt;br /&gt;
![Export properties](images/18-expsettings.png)&lt;br /&gt;
&lt;br /&gt;
Now just press OK and then go get a cup of coffee or sleep for a night or something. It frequently takes a while to run (mostly spent loading new files as far as I can tell). Once it&#039;s done you can go run the Makefile to finish processing as detailed above (and then go get another coffee).&lt;/div&gt;</summary>
		<author><name>Josh Tveite</name></author>
	</entry>
	<entry>
		<id>http://vrl.cs.brown.edu/wiki/index.php?title=Dinosaur_Track_Viewer/Controls&amp;diff=6926</id>
		<title>Dinosaur Track Viewer/Controls</title>
		<link rel="alternate" type="text/html" href="http://vrl.cs.brown.edu/wiki/index.php?title=Dinosaur_Track_Viewer/Controls&amp;diff=6926"/>
		<updated>2017-07-26T15:03:46Z</updated>

		<summary type="html">&lt;p&gt;Josh Tveite: Created page with &amp;quot;The controls work on a modal basis. The mouse (usually left hand) is used for state changes such as changing what mode of interaction you are in and clearing paths. The wand (...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The controls work on a modal basis. The mouse (usually left hand) is used for state changes such as changing what mode of interaction you are in and clearing paths. The wand (right hand) is used for direction interactions with the data (selecting a pathline, changing particle size, moving the data). &lt;br /&gt;
&lt;br /&gt;
These controls are current as of July 26, 2017&lt;br /&gt;
&lt;br /&gt;
=Mouse=&lt;br /&gt;
The mouse had a D-Pad on the left side as well as standard mouse buttons (referred to as Left_Click and Right_Click here). D-Pad directions are given with the mouse held with the buttons pointed to the right.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mouse_Up&#039;&#039;&#039;: Goes to &#039;&#039;standard&#039;&#039; mode.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mouse_Right&#039;&#039;&#039;: Goes to &#039;&#039;similarity&#039;&#039; mode.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mouse_Left&#039;&#039;&#039;: Clears all pathlines shown.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mouse_Down&#039;&#039;&#039;: Changes coloring and slicing modes.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mouse_Click_Left&#039;&#039;&#039;: Toggles showing the surface..&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mouse_Click_Right&#039;&#039;&#039;: Toggles slicing.&lt;br /&gt;
&lt;br /&gt;
=Wand=&lt;br /&gt;
Some wand buttons work in all modes. Some change behavior depending on the mode. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Bottom_Trigger&#039;&#039;&#039;: Move the dataset while held.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Top_Trigger&#039;&#039;&#039;: Show a pathline from the selected particle. (currently seems buggy on getting events)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Select&#039;&#039;&#039;: Toggle playing the animation.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Joystick_Click&#039;&#039;&#039;: Move the slide.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Wand_Left&#039;&#039;&#039;: Unless specified below, moves the animation forward one frame.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Wand_Right&#039;&#039;&#039;: Unless specified below, moves the animation backward one frame.&lt;br /&gt;
&lt;br /&gt;
===Standard===&lt;br /&gt;
Typical mode to use for interacting with the animation&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Wand_Up&#039;&#039;&#039;:  Make particles larger&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Wand_Down&#039;&#039;&#039;: Make particles smaller&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Wand_Left&#039;&#039;&#039;: Move back one frame&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Wand_Right&#039;&#039;&#039;: Move forward one frame&lt;br /&gt;
&lt;br /&gt;
===Similarity===&lt;br /&gt;
Allows you to select one particle and see paths that took similar paths to it.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Wand_Up&#039;&#039;&#039;:  Increase number of paths being shown&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Wand_Down&#039;&#039;&#039;: Decrease number of paths being shown&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Wand_Left&#039;&#039;&#039;: Select a particle to find similar paths. Also resets to &#039;&#039;Standard&#039;&#039; mode.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Wand_Right&#039;&#039;&#039;: Toggles coloring of paths (default by similarity, toggles to by time)&lt;br /&gt;
&lt;br /&gt;
===Cluster===&lt;br /&gt;
&#039;&#039;&#039;Wand_Up&#039;&#039;&#039;:  Go to the next cluster.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Wand_Down&#039;&#039;&#039;: Go to the previous cluster.&lt;/div&gt;</summary>
		<author><name>Josh Tveite</name></author>
	</entry>
	<entry>
		<id>http://vrl.cs.brown.edu/wiki/index.php?title=Dinosaur_Track_Viewer&amp;diff=6925</id>
		<title>Dinosaur Track Viewer</title>
		<link rel="alternate" type="text/html" href="http://vrl.cs.brown.edu/wiki/index.php?title=Dinosaur_Track_Viewer&amp;diff=6925"/>
		<updated>2017-07-26T14:42:01Z</updated>

		<summary type="html">&lt;p&gt;Josh Tveite: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The dinosaur track viewer is a project made initially by [[User:Josh Tveite|Josh Tveite]] in collaboration with Dr. Stephen Gatesy and Morgan Turner to do 3D interactive visualization in the Yurt of their work studying the creation of dinosaur tracks. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The primary input to the program is a datafile containing a list of points on separate lines. Each line contains an integer for the ID of the point and then a series of xyz coordinates over time (all represented as standard text decimals, separated by spaces). There are also a number of optional inputs to show separate features, such as a list of triangles to show the surface, a list of particle IDs to show the pathlines of initially, and sets of particles that are in the same cluster. All of these input files can be specified in a config file fed to the program, of the form &amp;quot;Key=Value&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
The process to generate all of these inputs from the raw data is specified at [[Dinosaur Track Viewer/Preprocess]].&lt;br /&gt;
&lt;br /&gt;
A list of controls (which do change somewhat frequently) is available at [[Dinosaur Track Viewer/Controls]].&lt;br /&gt;
&lt;br /&gt;
The source code is currently stored in a private github repository. Email [[User:Josh Tveite | Josh]] (jtveite@gmail.com) for access.&lt;br /&gt;
&lt;br /&gt;
[[Category:Software]] [[Category:User Documentation]]&lt;/div&gt;</summary>
		<author><name>Josh Tveite</name></author>
	</entry>
	<entry>
		<id>http://vrl.cs.brown.edu/wiki/index.php?title=Dinosaur_Track_Viewer&amp;diff=6924</id>
		<title>Dinosaur Track Viewer</title>
		<link rel="alternate" type="text/html" href="http://vrl.cs.brown.edu/wiki/index.php?title=Dinosaur_Track_Viewer&amp;diff=6924"/>
		<updated>2017-07-26T14:29:58Z</updated>

		<summary type="html">&lt;p&gt;Josh Tveite: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The dinosaur track viewer is a project made initially by [[User:Josh Tveite|Josh Tveite]] in collaboration with Dr. Stephen Gatesy and Morgan Turner to do 3D interactive visualization in the Yurt of their work studying the creation of dinosaur tracks. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The primary input to the program is a datafile containing a list of points on separate lines. Each line contains an integer for the ID of the point and then a series of xyz coordinates over time (all represented as standard text decimals, separated by spaces). There are also a number of optional inputs to show separate features, such as a list of triangles to show the surface, a list of particle IDs to show the pathlines of initially, and sets of particles that are in the same cluster. All of these input files can be specified in a config file fed to the program, of the form &amp;quot;Key=Value&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
The process to generate all of these inputs from the raw data is specified at [[Dinosaur Track Viewer/Preprocess]].&lt;br /&gt;
&lt;br /&gt;
The source code is currently stored in a private github repository. Email [[User:Josh Tveite | Josh]] (jtveite@gmail.com) for access.&lt;br /&gt;
&lt;br /&gt;
[[Category:Software]] [[Category:User Documentation]]&lt;/div&gt;</summary>
		<author><name>Josh Tveite</name></author>
	</entry>
	<entry>
		<id>http://vrl.cs.brown.edu/wiki/index.php?title=Dinosaur_Track_Viewer:_Preprocess&amp;diff=6923</id>
		<title>Dinosaur Track Viewer: Preprocess</title>
		<link rel="alternate" type="text/html" href="http://vrl.cs.brown.edu/wiki/index.php?title=Dinosaur_Track_Viewer:_Preprocess&amp;diff=6923"/>
		<updated>2017-07-26T14:29:50Z</updated>

		<summary type="html">&lt;p&gt;Josh Tveite: moved Dinosaur Track Viewer: Preprocess to Dinosaur Track Viewer/Preprocess&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Dinosaur Track Viewer/Preprocess]]&lt;/div&gt;</summary>
		<author><name>Josh Tveite</name></author>
	</entry>
	<entry>
		<id>http://vrl.cs.brown.edu/wiki/index.php?title=Dinosaur_Track_Viewer/Preprocess&amp;diff=6922</id>
		<title>Dinosaur Track Viewer/Preprocess</title>
		<link rel="alternate" type="text/html" href="http://vrl.cs.brown.edu/wiki/index.php?title=Dinosaur_Track_Viewer/Preprocess&amp;diff=6922"/>
		<updated>2017-07-26T14:29:50Z</updated>

		<summary type="html">&lt;p&gt;Josh Tveite: moved Dinosaur Track Viewer: Preprocess to Dinosaur Track Viewer/Preprocess&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This details the process for taking raw data given by scientists and converting it to a format usable by the [[Dinosaur Track Viewer]]. It will be more complete later today when I figure out how images work here.&lt;/div&gt;</summary>
		<author><name>Josh Tveite</name></author>
	</entry>
	<entry>
		<id>http://vrl.cs.brown.edu/wiki/index.php?title=Dinosaur_Track_Viewer&amp;diff=6921</id>
		<title>Dinosaur Track Viewer</title>
		<link rel="alternate" type="text/html" href="http://vrl.cs.brown.edu/wiki/index.php?title=Dinosaur_Track_Viewer&amp;diff=6921"/>
		<updated>2017-07-26T14:28:51Z</updated>

		<summary type="html">&lt;p&gt;Josh Tveite: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The dinosaur track viewer is a project made initially by [[User:Josh Tveite|Josh Tveite]] in collaboration with Dr. Stephen Gatesy and Morgan Turner to do 3D interactive visualization in the Yurt of their work studying the creation of dinosaur tracks. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The primary input to the program is a datafile containing a list of points on separate lines. Each line contains an integer for the ID of the point and then a series of xyz coordinates over time (all represented as standard text decimals, separated by spaces). There are also a number of optional inputs to show separate features, such as a list of triangles to show the surface, a list of particle IDs to show the pathlines of initially, and sets of particles that are in the same cluster. All of these input files can be specified in a config file fed to the program, of the form &amp;quot;Key=Value&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
The process to generate all of these inputs from the raw data is specified at [[Dinosaur Track Viewer: Preprocess]].&lt;br /&gt;
&lt;br /&gt;
The source code is currently stored in a private github repository. Email [[User:Josh Tveite | Josh]] (jtveite@gmail.com) for access.&lt;br /&gt;
&lt;br /&gt;
[[Category:Software]] [[Category:User Documentation]]&lt;/div&gt;</summary>
		<author><name>Josh Tveite</name></author>
	</entry>
	<entry>
		<id>http://vrl.cs.brown.edu/wiki/index.php?title=Dinosaur_Track_Viewer/Preprocess&amp;diff=6920</id>
		<title>Dinosaur Track Viewer/Preprocess</title>
		<link rel="alternate" type="text/html" href="http://vrl.cs.brown.edu/wiki/index.php?title=Dinosaur_Track_Viewer/Preprocess&amp;diff=6920"/>
		<updated>2017-07-26T13:39:47Z</updated>

		<summary type="html">&lt;p&gt;Josh Tveite: Created page with &amp;quot;This details the process for taking raw data given by scientists and converting it to a format usable by the Dinosaur Track Viewer. It will be more complete later today wh...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This details the process for taking raw data given by scientists and converting it to a format usable by the [[Dinosaur Track Viewer]]. It will be more complete later today when I figure out how images work here.&lt;/div&gt;</summary>
		<author><name>Josh Tveite</name></author>
	</entry>
	<entry>
		<id>http://vrl.cs.brown.edu/wiki/index.php?title=Dinosaur_Track_Viewer&amp;diff=6919</id>
		<title>Dinosaur Track Viewer</title>
		<link rel="alternate" type="text/html" href="http://vrl.cs.brown.edu/wiki/index.php?title=Dinosaur_Track_Viewer&amp;diff=6919"/>
		<updated>2017-07-26T13:38:38Z</updated>

		<summary type="html">&lt;p&gt;Josh Tveite: Created page with &amp;quot;The dinosaur track viewer is a project made initially by Josh Tveite in collaboration with Dr. Stephen Gatesy and Morgan Turner to do 3D interactive visua...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The dinosaur track viewer is a project made initially by [[User:Josh Tveite|Josh Tveite]] in collaboration with Dr. Stephen Gatesy and Morgan Turner to do 3D interactive visualization in the Yurt of their work studying the creation of dinosaur tracks. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The primary input to the program is a datafile containing a list of points on separate lines. Each line contains an integer for the ID of the point and then a series of xyz coordinates over time (all represented as standard text decimals, separated by spaces). There are also a number of optional inputs to show separate features, such as a list of triangles to show the surface, a list of particle IDs to show the pathlines of initially, and sets of particles that are in the same cluster. All of these input files can be specified in a config file fed to the program, of the form &amp;quot;Key=Value&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
The process to generate all of these inputs from the raw data is specified at [[Dinosaur Track Viewer: Preprocess]].&lt;br /&gt;
&lt;br /&gt;
The source code is currently stored in a private github repository. Email [[User:Josh Tveite | Josh]] (jtveite@gmail.com) for access.&lt;/div&gt;</summary>
		<author><name>Josh Tveite</name></author>
	</entry>
	<entry>
		<id>http://vrl.cs.brown.edu/wiki/index.php?title=User:Josh_Tveite&amp;diff=6918</id>
		<title>User:Josh Tveite</title>
		<link rel="alternate" type="text/html" href="http://vrl.cs.brown.edu/wiki/index.php?title=User:Josh_Tveite&amp;diff=6918"/>
		<updated>2017-07-26T13:26:11Z</updated>

		<summary type="html">&lt;p&gt;Josh Tveite: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Former Masters Student from Fall 2015 - Spring 2017.&lt;br /&gt;
&lt;br /&gt;
Primary project was the [[Dinosaur Track Viewer]].&lt;/div&gt;</summary>
		<author><name>Josh Tveite</name></author>
	</entry>
	<entry>
		<id>http://vrl.cs.brown.edu/wiki/index.php?title=Plans_and_Goals&amp;diff=6875</id>
		<title>Plans and Goals</title>
		<link rel="alternate" type="text/html" href="http://vrl.cs.brown.edu/wiki/index.php?title=Plans_and_Goals&amp;diff=6875"/>
		<updated>2016-08-29T17:06:05Z</updated>

		<summary type="html">&lt;p&gt;Josh Tveite: /* Josh */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;On this page the members of the [[VRL]] record and refine their goals for the current semester.  This is a living document in which [[dhl]] will provide feedback.  See the bottom of the page for links to past plans &amp;amp; goals documents.&lt;br /&gt;
&lt;br /&gt;
== Current Schedule ==&lt;br /&gt;
Meetings are on Mondays.  The authoritative list is in dhl&#039;s calendar.&lt;br /&gt;
&lt;br /&gt;
== Current Plans and Goals (Summer &#039;16) ==&lt;br /&gt;
&lt;br /&gt;
=== [[User:Connor Gramazio|Connor]] ===&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;Boldfaced&amp;lt;/span&amp;gt;&#039;&#039;&#039; goals are those that mark the high-level success of each project.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;Dissertation&#039;&#039;&#039; =====&lt;br /&gt;
* By 29 July: &amp;lt;s&amp;gt;Init dissertation github repo that contains a compilable TeX document, concatenating all previous papers&amp;lt;/s&amp;gt;&lt;br /&gt;
* By 8 August: &amp;lt;s&amp;gt;&#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;send DHL an updated dissertation skeleton with chapter names and contributions&amp;lt;/span&amp;gt;&#039;&#039;&#039;&amp;lt;/s&amp;gt;&lt;br /&gt;
* By end of summer: complete first draft of dissertation through present completed work&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;Color&#039;&#039;&#039; =====&lt;br /&gt;
* By 22 July: &amp;lt;s&amp;gt;Complete Colorgorical web app load balancing + last remaining bug fixes&amp;lt;/s&amp;gt;&lt;br /&gt;
* By 22 July: &amp;lt;s&amp;gt;submit travel funding to the graduate school&amp;lt;/s&amp;gt;&lt;br /&gt;
* By 29 July: &amp;lt;s&amp;gt;Toggle the Github repo for Colorgorical to public&amp;lt;/s&amp;gt;&lt;br /&gt;
* By 1 August:   &amp;lt;s&amp;gt;&#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;submit camera-ready to Precision Conference&amp;lt;/span&amp;gt;&#039;&#039;&#039;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;Genomics Case Study&#039;&#039;&#039; =====&lt;br /&gt;
* By 5 August: &amp;lt;s&amp;gt;e-mail David a revised TVCG manuscript wrt VAST reviewer comments&amp;lt;/s&amp;gt;&lt;br /&gt;
* By end of summer:  &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;submit revised manuscript to TVCG&amp;lt;/span&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;BLADE&#039;&#039;&#039; =====&lt;br /&gt;
* By 29 July: &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;Complete BLADE interaction log mining user study&amp;lt;/span&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
* By 5 August: e-mail David and Jeff the complete study results&lt;br /&gt;
* By 12 August: &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;email relevant committee members the new MAGI feature to implement/evaluate based on BLADE interaction log study results&amp;lt;/span&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
* By 12 August: send skeleton of eventual paper to David and Jeff&lt;br /&gt;
* By 26 August: Complete (1) related work, (2) BLADE interaction log mining user study results + discussion&lt;br /&gt;
* By end of summer: &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;demo completed new feature to relevant committee members&amp;lt;/span&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;Job hunting&#039;&#039;&#039; =====&lt;br /&gt;
* &amp;lt;s&amp;gt;Update personal website with new publication + job-seeking-geared information&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;Update resume _and_ C.V.&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;Compile list of companies to apply to in LA and elsewhere&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== [[User:Hua Guo|Hua]] ===&lt;br /&gt;
*ThoughtFlow design study re-submission to TVCG*&lt;br /&gt;
*ThoughtFlow interaction modeling*&lt;br /&gt;
*Dissertation writing*&lt;br /&gt;
** Abstract and introduction&lt;br /&gt;
*Teaching Interdisciplinary SciVis*&lt;br /&gt;
*CHS sensemaking model grant proposal*&lt;br /&gt;
&lt;br /&gt;
=== [[User:Ryan Cabeen|Ryan]] ===&lt;br /&gt;
&lt;br /&gt;
* Grants&lt;br /&gt;
** Renewals&lt;br /&gt;
*** SMART2 - July 5?&lt;br /&gt;
*** SA/AIDS - Sept 14&lt;br /&gt;
** Career dev&lt;br /&gt;
*** NIH: F32, K99/R00, etc?&lt;br /&gt;
* Papers&lt;br /&gt;
** Tractography eval&lt;br /&gt;
*** multi vs single&lt;br /&gt;
*** bundle selection mechanisms&lt;br /&gt;
** Diffusion model eval&lt;br /&gt;
*** relate parameters of more complex models to tensors&lt;br /&gt;
*** atlasing with multiple diffusion models&lt;br /&gt;
** Collabs&lt;br /&gt;
*** Bipolar imaging with Dan&lt;br /&gt;
*** Something with Ani?&lt;br /&gt;
*** Ongoing work with RP group&lt;br /&gt;
* Training of incoming phd students&lt;br /&gt;
** Test suite and shared repo of brain tools&lt;br /&gt;
** Clean interface for novice users&lt;br /&gt;
&lt;br /&gt;
=== [[User:David Laidlaw|David]] (for sabbatical) ===&lt;br /&gt;
&lt;br /&gt;
* yurt&lt;br /&gt;
** color calibrated within a few JND&#039;s by end of June&lt;br /&gt;
** seams calibrated within a few mm&#039;s by end of June&lt;br /&gt;
** application(s) (re)submitted for some fidelity-based research&lt;br /&gt;
** application(s) submitted for some collaboration-based research, perhaps with Gatesy/Francois/Josh/Johannes&lt;br /&gt;
** wiki &amp;quot;how to&amp;quot; for creating a yurt app, perhaps w/Johannes, before cs237 for sure!&lt;br /&gt;
** scientific VR software tools review document by end of summer, from developer to non-programming user&lt;br /&gt;
*** maybe include Simon Su, Kreylos, others; EnSight, Paravision&lt;br /&gt;
** paper out about R&amp;amp;D, model on Cruz, by end of summer&lt;br /&gt;
* VT&lt;br /&gt;
** seam experiment&lt;br /&gt;
** submit TTTS manuscript&lt;br /&gt;
* orthopedics&lt;br /&gt;
** tools continuing to run well (despite upgrade)&lt;br /&gt;
*** get registration pipeline to pass regression tests&lt;br /&gt;
** maybe pursue diffusion imaging in joints&lt;br /&gt;
* diffusion MRI&lt;br /&gt;
** two renewal grants with Rob Paul and Ryan over summer and fall&lt;br /&gt;
*** Sept 14, SA/AIDS&lt;br /&gt;
*** sooner, SMART/Aging&lt;br /&gt;
** Dickstein paper and maybe proposal&lt;br /&gt;
** tractography comparison paper with Ryan during summer&lt;br /&gt;
* keep all advisees moving along appropriately&lt;br /&gt;
** prepare for incoming triplet: brains, hands, yurt&lt;br /&gt;
&lt;br /&gt;
=== [[User:Johannes Novotny|Johannes]] ===&lt;br /&gt;
&lt;br /&gt;
* Cave/Yurt&lt;br /&gt;
** Complete user study with Wesley&lt;br /&gt;
** Design next experiment for VT project&lt;br /&gt;
** Work on VR volume visualization (3D Visualizer/CaveVOX/...)&lt;br /&gt;
** Get more concrete collaboration with students of Robbert Creton or Kristi Wharton&lt;br /&gt;
** Help out with Demos when needed&lt;br /&gt;
** Explore use of VTK in VRG3D&lt;br /&gt;
&lt;br /&gt;
* CS137&lt;br /&gt;
** Set up clean development branch for CavePainting&lt;br /&gt;
** Get acquainted with the sourcecode&lt;br /&gt;
** Fix some bugs if possible&lt;br /&gt;
&lt;br /&gt;
* Fitts&#039; Law&lt;br /&gt;
** Work on paper with HCI seminar group&lt;br /&gt;
&lt;br /&gt;
* Thesis Project &lt;br /&gt;
** Restart discussions with Derek and Kristi&lt;br /&gt;
** Explore collaborations for genome folding visualizations&lt;br /&gt;
** by December: Create Thesis proposal draft&lt;br /&gt;
&lt;br /&gt;
=== [[User:Bruce Campbell|Bruce]] ===&lt;br /&gt;
&lt;br /&gt;
* Funding&lt;br /&gt;
** Raise funding to support Visiting Scientist position for 2016&lt;br /&gt;
** Submit proposals to STAC, NSF ITEST, and ONR by end of 2015&lt;br /&gt;
** Create ten-page white paper for Jan 31, 2016 to send to other funding organizations&lt;br /&gt;
&lt;br /&gt;
* Cave/Yurt&lt;br /&gt;
** Axial Seamount application:&lt;br /&gt;
*** Implement Animation controls by Dec 31, 2015&lt;br /&gt;
*** Implement Grab and Manipulate interaction by Jan 30, 2016&lt;br /&gt;
** Create Plan for 2016 work by Jan 30, 2016 (promote here):&lt;br /&gt;
*** Continuous overall contribution: Useful Temporal Interaction GUIs&lt;br /&gt;
*** Prioritize other COVE (http://cove.ocean.washington.edu) features integration&lt;br /&gt;
*** Pursue Python interpreter integration unless other Yurt methods pan out&lt;br /&gt;
*** Anticipate STAC/ITEST programming needs for Yurt&lt;br /&gt;
*** Continue to pursue possible student participation&lt;br /&gt;
&lt;br /&gt;
* CS 137&lt;br /&gt;
** Continue to attend and revisit notes from UW INDE 543&lt;br /&gt;
** CG&amp;amp;A &#039;&#039;Art on Graphics&#039;&#039; column to layout by February 15, 2016&lt;br /&gt;
&lt;br /&gt;
* Distributed Cognition&lt;br /&gt;
** Create updated mind map (with bibliography) by Dec 31, 2015&lt;br /&gt;
** Create d-cog metric and test plan to support VIS/VAST paper by Jan 15, 2015&lt;br /&gt;
** VIS/VAST paper abstract ready by March deadline&lt;br /&gt;
&lt;br /&gt;
* Personal Development&lt;br /&gt;
** Continuous: Improve research process effectiveness including a better parallel writing process&lt;br /&gt;
** Continuous: Improve conciseness in e-mail and research-related writing&lt;br /&gt;
** Continuous: Improve at sketching ideas&lt;br /&gt;
&lt;br /&gt;
=== [[User:Josh Tveite|Josh]] ===&lt;br /&gt;
&lt;br /&gt;
* Research Comps&lt;br /&gt;
** Give proposal presentation - very soon!&lt;br /&gt;
** Get Dino Tracks program to a state where it can be used for the study.&lt;br /&gt;
** Create and run user study &lt;br /&gt;
** (More detailed schedule/milestones in comps proposal pdf)&lt;br /&gt;
&lt;br /&gt;
* Coursework&lt;br /&gt;
** Use 237 to further my understanding of:&lt;br /&gt;
*** Effective ways of creating scientific visualizations&lt;br /&gt;
*** Effectively communicating ideas through writing.&lt;br /&gt;
*** Evaluating scientific visualizations.&lt;br /&gt;
** Find and perform well in other course (ideally somewhat applicable to future research)&lt;br /&gt;
&lt;br /&gt;
* General Yurt&lt;br /&gt;
** Continue to give demos as needed&lt;br /&gt;
** Convert dino tracks to MinVR to make more maintainable and help MinVR team by giving feedback on what works/doesn&#039;t&lt;br /&gt;
&lt;br /&gt;
=== [[User: Eleanor Tursman|Eleanor]] ===&lt;br /&gt;
* Overarching goals&lt;br /&gt;
** Figure out if academia as a career is right for me&lt;br /&gt;
** Become confident in doing research&lt;br /&gt;
** Meet and talk to people in the field at conferences, etc.&lt;br /&gt;
&lt;br /&gt;
* Before school&lt;br /&gt;
** Work my way through the DTI papers from Ryan&lt;br /&gt;
** Initial read-through of Liz Marai&#039;s thesis&lt;br /&gt;
** Read wrist work NIH proposal&lt;br /&gt;
** Make pseudo-syllabus for research comp work&lt;br /&gt;
&lt;br /&gt;
* Fall Semester&lt;br /&gt;
** More careful read-through of thesis&lt;br /&gt;
** Go for a good class/research balance&lt;br /&gt;
** Determine topic for research comp&lt;br /&gt;
&lt;br /&gt;
=== [[User: Fumeng Yang|Fumeng]] ===&lt;br /&gt;
*N-year goal &lt;br /&gt;
**Be able to generate an idea of a new research direction and have the power to accomplish and purchase that&lt;br /&gt;
***Know what is important and be able to convince other people that is important&lt;br /&gt;
***Be knowledgeable and expertise in the field; Write proposals; Mentoring; Find help; Present the work to others; Interact with other people; Write papers&lt;br /&gt;
&lt;br /&gt;
*First year&lt;br /&gt;
**First semester&lt;br /&gt;
***Get along with my advisor, the group, other PhD students and the department&lt;br /&gt;
***Find a project, nail it down and finish the pilot work&lt;br /&gt;
***Let my C/C++ and OpenGL skills not be worries of mine&lt;br /&gt;
**Second semester / By the end of my first year&lt;br /&gt;
***Read enough papers to have a big picture of VR field&lt;br /&gt;
***Finish a project and write it down&lt;br /&gt;
&lt;br /&gt;
*Recent Goals&lt;br /&gt;
**Read papers from this group (Hua&#039;s grant?)&lt;br /&gt;
**Read papers from VR field and perception &lt;br /&gt;
**Know everyone&#039;s work in this group&lt;br /&gt;
**Prepare for transferring credits&lt;br /&gt;
**Keep the programming test in mind&lt;br /&gt;
**Setup C/C++ and OpenGL programming environment&lt;br /&gt;
**Finish this round of editing VF paper and handle it out (with Tufts, WPI etc) : Aug 28, 16&lt;br /&gt;
&amp;lt;!-- please don&#039;t edit below this line --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Past Plans and Goals ==&lt;br /&gt;
* [[/Summer 2016|Summer &#039;16]]&lt;br /&gt;
* [[/Spring 2016|Spring &#039;16]]&lt;br /&gt;
* [[/Fall 2015|Fall &#039;15]]&lt;br /&gt;
* [[/Summer 2015|Summer &#039;15]]&lt;br /&gt;
* [[/Spring 2015|Spring &#039;15]]&lt;br /&gt;
* [[/Fall 2014|Fall &#039;14]]&lt;br /&gt;
* [[/Spring-Summer 2014|Spring-Summer &#039;14]]&lt;br /&gt;
* [[/Summer-Fall 2013|Summer-Fall &#039;13]]&lt;br /&gt;
* [[/Spring 2013|Spring &#039;13]]&lt;br /&gt;
* [[/Fall 2012|Fall &#039;12]]&lt;br /&gt;
* [[/Summer 2012|Summer &#039;12]]&lt;br /&gt;
* [[/Spring 2012|Spring &#039;12]]&lt;br /&gt;
* [[/Summer-Fall 2011|Summer-Fall &#039;11]]&lt;br /&gt;
* [[/Spring 2011|Spring &#039;11]]&lt;br /&gt;
* [[/Summer-Fall 2010|Summer-Fall &#039;10]]&lt;br /&gt;
* [[/Spring 2010|Spring &#039;10]]&lt;br /&gt;
* [[/Fall 2009|Fall &#039;09]]&lt;br /&gt;
* [[/Summer 2009|Summer &#039;09]]&lt;br /&gt;
* [[/Spring 2009|Spring &#039;09]]&lt;br /&gt;
* [[/Fall 2008|Fall &#039;08]]&lt;br /&gt;
* [http://sites.google.com/a/vis.cs.brown.edu/collaboravis/Home/summer-08-group-goals Summer &#039;08]&lt;br /&gt;
&lt;br /&gt;
[[Category:VRL]]&lt;/div&gt;</summary>
		<author><name>Josh Tveite</name></author>
	</entry>
	<entry>
		<id>http://vrl.cs.brown.edu/wiki/index.php?title=Plans_and_Goals&amp;diff=6825</id>
		<title>Plans and Goals</title>
		<link rel="alternate" type="text/html" href="http://vrl.cs.brown.edu/wiki/index.php?title=Plans_and_Goals&amp;diff=6825"/>
		<updated>2016-05-24T17:45:24Z</updated>

		<summary type="html">&lt;p&gt;Josh Tveite: /* Josh */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;On this page the members of the [[VRL]] record and refine their goals for the current semester.  This is a living document in which [[dhl]] will provide feedback.  See the bottom of the page for links to past plans &amp;amp; goals documents.&lt;br /&gt;
&lt;br /&gt;
== Current Schedule ==&lt;br /&gt;
Meetings are on Mondays.  The authoritative list is in dhl&#039;s calendar.&lt;br /&gt;
&lt;br /&gt;
== Current Plans and Goals (Summer &#039;16) ==&lt;br /&gt;
&lt;br /&gt;
=== [[User:Connor Gramazio|Connor]] ===&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;Boldfaced&amp;lt;/span&amp;gt;&#039;&#039;&#039; goals are those that mark the high-level success of each project.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;Writing&#039;&#039;&#039; =====&lt;br /&gt;
* &amp;lt;s&amp;gt;By January 29: Create exemplar VIS/HCI technical writing exemplar spreadsheet with Hua&amp;lt;/s&amp;gt;&lt;br /&gt;
* Shift writing style to be story- and outline-driven&lt;br /&gt;
* Practice writing in short, daily sessions&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;Dissertation&#039;&#039;&#039; =====&lt;br /&gt;
* &amp;lt;s&amp;gt;23 February: &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;Dissertation proposal&amp;lt;/span&amp;gt;&#039;&#039;&#039;&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;29 April: &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;Resubmit dissertation proposal&amp;lt;/span&amp;gt;&#039;&#039;&#039;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;Color&#039;&#039;&#039; =====&lt;br /&gt;
* &amp;lt;s&amp;gt;By 15 January: Complete achromatic color preference extrapolation&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;By 29 January: Complete pilot rounds of Experimentr data collection and iron out all bugs (remember to make security patches)&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;By 5 February: Complete all data collection&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;By 29 February: Complete 1st draft of Colorgorical paper&amp;lt;/s&amp;gt; (done 23 Feb)&lt;br /&gt;
* &amp;lt;s&amp;gt;By 21 March: submit abstract to VIS (InfoVis)&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;By 31 March: &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;Resubmit paper to VIS&amp;lt;/span&amp;gt;&#039;&#039;&#039;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;Genomics Case Study&#039;&#039;&#039; =====&lt;br /&gt;
* Weekly: check up on MAGI interaction log scraping&lt;br /&gt;
* &amp;lt;s&amp;gt;By 21 March: submit abstract to VIS (VAST)&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;By 31 March: &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;(re)submit latest draft to VAST&amp;lt;/span&amp;gt;&#039;&#039;&#039;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;BLADE&#039;&#039;&#039; =====&lt;br /&gt;
* &amp;lt;s&amp;gt;By 4 March: Have all genomics researchers scheduled for observation&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;By 1 April: Have sigma-lognormal interaction log mining implemented&amp;lt;/s&amp;gt;&lt;br /&gt;
* By 30 April: &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;Complete BLADE-video comparative evaluation&amp;lt;/span&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
* By 30 April: Complete BLADE prototype&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;Other&#039;&#039;&#039; =====&lt;br /&gt;
* &amp;lt;s&amp;gt;Complete Sheridan Certificate I program&amp;lt;/s&amp;gt;&lt;br /&gt;
* Help Karen prep heatmap color paper for submission&lt;br /&gt;
&lt;br /&gt;
=== [[User:Hua Guo|Hua]] ===&lt;br /&gt;
* &amp;lt;s&amp;gt;ThoughtFlow submission to VIS&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;Jan. 22: First round user feedback collected and design improvement plan finalized&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;Feb.25: Design improvements implemented based on first round user feedback&amp;lt;/s&amp;gt;&lt;br /&gt;
*** &amp;lt;s&amp;gt;Paper thumbnails and citation pattern vis prototyped (Feb.15)&amp;lt;/s&amp;gt;&lt;br /&gt;
*** Proposal keyword selection implemented (Feb.22)&amp;lt;/s&amp;gt;&lt;br /&gt;
*** &amp;lt;s&amp;gt;Citation pattern backend implemented (Feb.22)&amp;lt;/s&amp;gt;&lt;br /&gt;
*** &amp;lt;s&amp;gt;Citation pattern vis and paper thumbnails design refined (Feb.29)&amp;lt;/s&amp;gt;&lt;br /&gt;
*** &amp;lt;s&amp;gt;Get feedback from Steven S&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;March 7: Second round user feedback collected&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;March 21: abstract due&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;March 31: paper submission&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;Flyingsessions submission to VIS&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;March 21: abstract due&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;March 31: paper submission&amp;lt;/s&amp;gt;&lt;br /&gt;
* ThoughtFlow post-VIS work&lt;br /&gt;
** Interface redesign&lt;br /&gt;
*** Write a plan on how it ties into interaction modeling work (Apr.8)&lt;br /&gt;
*** Sketch out the design for literature exploration view (Apr.15)&lt;br /&gt;
*** Implement literature exploration view&lt;br /&gt;
** Interaction modeling&lt;br /&gt;
* Dissertation Writing&lt;br /&gt;
** Draft abstract and introduction&lt;br /&gt;
&lt;br /&gt;
=== [[User:Steven Gomez|Steve]] ===&lt;br /&gt;
* &#039;&#039;&#039;Dissertation&#039;&#039;&#039;&lt;br /&gt;
** By June 30: committee settled &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
** By June 30: dissertation draft completed and circulated &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
*** Address feedback for dissertation as it comes in&lt;br /&gt;
** By June 30: get scheduling feedback for committee for mid-August defense &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
** By early July: resolve defense scheduling &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
** By mid July: submit defense, date, meta-data, and thesis draft to Lauren &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
** By mid August: defend thesis, get notes for dissertation revisions from committee&lt;br /&gt;
** By mid September: do any necessary dissertation revisions, get signatures from committee, and submit&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;TVCG/VAST paper&#039;&#039;&#039;&lt;br /&gt;
** By June 20: Use R to get CI intervals for correlations &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
** By June 26: Help Hua with response, submission for conditional acceptance &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;NSF Proposal on Cognitive/Task Modeling&#039;&#039;&#039;&lt;br /&gt;
** Meet weekly to stay on track for September deadline&lt;br /&gt;
** By June 25:&lt;br /&gt;
*** Gather notes from all past proposals &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
*** Write up independent thoughts about new proposal, then compare with David&#039;s Expedition notes&lt;br /&gt;
** By mid July: rough draft of new proposal based on notes, discussions&lt;br /&gt;
** By August: help prepare solid final draft&lt;br /&gt;
** Submit in FastLane&lt;br /&gt;
*** By September 16 for MEDIUM&lt;br /&gt;
*** By September 24 for LARGE&lt;br /&gt;
*** By November 18 for SMALL&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Other&#039;&#039;&#039;&lt;br /&gt;
** Review workshops for VIS as possible project venues&lt;br /&gt;
** Find housing in Boston &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== [[User:Ryan Cabeen|Ryan]] ===&lt;br /&gt;
&lt;br /&gt;
* RP Imaging Studies&lt;br /&gt;
** Send update for request for additional bundles in SMART data&lt;br /&gt;
** Iron out details for South Africa analysis (group meeting on 6/10)&lt;br /&gt;
*** &#039;&#039;Update&#039;&#039;: fiber bundle length (need a couple more bundles)&lt;br /&gt;
*** &#039;&#039;Update&#039;&#039;: graph-based analysis w/ Laurie&lt;br /&gt;
** Keep up with paper reviewing and other requests&lt;br /&gt;
* Diffusion outside brain&lt;br /&gt;
** &#039;&#039;Update&#039;&#039;: support image analysis w/ Trey Crisco &amp;amp; Ed Walsh&lt;br /&gt;
* Yurt&lt;br /&gt;
** Demo as needed&lt;br /&gt;
** Provide support for CS137-related things&lt;br /&gt;
** Help Johannes with getting up to speed for TAing&lt;br /&gt;
** &#039;&#039;Update&#039;&#039;: Get some brain data in&lt;br /&gt;
* Thesis work&lt;br /&gt;
** Complete a rough draft of dissertation&lt;br /&gt;
** Work with Dan to get bipolar imaging paper out&lt;br /&gt;
** &#039;&#039;Update&#039;&#039;: Put together documentation of various analyses and tools&lt;br /&gt;
&lt;br /&gt;
=== [[User:David Laidlaw|David]] (for sabbatical) ===&lt;br /&gt;
&lt;br /&gt;
* yurt&lt;br /&gt;
** color calibrated within a few JND&#039;s by end of June&lt;br /&gt;
** seams calibrated within a few mm&#039;s by end of June&lt;br /&gt;
** application(s) (re)submitted for some fidelity-based research&lt;br /&gt;
** application(s) submitted for some collaboration-based research, perhaps with Gatesy/Francois/Josh/Johannes&lt;br /&gt;
** wiki &amp;quot;how to&amp;quot; for creating a yurt app, perhaps w/Johannes, before cs237 for sure!&lt;br /&gt;
** scientific VR software tools review document by end of summer, from developer to non-programming user&lt;br /&gt;
** paper out about R&amp;amp;D, model on Cruz, by end of sumer&lt;br /&gt;
* VT&lt;br /&gt;
** seam experiment&lt;br /&gt;
** submit TTTS manuscript&lt;br /&gt;
* orthopedics&lt;br /&gt;
** tools continuing to run well (despite upgrade)&lt;br /&gt;
*** get registration pipeline to pass regression tests&lt;br /&gt;
** maybe pursue diffusion imaging in joints&lt;br /&gt;
* diffusion MRI&lt;br /&gt;
** two renewal grants with Rob Paul and Ryan over summer and fall&lt;br /&gt;
** Dickstein paper and maybe proposal&lt;br /&gt;
** tractography comparison paper with Ryan during summer&lt;br /&gt;
* keep all advisees moving along appropriately&lt;br /&gt;
** prepare for incoming triplet: brains, hands, yurt&lt;br /&gt;
&lt;br /&gt;
=== [[User:Wesley Miller|Wesley]] ===&lt;br /&gt;
&lt;br /&gt;
* CAVE/YURT&lt;br /&gt;
** Complete or nearly complete user study with Johannes&lt;br /&gt;
** Help out with Demos when needed&lt;br /&gt;
** Add new applications for use in YURT&lt;br /&gt;
&lt;br /&gt;
* Fitts&#039; Law&lt;br /&gt;
** Work on paper with HCI seminar group&lt;br /&gt;
&lt;br /&gt;
* Third Person Perspective&lt;br /&gt;
** Make plans for future of 3PP project or something derivative&lt;br /&gt;
&lt;br /&gt;
* Hospital&lt;br /&gt;
** Discuss potential projects with Derek&lt;br /&gt;
&lt;br /&gt;
=== [[User:Johannes Novotny|Johannes]] ===&lt;br /&gt;
&lt;br /&gt;
* Cave/Yurt&lt;br /&gt;
** Complete user study with Wesley&lt;br /&gt;
** Design next experiment for VT project&lt;br /&gt;
** Work on VR volume visualization (3D Visualizer/CaveVOX/...)&lt;br /&gt;
** Get more concrete collaboration with students of Robbert Creton or Kristi Wharton&lt;br /&gt;
** Help out with Demos when needed&lt;br /&gt;
** Explore use of VTK in VRG3D&lt;br /&gt;
&lt;br /&gt;
* CS137&lt;br /&gt;
** Set up clean development branch for CavePainting&lt;br /&gt;
** Get acquainted with the sourcecode&lt;br /&gt;
** Fix some bugs if possible&lt;br /&gt;
&lt;br /&gt;
* Fitts&#039; Law&lt;br /&gt;
** Work on paper with HCI seminar group&lt;br /&gt;
&lt;br /&gt;
* Thesis Project &lt;br /&gt;
** Restart discussions with Derek and Kristi&lt;br /&gt;
** Explore collaborations for genome folding visualizations&lt;br /&gt;
** by December: Create Thesis proposal draft&lt;br /&gt;
&lt;br /&gt;
=== [[User:Tom Sgouros|Tom]] ===&lt;br /&gt;
&lt;br /&gt;
=== [[User:Bruce Campbell|Bruce]] ===&lt;br /&gt;
&lt;br /&gt;
* Funding&lt;br /&gt;
** Raise funding to support Visiting Scientist position for 2016&lt;br /&gt;
** Submit proposals to STAC, NSF ITEST, and ONR by end of 2015&lt;br /&gt;
** Create ten-page white paper for Jan 31, 2016 to send to other funding organizations&lt;br /&gt;
&lt;br /&gt;
* Cave/Yurt&lt;br /&gt;
** Axial Seamount application:&lt;br /&gt;
*** Implement Animation controls by Dec 31, 2015&lt;br /&gt;
*** Implement Grab and Manipulate interaction by Jan 30, 2016&lt;br /&gt;
** Create Plan for 2016 work by Jan 30, 2016 (promote here):&lt;br /&gt;
*** Continuous overall contribution: Useful Temporal Interaction GUIs&lt;br /&gt;
*** Prioritize other COVE (http://cove.ocean.washington.edu) features integration&lt;br /&gt;
*** Pursue Python interpreter integration unless other Yurt methods pan out&lt;br /&gt;
*** Anticipate STAC/ITEST programming needs for Yurt&lt;br /&gt;
*** Continue to pursue possible student participation&lt;br /&gt;
&lt;br /&gt;
* CS 137&lt;br /&gt;
** Continue to attend and revisit notes from UW INDE 543&lt;br /&gt;
** CG&amp;amp;A &#039;&#039;Art on Graphics&#039;&#039; column to layout by February 15, 2016&lt;br /&gt;
&lt;br /&gt;
* Distributed Cognition&lt;br /&gt;
** Create updated mind map (with bibliography) by Dec 31, 2015&lt;br /&gt;
** Create d-cog metric and test plan to support VIS/VAST paper by Jan 15, 2015&lt;br /&gt;
** VIS/VAST paper abstract ready by March deadline&lt;br /&gt;
&lt;br /&gt;
* Personal Development&lt;br /&gt;
** Continuous: Improve research process effectiveness including a better parallel writing process&lt;br /&gt;
** Continuous: Improve conciseness in e-mail and research-related writing&lt;br /&gt;
** Continuous: Improve at sketching ideas&lt;br /&gt;
&lt;br /&gt;
=== [[User:Josh Tveite|Josh]] ===&lt;br /&gt;
&lt;br /&gt;
* Research Comps&lt;br /&gt;
** Finish proposal and give proposal presentation&lt;br /&gt;
** Continue work on implementation&lt;br /&gt;
** Communicate better with Steve&lt;br /&gt;
&lt;br /&gt;
* Summer Project&lt;br /&gt;
** Determine what to work on as continuing from VT work&lt;br /&gt;
** Do said work (To be expanded on soon)&lt;br /&gt;
&lt;br /&gt;
* General Yurt&lt;br /&gt;
** Continue to give demos as needed&lt;br /&gt;
** Continue to improve knowledge of working in/with the Yurt&lt;br /&gt;
&lt;br /&gt;
=== [[User:Wallace Lages|Wallace]] ===&lt;br /&gt;
&lt;br /&gt;
*Finish experiment and write IEEEVR paper&lt;br /&gt;
&lt;br /&gt;
* Finish VR volume renderer&lt;br /&gt;
** last changes: added another kernel for gpu pre processing, copying one PBO to another in the GPU. Simple kernel (just remove part of the dataset)&lt;br /&gt;
** Issues: Interaction pass takes a long time on CPU&lt;br /&gt;
** Options: add spatial structure, perform interaction on GPU&lt;br /&gt;
** Other improvements: 1) reduce original RGBA 3d texture to mono -&amp;gt; improve memory usage 2) remove 3d texture altogether and implement filtering in the shader -&amp;gt; possible faster copy in one pass, 3) change to splatting 4) refactor code&lt;br /&gt;
&lt;br /&gt;
*Reimplement Volume Cracker like interaction&lt;br /&gt;
**Implement on VR&lt;br /&gt;
**Develop hardware&lt;br /&gt;
&lt;br /&gt;
* Finish new interaction technique&lt;br /&gt;
**Finish design&lt;br /&gt;
**Implement software&lt;br /&gt;
**Implement technique on VR&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- please don&#039;t edit below this line --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Past Plans and Goals ==&lt;br /&gt;
* [[/Spring 2016|Spring &#039;16]]&lt;br /&gt;
* [[/Fall 2015|Fall &#039;15]]&lt;br /&gt;
* [[/Summer 2015|Summer &#039;15]]&lt;br /&gt;
* [[/Spring 2015|Spring &#039;15]]&lt;br /&gt;
* [[/Fall 2014|Fall &#039;14]]&lt;br /&gt;
* [[/Spring-Summer 2014|Spring-Summer &#039;14]]&lt;br /&gt;
* [[/Summer-Fall 2013|Summer-Fall &#039;13]]&lt;br /&gt;
* [[/Spring 2013|Spring &#039;13]]&lt;br /&gt;
* [[/Fall 2012|Fall &#039;12]]&lt;br /&gt;
* [[/Summer 2012|Summer &#039;12]]&lt;br /&gt;
* [[/Spring 2012|Spring &#039;12]]&lt;br /&gt;
* [[/Summer-Fall 2011|Summer-Fall &#039;11]]&lt;br /&gt;
* [[/Spring 2011|Spring &#039;11]]&lt;br /&gt;
* [[/Summer-Fall 2010|Summer-Fall &#039;10]]&lt;br /&gt;
* [[/Spring 2010|Spring &#039;10]]&lt;br /&gt;
* [[/Fall 2009|Fall &#039;09]]&lt;br /&gt;
* [[/Summer 2009|Summer &#039;09]]&lt;br /&gt;
* [[/Spring 2009|Spring &#039;09]]&lt;br /&gt;
* [[/Fall 2008|Fall &#039;08]]&lt;br /&gt;
* [http://sites.google.com/a/vis.cs.brown.edu/collaboravis/Home/summer-08-group-goals Summer &#039;08]&lt;br /&gt;
&lt;br /&gt;
[[Category:VRL]]&lt;/div&gt;</summary>
		<author><name>Josh Tveite</name></author>
	</entry>
	<entry>
		<id>http://vrl.cs.brown.edu/wiki/index.php?title=Plans_and_Goals&amp;diff=6824</id>
		<title>Plans and Goals</title>
		<link rel="alternate" type="text/html" href="http://vrl.cs.brown.edu/wiki/index.php?title=Plans_and_Goals&amp;diff=6824"/>
		<updated>2016-05-24T17:40:38Z</updated>

		<summary type="html">&lt;p&gt;Josh Tveite: /* Current Plans and Goals (Spring &amp;#039;16) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;On this page the members of the [[VRL]] record and refine their goals for the current semester.  This is a living document in which [[dhl]] will provide feedback.  See the bottom of the page for links to past plans &amp;amp; goals documents.&lt;br /&gt;
&lt;br /&gt;
== Current Schedule ==&lt;br /&gt;
Meetings are on Mondays.  The authoritative list is in dhl&#039;s calendar.&lt;br /&gt;
&lt;br /&gt;
== Current Plans and Goals (Summer &#039;16) ==&lt;br /&gt;
&lt;br /&gt;
=== [[User:Connor Gramazio|Connor]] ===&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;Boldfaced&amp;lt;/span&amp;gt;&#039;&#039;&#039; goals are those that mark the high-level success of each project.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;Writing&#039;&#039;&#039; =====&lt;br /&gt;
* &amp;lt;s&amp;gt;By January 29: Create exemplar VIS/HCI technical writing exemplar spreadsheet with Hua&amp;lt;/s&amp;gt;&lt;br /&gt;
* Shift writing style to be story- and outline-driven&lt;br /&gt;
* Practice writing in short, daily sessions&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;Dissertation&#039;&#039;&#039; =====&lt;br /&gt;
* &amp;lt;s&amp;gt;23 February: &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;Dissertation proposal&amp;lt;/span&amp;gt;&#039;&#039;&#039;&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;29 April: &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;Resubmit dissertation proposal&amp;lt;/span&amp;gt;&#039;&#039;&#039;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;Color&#039;&#039;&#039; =====&lt;br /&gt;
* &amp;lt;s&amp;gt;By 15 January: Complete achromatic color preference extrapolation&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;By 29 January: Complete pilot rounds of Experimentr data collection and iron out all bugs (remember to make security patches)&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;By 5 February: Complete all data collection&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;By 29 February: Complete 1st draft of Colorgorical paper&amp;lt;/s&amp;gt; (done 23 Feb)&lt;br /&gt;
* &amp;lt;s&amp;gt;By 21 March: submit abstract to VIS (InfoVis)&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;By 31 March: &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;Resubmit paper to VIS&amp;lt;/span&amp;gt;&#039;&#039;&#039;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;Genomics Case Study&#039;&#039;&#039; =====&lt;br /&gt;
* Weekly: check up on MAGI interaction log scraping&lt;br /&gt;
* &amp;lt;s&amp;gt;By 21 March: submit abstract to VIS (VAST)&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;By 31 March: &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;(re)submit latest draft to VAST&amp;lt;/span&amp;gt;&#039;&#039;&#039;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;BLADE&#039;&#039;&#039; =====&lt;br /&gt;
* &amp;lt;s&amp;gt;By 4 March: Have all genomics researchers scheduled for observation&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;By 1 April: Have sigma-lognormal interaction log mining implemented&amp;lt;/s&amp;gt;&lt;br /&gt;
* By 30 April: &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;Complete BLADE-video comparative evaluation&amp;lt;/span&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
* By 30 April: Complete BLADE prototype&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;Other&#039;&#039;&#039; =====&lt;br /&gt;
* &amp;lt;s&amp;gt;Complete Sheridan Certificate I program&amp;lt;/s&amp;gt;&lt;br /&gt;
* Help Karen prep heatmap color paper for submission&lt;br /&gt;
&lt;br /&gt;
=== [[User:Hua Guo|Hua]] ===&lt;br /&gt;
* &amp;lt;s&amp;gt;ThoughtFlow submission to VIS&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;Jan. 22: First round user feedback collected and design improvement plan finalized&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;Feb.25: Design improvements implemented based on first round user feedback&amp;lt;/s&amp;gt;&lt;br /&gt;
*** &amp;lt;s&amp;gt;Paper thumbnails and citation pattern vis prototyped (Feb.15)&amp;lt;/s&amp;gt;&lt;br /&gt;
*** Proposal keyword selection implemented (Feb.22)&amp;lt;/s&amp;gt;&lt;br /&gt;
*** &amp;lt;s&amp;gt;Citation pattern backend implemented (Feb.22)&amp;lt;/s&amp;gt;&lt;br /&gt;
*** &amp;lt;s&amp;gt;Citation pattern vis and paper thumbnails design refined (Feb.29)&amp;lt;/s&amp;gt;&lt;br /&gt;
*** &amp;lt;s&amp;gt;Get feedback from Steven S&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;March 7: Second round user feedback collected&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;March 21: abstract due&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;March 31: paper submission&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;Flyingsessions submission to VIS&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;March 21: abstract due&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;March 31: paper submission&amp;lt;/s&amp;gt;&lt;br /&gt;
* ThoughtFlow post-VIS work&lt;br /&gt;
** Interface redesign&lt;br /&gt;
*** Write a plan on how it ties into interaction modeling work (Apr.8)&lt;br /&gt;
*** Sketch out the design for literature exploration view (Apr.15)&lt;br /&gt;
*** Implement literature exploration view&lt;br /&gt;
** Interaction modeling&lt;br /&gt;
* Dissertation Writing&lt;br /&gt;
** Draft abstract and introduction&lt;br /&gt;
&lt;br /&gt;
=== [[User:Steven Gomez|Steve]] ===&lt;br /&gt;
* &#039;&#039;&#039;Dissertation&#039;&#039;&#039;&lt;br /&gt;
** By June 30: committee settled &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
** By June 30: dissertation draft completed and circulated &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
*** Address feedback for dissertation as it comes in&lt;br /&gt;
** By June 30: get scheduling feedback for committee for mid-August defense &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
** By early July: resolve defense scheduling &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
** By mid July: submit defense, date, meta-data, and thesis draft to Lauren &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
** By mid August: defend thesis, get notes for dissertation revisions from committee&lt;br /&gt;
** By mid September: do any necessary dissertation revisions, get signatures from committee, and submit&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;TVCG/VAST paper&#039;&#039;&#039;&lt;br /&gt;
** By June 20: Use R to get CI intervals for correlations &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
** By June 26: Help Hua with response, submission for conditional acceptance &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;NSF Proposal on Cognitive/Task Modeling&#039;&#039;&#039;&lt;br /&gt;
** Meet weekly to stay on track for September deadline&lt;br /&gt;
** By June 25:&lt;br /&gt;
*** Gather notes from all past proposals &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
*** Write up independent thoughts about new proposal, then compare with David&#039;s Expedition notes&lt;br /&gt;
** By mid July: rough draft of new proposal based on notes, discussions&lt;br /&gt;
** By August: help prepare solid final draft&lt;br /&gt;
** Submit in FastLane&lt;br /&gt;
*** By September 16 for MEDIUM&lt;br /&gt;
*** By September 24 for LARGE&lt;br /&gt;
*** By November 18 for SMALL&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Other&#039;&#039;&#039;&lt;br /&gt;
** Review workshops for VIS as possible project venues&lt;br /&gt;
** Find housing in Boston &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== [[User:Ryan Cabeen|Ryan]] ===&lt;br /&gt;
&lt;br /&gt;
* RP Imaging Studies&lt;br /&gt;
** Send update for request for additional bundles in SMART data&lt;br /&gt;
** Iron out details for South Africa analysis (group meeting on 6/10)&lt;br /&gt;
*** &#039;&#039;Update&#039;&#039;: fiber bundle length (need a couple more bundles)&lt;br /&gt;
*** &#039;&#039;Update&#039;&#039;: graph-based analysis w/ Laurie&lt;br /&gt;
** Keep up with paper reviewing and other requests&lt;br /&gt;
* Diffusion outside brain&lt;br /&gt;
** &#039;&#039;Update&#039;&#039;: support image analysis w/ Trey Crisco &amp;amp; Ed Walsh&lt;br /&gt;
* Yurt&lt;br /&gt;
** Demo as needed&lt;br /&gt;
** Provide support for CS137-related things&lt;br /&gt;
** Help Johannes with getting up to speed for TAing&lt;br /&gt;
** &#039;&#039;Update&#039;&#039;: Get some brain data in&lt;br /&gt;
* Thesis work&lt;br /&gt;
** Complete a rough draft of dissertation&lt;br /&gt;
** Work with Dan to get bipolar imaging paper out&lt;br /&gt;
** &#039;&#039;Update&#039;&#039;: Put together documentation of various analyses and tools&lt;br /&gt;
&lt;br /&gt;
=== [[User:David Laidlaw|David]] (for sabbatical) ===&lt;br /&gt;
&lt;br /&gt;
* yurt&lt;br /&gt;
** color calibrated within a few JND&#039;s by end of June&lt;br /&gt;
** seams calibrated within a few mm&#039;s by end of June&lt;br /&gt;
** application(s) (re)submitted for some fidelity-based research&lt;br /&gt;
** application(s) submitted for some collaboration-based research, perhaps with Gatesy/Francois/Josh/Johannes&lt;br /&gt;
** wiki &amp;quot;how to&amp;quot; for creating a yurt app, perhaps w/Johannes, before cs237 for sure!&lt;br /&gt;
** scientific VR software tools review document by end of summer, from developer to non-programming user&lt;br /&gt;
** paper out about R&amp;amp;D, model on Cruz, by end of sumer&lt;br /&gt;
* VT&lt;br /&gt;
** seam experiment&lt;br /&gt;
** submit TTTS manuscript&lt;br /&gt;
* orthopedics&lt;br /&gt;
** tools continuing to run well (despite upgrade)&lt;br /&gt;
*** get registration pipeline to pass regression tests&lt;br /&gt;
** maybe pursue diffusion imaging in joints&lt;br /&gt;
* diffusion MRI&lt;br /&gt;
** two renewal grants with Rob Paul and Ryan over summer and fall&lt;br /&gt;
** Dickstein paper and maybe proposal&lt;br /&gt;
** tractography comparison paper with Ryan during summer&lt;br /&gt;
* keep all advisees moving along appropriately&lt;br /&gt;
** prepare for incoming triplet: brains, hands, yurt&lt;br /&gt;
&lt;br /&gt;
=== [[User:Wesley Miller|Wesley]] ===&lt;br /&gt;
&lt;br /&gt;
* CAVE/YURT&lt;br /&gt;
** Complete or nearly complete user study with Johannes&lt;br /&gt;
** Help out with Demos when needed&lt;br /&gt;
** Add new applications for use in YURT&lt;br /&gt;
&lt;br /&gt;
* Fitts&#039; Law&lt;br /&gt;
** Work on paper with HCI seminar group&lt;br /&gt;
&lt;br /&gt;
* Third Person Perspective&lt;br /&gt;
** Make plans for future of 3PP project or something derivative&lt;br /&gt;
&lt;br /&gt;
* Hospital&lt;br /&gt;
** Discuss potential projects with Derek&lt;br /&gt;
&lt;br /&gt;
=== [[User:Johannes Novotny|Johannes]] ===&lt;br /&gt;
&lt;br /&gt;
* Cave/Yurt&lt;br /&gt;
** Complete user study with Wesley&lt;br /&gt;
** Design next experiment for VT project&lt;br /&gt;
** Work on VR volume visualization (3D Visualizer/CaveVOX/...)&lt;br /&gt;
** Get more concrete collaboration with students of Robbert Creton or Kristi Wharton&lt;br /&gt;
** Help out with Demos when needed&lt;br /&gt;
** Explore use of VTK in VRG3D&lt;br /&gt;
&lt;br /&gt;
* CS137&lt;br /&gt;
** Set up clean development branch for CavePainting&lt;br /&gt;
** Get acquainted with the sourcecode&lt;br /&gt;
** Fix some bugs if possible&lt;br /&gt;
&lt;br /&gt;
* Fitts&#039; Law&lt;br /&gt;
** Work on paper with HCI seminar group&lt;br /&gt;
&lt;br /&gt;
* Thesis Project &lt;br /&gt;
** Restart discussions with Derek and Kristi&lt;br /&gt;
** Explore collaborations for genome folding visualizations&lt;br /&gt;
** by December: Create Thesis proposal draft&lt;br /&gt;
&lt;br /&gt;
=== [[User:Tom Sgouros|Tom]] ===&lt;br /&gt;
&lt;br /&gt;
=== [[User:Bruce Campbell|Bruce]] ===&lt;br /&gt;
&lt;br /&gt;
* Funding&lt;br /&gt;
** Raise funding to support Visiting Scientist position for 2016&lt;br /&gt;
** Submit proposals to STAC, NSF ITEST, and ONR by end of 2015&lt;br /&gt;
** Create ten-page white paper for Jan 31, 2016 to send to other funding organizations&lt;br /&gt;
&lt;br /&gt;
* Cave/Yurt&lt;br /&gt;
** Axial Seamount application:&lt;br /&gt;
*** Implement Animation controls by Dec 31, 2015&lt;br /&gt;
*** Implement Grab and Manipulate interaction by Jan 30, 2016&lt;br /&gt;
** Create Plan for 2016 work by Jan 30, 2016 (promote here):&lt;br /&gt;
*** Continuous overall contribution: Useful Temporal Interaction GUIs&lt;br /&gt;
*** Prioritize other COVE (http://cove.ocean.washington.edu) features integration&lt;br /&gt;
*** Pursue Python interpreter integration unless other Yurt methods pan out&lt;br /&gt;
*** Anticipate STAC/ITEST programming needs for Yurt&lt;br /&gt;
*** Continue to pursue possible student participation&lt;br /&gt;
&lt;br /&gt;
* CS 137&lt;br /&gt;
** Continue to attend and revisit notes from UW INDE 543&lt;br /&gt;
** CG&amp;amp;A &#039;&#039;Art on Graphics&#039;&#039; column to layout by February 15, 2016&lt;br /&gt;
&lt;br /&gt;
* Distributed Cognition&lt;br /&gt;
** Create updated mind map (with bibliography) by Dec 31, 2015&lt;br /&gt;
** Create d-cog metric and test plan to support VIS/VAST paper by Jan 15, 2015&lt;br /&gt;
** VIS/VAST paper abstract ready by March deadline&lt;br /&gt;
&lt;br /&gt;
* Personal Development&lt;br /&gt;
** Continuous: Improve research process effectiveness including a better parallel writing process&lt;br /&gt;
** Continuous: Improve conciseness in e-mail and research-related writing&lt;br /&gt;
** Continuous: Improve at sketching ideas&lt;br /&gt;
&lt;br /&gt;
=== [[User:Josh Tveite|Josh]] ===&lt;br /&gt;
&lt;br /&gt;
* Research Comps&lt;br /&gt;
** Write/Finish proposal and give proposal presentation&lt;br /&gt;
** Find a committee - done&lt;br /&gt;
** Continue work on implementation&lt;br /&gt;
&lt;br /&gt;
* User Study&lt;br /&gt;
** Continue running users - done&lt;br /&gt;
** Write paper - submitted, needs work&lt;br /&gt;
** Help with refinements of data/paper&lt;br /&gt;
&lt;br /&gt;
* General Yurt&lt;br /&gt;
** Continue to give demos as needed&lt;br /&gt;
** Learn everything Wesley knows before he leaves&lt;br /&gt;
&lt;br /&gt;
=== [[User:Wallace Lages|Wallace]] ===&lt;br /&gt;
&lt;br /&gt;
*Finish experiment and write IEEEVR paper&lt;br /&gt;
&lt;br /&gt;
* Finish VR volume renderer&lt;br /&gt;
** last changes: added another kernel for gpu pre processing, copying one PBO to another in the GPU. Simple kernel (just remove part of the dataset)&lt;br /&gt;
** Issues: Interaction pass takes a long time on CPU&lt;br /&gt;
** Options: add spatial structure, perform interaction on GPU&lt;br /&gt;
** Other improvements: 1) reduce original RGBA 3d texture to mono -&amp;gt; improve memory usage 2) remove 3d texture altogether and implement filtering in the shader -&amp;gt; possible faster copy in one pass, 3) change to splatting 4) refactor code&lt;br /&gt;
&lt;br /&gt;
*Reimplement Volume Cracker like interaction&lt;br /&gt;
**Implement on VR&lt;br /&gt;
**Develop hardware&lt;br /&gt;
&lt;br /&gt;
* Finish new interaction technique&lt;br /&gt;
**Finish design&lt;br /&gt;
**Implement software&lt;br /&gt;
**Implement technique on VR&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- please don&#039;t edit below this line --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Past Plans and Goals ==&lt;br /&gt;
* [[/Spring 2016|Spring &#039;16]]&lt;br /&gt;
* [[/Fall 2015|Fall &#039;15]]&lt;br /&gt;
* [[/Summer 2015|Summer &#039;15]]&lt;br /&gt;
* [[/Spring 2015|Spring &#039;15]]&lt;br /&gt;
* [[/Fall 2014|Fall &#039;14]]&lt;br /&gt;
* [[/Spring-Summer 2014|Spring-Summer &#039;14]]&lt;br /&gt;
* [[/Summer-Fall 2013|Summer-Fall &#039;13]]&lt;br /&gt;
* [[/Spring 2013|Spring &#039;13]]&lt;br /&gt;
* [[/Fall 2012|Fall &#039;12]]&lt;br /&gt;
* [[/Summer 2012|Summer &#039;12]]&lt;br /&gt;
* [[/Spring 2012|Spring &#039;12]]&lt;br /&gt;
* [[/Summer-Fall 2011|Summer-Fall &#039;11]]&lt;br /&gt;
* [[/Spring 2011|Spring &#039;11]]&lt;br /&gt;
* [[/Summer-Fall 2010|Summer-Fall &#039;10]]&lt;br /&gt;
* [[/Spring 2010|Spring &#039;10]]&lt;br /&gt;
* [[/Fall 2009|Fall &#039;09]]&lt;br /&gt;
* [[/Summer 2009|Summer &#039;09]]&lt;br /&gt;
* [[/Spring 2009|Spring &#039;09]]&lt;br /&gt;
* [[/Fall 2008|Fall &#039;08]]&lt;br /&gt;
* [http://sites.google.com/a/vis.cs.brown.edu/collaboravis/Home/summer-08-group-goals Summer &#039;08]&lt;br /&gt;
&lt;br /&gt;
[[Category:VRL]]&lt;/div&gt;</summary>
		<author><name>Josh Tveite</name></author>
	</entry>
	<entry>
		<id>http://vrl.cs.brown.edu/wiki/index.php?title=Plans_and_Goals&amp;diff=6823</id>
		<title>Plans and Goals</title>
		<link rel="alternate" type="text/html" href="http://vrl.cs.brown.edu/wiki/index.php?title=Plans_and_Goals&amp;diff=6823"/>
		<updated>2016-05-24T17:40:26Z</updated>

		<summary type="html">&lt;p&gt;Josh Tveite: /* Past Plans and Goals */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;On this page the members of the [[VRL]] record and refine their goals for the current semester.  This is a living document in which [[dhl]] will provide feedback.  See the bottom of the page for links to past plans &amp;amp; goals documents.&lt;br /&gt;
&lt;br /&gt;
== Current Schedule ==&lt;br /&gt;
Meetings are on Mondays.  The authoritative list is in dhl&#039;s calendar.&lt;br /&gt;
&lt;br /&gt;
== Current Plans and Goals (Spring &#039;16) ==&lt;br /&gt;
&lt;br /&gt;
=== [[User:Connor Gramazio|Connor]] ===&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;Boldfaced&amp;lt;/span&amp;gt;&#039;&#039;&#039; goals are those that mark the high-level success of each project.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;Writing&#039;&#039;&#039; =====&lt;br /&gt;
* &amp;lt;s&amp;gt;By January 29: Create exemplar VIS/HCI technical writing exemplar spreadsheet with Hua&amp;lt;/s&amp;gt;&lt;br /&gt;
* Shift writing style to be story- and outline-driven&lt;br /&gt;
* Practice writing in short, daily sessions&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;Dissertation&#039;&#039;&#039; =====&lt;br /&gt;
* &amp;lt;s&amp;gt;23 February: &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;Dissertation proposal&amp;lt;/span&amp;gt;&#039;&#039;&#039;&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;29 April: &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;Resubmit dissertation proposal&amp;lt;/span&amp;gt;&#039;&#039;&#039;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;Color&#039;&#039;&#039; =====&lt;br /&gt;
* &amp;lt;s&amp;gt;By 15 January: Complete achromatic color preference extrapolation&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;By 29 January: Complete pilot rounds of Experimentr data collection and iron out all bugs (remember to make security patches)&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;By 5 February: Complete all data collection&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;By 29 February: Complete 1st draft of Colorgorical paper&amp;lt;/s&amp;gt; (done 23 Feb)&lt;br /&gt;
* &amp;lt;s&amp;gt;By 21 March: submit abstract to VIS (InfoVis)&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;By 31 March: &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;Resubmit paper to VIS&amp;lt;/span&amp;gt;&#039;&#039;&#039;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;Genomics Case Study&#039;&#039;&#039; =====&lt;br /&gt;
* Weekly: check up on MAGI interaction log scraping&lt;br /&gt;
* &amp;lt;s&amp;gt;By 21 March: submit abstract to VIS (VAST)&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;By 31 March: &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;(re)submit latest draft to VAST&amp;lt;/span&amp;gt;&#039;&#039;&#039;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;BLADE&#039;&#039;&#039; =====&lt;br /&gt;
* &amp;lt;s&amp;gt;By 4 March: Have all genomics researchers scheduled for observation&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;By 1 April: Have sigma-lognormal interaction log mining implemented&amp;lt;/s&amp;gt;&lt;br /&gt;
* By 30 April: &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;Complete BLADE-video comparative evaluation&amp;lt;/span&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
* By 30 April: Complete BLADE prototype&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;Other&#039;&#039;&#039; =====&lt;br /&gt;
* &amp;lt;s&amp;gt;Complete Sheridan Certificate I program&amp;lt;/s&amp;gt;&lt;br /&gt;
* Help Karen prep heatmap color paper for submission&lt;br /&gt;
&lt;br /&gt;
=== [[User:Hua Guo|Hua]] ===&lt;br /&gt;
* &amp;lt;s&amp;gt;ThoughtFlow submission to VIS&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;Jan. 22: First round user feedback collected and design improvement plan finalized&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;Feb.25: Design improvements implemented based on first round user feedback&amp;lt;/s&amp;gt;&lt;br /&gt;
*** &amp;lt;s&amp;gt;Paper thumbnails and citation pattern vis prototyped (Feb.15)&amp;lt;/s&amp;gt;&lt;br /&gt;
*** Proposal keyword selection implemented (Feb.22)&amp;lt;/s&amp;gt;&lt;br /&gt;
*** &amp;lt;s&amp;gt;Citation pattern backend implemented (Feb.22)&amp;lt;/s&amp;gt;&lt;br /&gt;
*** &amp;lt;s&amp;gt;Citation pattern vis and paper thumbnails design refined (Feb.29)&amp;lt;/s&amp;gt;&lt;br /&gt;
*** &amp;lt;s&amp;gt;Get feedback from Steven S&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;March 7: Second round user feedback collected&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;March 21: abstract due&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;March 31: paper submission&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;Flyingsessions submission to VIS&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;March 21: abstract due&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;March 31: paper submission&amp;lt;/s&amp;gt;&lt;br /&gt;
* ThoughtFlow post-VIS work&lt;br /&gt;
** Interface redesign&lt;br /&gt;
*** Write a plan on how it ties into interaction modeling work (Apr.8)&lt;br /&gt;
*** Sketch out the design for literature exploration view (Apr.15)&lt;br /&gt;
*** Implement literature exploration view&lt;br /&gt;
** Interaction modeling&lt;br /&gt;
* Dissertation Writing&lt;br /&gt;
** Draft abstract and introduction&lt;br /&gt;
&lt;br /&gt;
=== [[User:Steven Gomez|Steve]] ===&lt;br /&gt;
* &#039;&#039;&#039;Dissertation&#039;&#039;&#039;&lt;br /&gt;
** By June 30: committee settled &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
** By June 30: dissertation draft completed and circulated &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
*** Address feedback for dissertation as it comes in&lt;br /&gt;
** By June 30: get scheduling feedback for committee for mid-August defense &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
** By early July: resolve defense scheduling &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
** By mid July: submit defense, date, meta-data, and thesis draft to Lauren &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
** By mid August: defend thesis, get notes for dissertation revisions from committee&lt;br /&gt;
** By mid September: do any necessary dissertation revisions, get signatures from committee, and submit&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;TVCG/VAST paper&#039;&#039;&#039;&lt;br /&gt;
** By June 20: Use R to get CI intervals for correlations &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
** By June 26: Help Hua with response, submission for conditional acceptance &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;NSF Proposal on Cognitive/Task Modeling&#039;&#039;&#039;&lt;br /&gt;
** Meet weekly to stay on track for September deadline&lt;br /&gt;
** By June 25:&lt;br /&gt;
*** Gather notes from all past proposals &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
*** Write up independent thoughts about new proposal, then compare with David&#039;s Expedition notes&lt;br /&gt;
** By mid July: rough draft of new proposal based on notes, discussions&lt;br /&gt;
** By August: help prepare solid final draft&lt;br /&gt;
** Submit in FastLane&lt;br /&gt;
*** By September 16 for MEDIUM&lt;br /&gt;
*** By September 24 for LARGE&lt;br /&gt;
*** By November 18 for SMALL&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Other&#039;&#039;&#039;&lt;br /&gt;
** Review workshops for VIS as possible project venues&lt;br /&gt;
** Find housing in Boston &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== [[User:Ryan Cabeen|Ryan]] ===&lt;br /&gt;
&lt;br /&gt;
* RP Imaging Studies&lt;br /&gt;
** Send update for request for additional bundles in SMART data&lt;br /&gt;
** Iron out details for South Africa analysis (group meeting on 6/10)&lt;br /&gt;
*** &#039;&#039;Update&#039;&#039;: fiber bundle length (need a couple more bundles)&lt;br /&gt;
*** &#039;&#039;Update&#039;&#039;: graph-based analysis w/ Laurie&lt;br /&gt;
** Keep up with paper reviewing and other requests&lt;br /&gt;
* Diffusion outside brain&lt;br /&gt;
** &#039;&#039;Update&#039;&#039;: support image analysis w/ Trey Crisco &amp;amp; Ed Walsh&lt;br /&gt;
* Yurt&lt;br /&gt;
** Demo as needed&lt;br /&gt;
** Provide support for CS137-related things&lt;br /&gt;
** Help Johannes with getting up to speed for TAing&lt;br /&gt;
** &#039;&#039;Update&#039;&#039;: Get some brain data in&lt;br /&gt;
* Thesis work&lt;br /&gt;
** Complete a rough draft of dissertation&lt;br /&gt;
** Work with Dan to get bipolar imaging paper out&lt;br /&gt;
** &#039;&#039;Update&#039;&#039;: Put together documentation of various analyses and tools&lt;br /&gt;
&lt;br /&gt;
=== [[User:David Laidlaw|David]] (for sabbatical) ===&lt;br /&gt;
&lt;br /&gt;
* yurt&lt;br /&gt;
** color calibrated within a few JND&#039;s by end of June&lt;br /&gt;
** seams calibrated within a few mm&#039;s by end of June&lt;br /&gt;
** application(s) (re)submitted for some fidelity-based research&lt;br /&gt;
** application(s) submitted for some collaboration-based research, perhaps with Gatesy/Francois/Josh/Johannes&lt;br /&gt;
** wiki &amp;quot;how to&amp;quot; for creating a yurt app, perhaps w/Johannes, before cs237 for sure!&lt;br /&gt;
** scientific VR software tools review document by end of summer, from developer to non-programming user&lt;br /&gt;
** paper out about R&amp;amp;D, model on Cruz, by end of sumer&lt;br /&gt;
* VT&lt;br /&gt;
** seam experiment&lt;br /&gt;
** submit TTTS manuscript&lt;br /&gt;
* orthopedics&lt;br /&gt;
** tools continuing to run well (despite upgrade)&lt;br /&gt;
*** get registration pipeline to pass regression tests&lt;br /&gt;
** maybe pursue diffusion imaging in joints&lt;br /&gt;
* diffusion MRI&lt;br /&gt;
** two renewal grants with Rob Paul and Ryan over summer and fall&lt;br /&gt;
** Dickstein paper and maybe proposal&lt;br /&gt;
** tractography comparison paper with Ryan during summer&lt;br /&gt;
* keep all advisees moving along appropriately&lt;br /&gt;
** prepare for incoming triplet: brains, hands, yurt&lt;br /&gt;
&lt;br /&gt;
=== [[User:Wesley Miller|Wesley]] ===&lt;br /&gt;
&lt;br /&gt;
* CAVE/YURT&lt;br /&gt;
** Complete or nearly complete user study with Johannes&lt;br /&gt;
** Help out with Demos when needed&lt;br /&gt;
** Add new applications for use in YURT&lt;br /&gt;
&lt;br /&gt;
* Fitts&#039; Law&lt;br /&gt;
** Work on paper with HCI seminar group&lt;br /&gt;
&lt;br /&gt;
* Third Person Perspective&lt;br /&gt;
** Make plans for future of 3PP project or something derivative&lt;br /&gt;
&lt;br /&gt;
* Hospital&lt;br /&gt;
** Discuss potential projects with Derek&lt;br /&gt;
&lt;br /&gt;
=== [[User:Johannes Novotny|Johannes]] ===&lt;br /&gt;
&lt;br /&gt;
* Cave/Yurt&lt;br /&gt;
** Complete user study with Wesley&lt;br /&gt;
** Design next experiment for VT project&lt;br /&gt;
** Work on VR volume visualization (3D Visualizer/CaveVOX/...)&lt;br /&gt;
** Get more concrete collaboration with students of Robbert Creton or Kristi Wharton&lt;br /&gt;
** Help out with Demos when needed&lt;br /&gt;
** Explore use of VTK in VRG3D&lt;br /&gt;
&lt;br /&gt;
* CS137&lt;br /&gt;
** Set up clean development branch for CavePainting&lt;br /&gt;
** Get acquainted with the sourcecode&lt;br /&gt;
** Fix some bugs if possible&lt;br /&gt;
&lt;br /&gt;
* Fitts&#039; Law&lt;br /&gt;
** Work on paper with HCI seminar group&lt;br /&gt;
&lt;br /&gt;
* Thesis Project &lt;br /&gt;
** Restart discussions with Derek and Kristi&lt;br /&gt;
** Explore collaborations for genome folding visualizations&lt;br /&gt;
** by December: Create Thesis proposal draft&lt;br /&gt;
&lt;br /&gt;
=== [[User:Tom Sgouros|Tom]] ===&lt;br /&gt;
&lt;br /&gt;
=== [[User:Bruce Campbell|Bruce]] ===&lt;br /&gt;
&lt;br /&gt;
* Funding&lt;br /&gt;
** Raise funding to support Visiting Scientist position for 2016&lt;br /&gt;
** Submit proposals to STAC, NSF ITEST, and ONR by end of 2015&lt;br /&gt;
** Create ten-page white paper for Jan 31, 2016 to send to other funding organizations&lt;br /&gt;
&lt;br /&gt;
* Cave/Yurt&lt;br /&gt;
** Axial Seamount application:&lt;br /&gt;
*** Implement Animation controls by Dec 31, 2015&lt;br /&gt;
*** Implement Grab and Manipulate interaction by Jan 30, 2016&lt;br /&gt;
** Create Plan for 2016 work by Jan 30, 2016 (promote here):&lt;br /&gt;
*** Continuous overall contribution: Useful Temporal Interaction GUIs&lt;br /&gt;
*** Prioritize other COVE (http://cove.ocean.washington.edu) features integration&lt;br /&gt;
*** Pursue Python interpreter integration unless other Yurt methods pan out&lt;br /&gt;
*** Anticipate STAC/ITEST programming needs for Yurt&lt;br /&gt;
*** Continue to pursue possible student participation&lt;br /&gt;
&lt;br /&gt;
* CS 137&lt;br /&gt;
** Continue to attend and revisit notes from UW INDE 543&lt;br /&gt;
** CG&amp;amp;A &#039;&#039;Art on Graphics&#039;&#039; column to layout by February 15, 2016&lt;br /&gt;
&lt;br /&gt;
* Distributed Cognition&lt;br /&gt;
** Create updated mind map (with bibliography) by Dec 31, 2015&lt;br /&gt;
** Create d-cog metric and test plan to support VIS/VAST paper by Jan 15, 2015&lt;br /&gt;
** VIS/VAST paper abstract ready by March deadline&lt;br /&gt;
&lt;br /&gt;
* Personal Development&lt;br /&gt;
** Continuous: Improve research process effectiveness including a better parallel writing process&lt;br /&gt;
** Continuous: Improve conciseness in e-mail and research-related writing&lt;br /&gt;
** Continuous: Improve at sketching ideas&lt;br /&gt;
&lt;br /&gt;
=== [[User:Josh Tveite|Josh]] ===&lt;br /&gt;
&lt;br /&gt;
* Research Comps&lt;br /&gt;
** Write/Finish proposal and give proposal presentation&lt;br /&gt;
** Find a committee - done&lt;br /&gt;
** Continue work on implementation&lt;br /&gt;
&lt;br /&gt;
* User Study&lt;br /&gt;
** Continue running users - done&lt;br /&gt;
** Write paper - submitted, needs work&lt;br /&gt;
** Help with refinements of data/paper&lt;br /&gt;
&lt;br /&gt;
* General Yurt&lt;br /&gt;
** Continue to give demos as needed&lt;br /&gt;
** Learn everything Wesley knows before he leaves&lt;br /&gt;
&lt;br /&gt;
=== [[User:Wallace Lages|Wallace]] ===&lt;br /&gt;
&lt;br /&gt;
*Finish experiment and write IEEEVR paper&lt;br /&gt;
&lt;br /&gt;
* Finish VR volume renderer&lt;br /&gt;
** last changes: added another kernel for gpu pre processing, copying one PBO to another in the GPU. Simple kernel (just remove part of the dataset)&lt;br /&gt;
** Issues: Interaction pass takes a long time on CPU&lt;br /&gt;
** Options: add spatial structure, perform interaction on GPU&lt;br /&gt;
** Other improvements: 1) reduce original RGBA 3d texture to mono -&amp;gt; improve memory usage 2) remove 3d texture altogether and implement filtering in the shader -&amp;gt; possible faster copy in one pass, 3) change to splatting 4) refactor code&lt;br /&gt;
&lt;br /&gt;
*Reimplement Volume Cracker like interaction&lt;br /&gt;
**Implement on VR&lt;br /&gt;
**Develop hardware&lt;br /&gt;
&lt;br /&gt;
* Finish new interaction technique&lt;br /&gt;
**Finish design&lt;br /&gt;
**Implement software&lt;br /&gt;
**Implement technique on VR&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- please don&#039;t edit below this line --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Past Plans and Goals ==&lt;br /&gt;
* [[/Spring 2016|Spring &#039;16]]&lt;br /&gt;
* [[/Fall 2015|Fall &#039;15]]&lt;br /&gt;
* [[/Summer 2015|Summer &#039;15]]&lt;br /&gt;
* [[/Spring 2015|Spring &#039;15]]&lt;br /&gt;
* [[/Fall 2014|Fall &#039;14]]&lt;br /&gt;
* [[/Spring-Summer 2014|Spring-Summer &#039;14]]&lt;br /&gt;
* [[/Summer-Fall 2013|Summer-Fall &#039;13]]&lt;br /&gt;
* [[/Spring 2013|Spring &#039;13]]&lt;br /&gt;
* [[/Fall 2012|Fall &#039;12]]&lt;br /&gt;
* [[/Summer 2012|Summer &#039;12]]&lt;br /&gt;
* [[/Spring 2012|Spring &#039;12]]&lt;br /&gt;
* [[/Summer-Fall 2011|Summer-Fall &#039;11]]&lt;br /&gt;
* [[/Spring 2011|Spring &#039;11]]&lt;br /&gt;
* [[/Summer-Fall 2010|Summer-Fall &#039;10]]&lt;br /&gt;
* [[/Spring 2010|Spring &#039;10]]&lt;br /&gt;
* [[/Fall 2009|Fall &#039;09]]&lt;br /&gt;
* [[/Summer 2009|Summer &#039;09]]&lt;br /&gt;
* [[/Spring 2009|Spring &#039;09]]&lt;br /&gt;
* [[/Fall 2008|Fall &#039;08]]&lt;br /&gt;
* [http://sites.google.com/a/vis.cs.brown.edu/collaboravis/Home/summer-08-group-goals Summer &#039;08]&lt;br /&gt;
&lt;br /&gt;
[[Category:VRL]]&lt;/div&gt;</summary>
		<author><name>Josh Tveite</name></author>
	</entry>
	<entry>
		<id>http://vrl.cs.brown.edu/wiki/index.php?title=Plans_and_Goals/Spring_2016&amp;diff=6822</id>
		<title>Plans and Goals/Spring 2016</title>
		<link rel="alternate" type="text/html" href="http://vrl.cs.brown.edu/wiki/index.php?title=Plans_and_Goals/Spring_2016&amp;diff=6822"/>
		<updated>2016-05-24T17:40:19Z</updated>

		<summary type="html">&lt;p&gt;Josh Tveite: Created page with &amp;quot; == Current Plans and Goals (Spring &amp;#039;16) ==  === Connor === &amp;#039;&amp;#039;&amp;#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;Boldfaced&amp;lt;/span&amp;gt;&amp;#039;&amp;#039;&amp;#039; goals are those that mark the high-le...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Current Plans and Goals (Spring &#039;16) ==&lt;br /&gt;
&lt;br /&gt;
=== [[User:Connor Gramazio|Connor]] ===&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;Boldfaced&amp;lt;/span&amp;gt;&#039;&#039;&#039; goals are those that mark the high-level success of each project.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;Writing&#039;&#039;&#039; =====&lt;br /&gt;
* &amp;lt;s&amp;gt;By January 29: Create exemplar VIS/HCI technical writing exemplar spreadsheet with Hua&amp;lt;/s&amp;gt;&lt;br /&gt;
* Shift writing style to be story- and outline-driven&lt;br /&gt;
* Practice writing in short, daily sessions&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;Dissertation&#039;&#039;&#039; =====&lt;br /&gt;
* &amp;lt;s&amp;gt;23 February: &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;Dissertation proposal&amp;lt;/span&amp;gt;&#039;&#039;&#039;&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;29 April: &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;Resubmit dissertation proposal&amp;lt;/span&amp;gt;&#039;&#039;&#039;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;Color&#039;&#039;&#039; =====&lt;br /&gt;
* &amp;lt;s&amp;gt;By 15 January: Complete achromatic color preference extrapolation&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;By 29 January: Complete pilot rounds of Experimentr data collection and iron out all bugs (remember to make security patches)&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;By 5 February: Complete all data collection&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;By 29 February: Complete 1st draft of Colorgorical paper&amp;lt;/s&amp;gt; (done 23 Feb)&lt;br /&gt;
* &amp;lt;s&amp;gt;By 21 March: submit abstract to VIS (InfoVis)&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;By 31 March: &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;Resubmit paper to VIS&amp;lt;/span&amp;gt;&#039;&#039;&#039;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;Genomics Case Study&#039;&#039;&#039; =====&lt;br /&gt;
* Weekly: check up on MAGI interaction log scraping&lt;br /&gt;
* &amp;lt;s&amp;gt;By 21 March: submit abstract to VIS (VAST)&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;By 31 March: &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;(re)submit latest draft to VAST&amp;lt;/span&amp;gt;&#039;&#039;&#039;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;BLADE&#039;&#039;&#039; =====&lt;br /&gt;
* &amp;lt;s&amp;gt;By 4 March: Have all genomics researchers scheduled for observation&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;By 1 April: Have sigma-lognormal interaction log mining implemented&amp;lt;/s&amp;gt;&lt;br /&gt;
* By 30 April: &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;Complete BLADE-video comparative evaluation&amp;lt;/span&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
* By 30 April: Complete BLADE prototype&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;Other&#039;&#039;&#039; =====&lt;br /&gt;
* &amp;lt;s&amp;gt;Complete Sheridan Certificate I program&amp;lt;/s&amp;gt;&lt;br /&gt;
* Help Karen prep heatmap color paper for submission&lt;br /&gt;
&lt;br /&gt;
=== [[User:Hua Guo|Hua]] ===&lt;br /&gt;
* &amp;lt;s&amp;gt;ThoughtFlow submission to VIS&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;Jan. 22: First round user feedback collected and design improvement plan finalized&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;Feb.25: Design improvements implemented based on first round user feedback&amp;lt;/s&amp;gt;&lt;br /&gt;
*** &amp;lt;s&amp;gt;Paper thumbnails and citation pattern vis prototyped (Feb.15)&amp;lt;/s&amp;gt;&lt;br /&gt;
*** Proposal keyword selection implemented (Feb.22)&amp;lt;/s&amp;gt;&lt;br /&gt;
*** &amp;lt;s&amp;gt;Citation pattern backend implemented (Feb.22)&amp;lt;/s&amp;gt;&lt;br /&gt;
*** &amp;lt;s&amp;gt;Citation pattern vis and paper thumbnails design refined (Feb.29)&amp;lt;/s&amp;gt;&lt;br /&gt;
*** &amp;lt;s&amp;gt;Get feedback from Steven S&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;March 7: Second round user feedback collected&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;March 21: abstract due&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;March 31: paper submission&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;Flyingsessions submission to VIS&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;March 21: abstract due&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;March 31: paper submission&amp;lt;/s&amp;gt;&lt;br /&gt;
* ThoughtFlow post-VIS work&lt;br /&gt;
** Interface redesign&lt;br /&gt;
*** Write a plan on how it ties into interaction modeling work (Apr.8)&lt;br /&gt;
*** Sketch out the design for literature exploration view (Apr.15)&lt;br /&gt;
*** Implement literature exploration view&lt;br /&gt;
** Interaction modeling&lt;br /&gt;
* Dissertation Writing&lt;br /&gt;
** Draft abstract and introduction&lt;br /&gt;
&lt;br /&gt;
=== [[User:Steven Gomez|Steve]] ===&lt;br /&gt;
* &#039;&#039;&#039;Dissertation&#039;&#039;&#039;&lt;br /&gt;
** By June 30: committee settled &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
** By June 30: dissertation draft completed and circulated &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
*** Address feedback for dissertation as it comes in&lt;br /&gt;
** By June 30: get scheduling feedback for committee for mid-August defense &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
** By early July: resolve defense scheduling &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
** By mid July: submit defense, date, meta-data, and thesis draft to Lauren &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
** By mid August: defend thesis, get notes for dissertation revisions from committee&lt;br /&gt;
** By mid September: do any necessary dissertation revisions, get signatures from committee, and submit&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;TVCG/VAST paper&#039;&#039;&#039;&lt;br /&gt;
** By June 20: Use R to get CI intervals for correlations &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
** By June 26: Help Hua with response, submission for conditional acceptance &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;NSF Proposal on Cognitive/Task Modeling&#039;&#039;&#039;&lt;br /&gt;
** Meet weekly to stay on track for September deadline&lt;br /&gt;
** By June 25:&lt;br /&gt;
*** Gather notes from all past proposals &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
*** Write up independent thoughts about new proposal, then compare with David&#039;s Expedition notes&lt;br /&gt;
** By mid July: rough draft of new proposal based on notes, discussions&lt;br /&gt;
** By August: help prepare solid final draft&lt;br /&gt;
** Submit in FastLane&lt;br /&gt;
*** By September 16 for MEDIUM&lt;br /&gt;
*** By September 24 for LARGE&lt;br /&gt;
*** By November 18 for SMALL&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Other&#039;&#039;&#039;&lt;br /&gt;
** Review workshops for VIS as possible project venues&lt;br /&gt;
** Find housing in Boston &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== [[User:Ryan Cabeen|Ryan]] ===&lt;br /&gt;
&lt;br /&gt;
* RP Imaging Studies&lt;br /&gt;
** Send update for request for additional bundles in SMART data&lt;br /&gt;
** Iron out details for South Africa analysis (group meeting on 6/10)&lt;br /&gt;
*** &#039;&#039;Update&#039;&#039;: fiber bundle length (need a couple more bundles)&lt;br /&gt;
*** &#039;&#039;Update&#039;&#039;: graph-based analysis w/ Laurie&lt;br /&gt;
** Keep up with paper reviewing and other requests&lt;br /&gt;
* Diffusion outside brain&lt;br /&gt;
** &#039;&#039;Update&#039;&#039;: support image analysis w/ Trey Crisco &amp;amp; Ed Walsh&lt;br /&gt;
* Yurt&lt;br /&gt;
** Demo as needed&lt;br /&gt;
** Provide support for CS137-related things&lt;br /&gt;
** Help Johannes with getting up to speed for TAing&lt;br /&gt;
** &#039;&#039;Update&#039;&#039;: Get some brain data in&lt;br /&gt;
* Thesis work&lt;br /&gt;
** Complete a rough draft of dissertation&lt;br /&gt;
** Work with Dan to get bipolar imaging paper out&lt;br /&gt;
** &#039;&#039;Update&#039;&#039;: Put together documentation of various analyses and tools&lt;br /&gt;
&lt;br /&gt;
=== [[User:David Laidlaw|David]] (for sabbatical) ===&lt;br /&gt;
&lt;br /&gt;
* yurt&lt;br /&gt;
** color calibrated within a few JND&#039;s by end of June&lt;br /&gt;
** seams calibrated within a few mm&#039;s by end of June&lt;br /&gt;
** application(s) (re)submitted for some fidelity-based research&lt;br /&gt;
** application(s) submitted for some collaboration-based research, perhaps with Gatesy/Francois/Josh/Johannes&lt;br /&gt;
** wiki &amp;quot;how to&amp;quot; for creating a yurt app, perhaps w/Johannes, before cs237 for sure!&lt;br /&gt;
** scientific VR software tools review document by end of summer, from developer to non-programming user&lt;br /&gt;
** paper out about R&amp;amp;D, model on Cruz, by end of sumer&lt;br /&gt;
* VT&lt;br /&gt;
** seam experiment&lt;br /&gt;
** submit TTTS manuscript&lt;br /&gt;
* orthopedics&lt;br /&gt;
** tools continuing to run well (despite upgrade)&lt;br /&gt;
*** get registration pipeline to pass regression tests&lt;br /&gt;
** maybe pursue diffusion imaging in joints&lt;br /&gt;
* diffusion MRI&lt;br /&gt;
** two renewal grants with Rob Paul and Ryan over summer and fall&lt;br /&gt;
** Dickstein paper and maybe proposal&lt;br /&gt;
** tractography comparison paper with Ryan during summer&lt;br /&gt;
* keep all advisees moving along appropriately&lt;br /&gt;
** prepare for incoming triplet: brains, hands, yurt&lt;br /&gt;
&lt;br /&gt;
=== [[User:Wesley Miller|Wesley]] ===&lt;br /&gt;
&lt;br /&gt;
* CAVE/YURT&lt;br /&gt;
** Complete or nearly complete user study with Johannes&lt;br /&gt;
** Help out with Demos when needed&lt;br /&gt;
** Add new applications for use in YURT&lt;br /&gt;
&lt;br /&gt;
* Fitts&#039; Law&lt;br /&gt;
** Work on paper with HCI seminar group&lt;br /&gt;
&lt;br /&gt;
* Third Person Perspective&lt;br /&gt;
** Make plans for future of 3PP project or something derivative&lt;br /&gt;
&lt;br /&gt;
* Hospital&lt;br /&gt;
** Discuss potential projects with Derek&lt;br /&gt;
&lt;br /&gt;
=== [[User:Johannes Novotny|Johannes]] ===&lt;br /&gt;
&lt;br /&gt;
* Cave/Yurt&lt;br /&gt;
** Complete user study with Wesley&lt;br /&gt;
** Design next experiment for VT project&lt;br /&gt;
** Work on VR volume visualization (3D Visualizer/CaveVOX/...)&lt;br /&gt;
** Get more concrete collaboration with students of Robbert Creton or Kristi Wharton&lt;br /&gt;
** Help out with Demos when needed&lt;br /&gt;
** Explore use of VTK in VRG3D&lt;br /&gt;
&lt;br /&gt;
* CS137&lt;br /&gt;
** Set up clean development branch for CavePainting&lt;br /&gt;
** Get acquainted with the sourcecode&lt;br /&gt;
** Fix some bugs if possible&lt;br /&gt;
&lt;br /&gt;
* Fitts&#039; Law&lt;br /&gt;
** Work on paper with HCI seminar group&lt;br /&gt;
&lt;br /&gt;
* Thesis Project &lt;br /&gt;
** Restart discussions with Derek and Kristi&lt;br /&gt;
** Explore collaborations for genome folding visualizations&lt;br /&gt;
** by December: Create Thesis proposal draft&lt;br /&gt;
&lt;br /&gt;
=== [[User:Tom Sgouros|Tom]] ===&lt;br /&gt;
&lt;br /&gt;
=== [[User:Bruce Campbell|Bruce]] ===&lt;br /&gt;
&lt;br /&gt;
* Funding&lt;br /&gt;
** Raise funding to support Visiting Scientist position for 2016&lt;br /&gt;
** Submit proposals to STAC, NSF ITEST, and ONR by end of 2015&lt;br /&gt;
** Create ten-page white paper for Jan 31, 2016 to send to other funding organizations&lt;br /&gt;
&lt;br /&gt;
* Cave/Yurt&lt;br /&gt;
** Axial Seamount application:&lt;br /&gt;
*** Implement Animation controls by Dec 31, 2015&lt;br /&gt;
*** Implement Grab and Manipulate interaction by Jan 30, 2016&lt;br /&gt;
** Create Plan for 2016 work by Jan 30, 2016 (promote here):&lt;br /&gt;
*** Continuous overall contribution: Useful Temporal Interaction GUIs&lt;br /&gt;
*** Prioritize other COVE (http://cove.ocean.washington.edu) features integration&lt;br /&gt;
*** Pursue Python interpreter integration unless other Yurt methods pan out&lt;br /&gt;
*** Anticipate STAC/ITEST programming needs for Yurt&lt;br /&gt;
*** Continue to pursue possible student participation&lt;br /&gt;
&lt;br /&gt;
* CS 137&lt;br /&gt;
** Continue to attend and revisit notes from UW INDE 543&lt;br /&gt;
** CG&amp;amp;A &#039;&#039;Art on Graphics&#039;&#039; column to layout by February 15, 2016&lt;br /&gt;
&lt;br /&gt;
* Distributed Cognition&lt;br /&gt;
** Create updated mind map (with bibliography) by Dec 31, 2015&lt;br /&gt;
** Create d-cog metric and test plan to support VIS/VAST paper by Jan 15, 2015&lt;br /&gt;
** VIS/VAST paper abstract ready by March deadline&lt;br /&gt;
&lt;br /&gt;
* Personal Development&lt;br /&gt;
** Continuous: Improve research process effectiveness including a better parallel writing process&lt;br /&gt;
** Continuous: Improve conciseness in e-mail and research-related writing&lt;br /&gt;
** Continuous: Improve at sketching ideas&lt;br /&gt;
&lt;br /&gt;
=== [[User:Josh Tveite|Josh]] ===&lt;br /&gt;
&lt;br /&gt;
* Research Comps&lt;br /&gt;
** Write/Finish proposal and give proposal presentation&lt;br /&gt;
** Find a committee - done&lt;br /&gt;
** Continue work on implementation&lt;br /&gt;
&lt;br /&gt;
* User Study&lt;br /&gt;
** Continue running users - done&lt;br /&gt;
** Write paper - submitted, needs work&lt;br /&gt;
** Help with refinements of data/paper&lt;br /&gt;
&lt;br /&gt;
* General Yurt&lt;br /&gt;
** Continue to give demos as needed&lt;br /&gt;
** Learn everything Wesley knows before he leaves&lt;br /&gt;
&lt;br /&gt;
=== [[User:Wallace Lages|Wallace]] ===&lt;br /&gt;
&lt;br /&gt;
*Finish experiment and write IEEEVR paper&lt;br /&gt;
&lt;br /&gt;
* Finish VR volume renderer&lt;br /&gt;
** last changes: added another kernel for gpu pre processing, copying one PBO to another in the GPU. Simple kernel (just remove part of the dataset)&lt;br /&gt;
** Issues: Interaction pass takes a long time on CPU&lt;br /&gt;
** Options: add spatial structure, perform interaction on GPU&lt;br /&gt;
** Other improvements: 1) reduce original RGBA 3d texture to mono -&amp;gt; improve memory usage 2) remove 3d texture altogether and implement filtering in the shader -&amp;gt; possible faster copy in one pass, 3) change to splatting 4) refactor code&lt;br /&gt;
&lt;br /&gt;
*Reimplement Volume Cracker like interaction&lt;br /&gt;
**Implement on VR&lt;br /&gt;
**Develop hardware&lt;br /&gt;
&lt;br /&gt;
* Finish new interaction technique&lt;br /&gt;
**Finish design&lt;br /&gt;
**Implement software&lt;br /&gt;
**Implement technique on VR&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- please don&#039;t edit below this line --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Past Plans and Goals ==&lt;br /&gt;
* [[/Fall 2015|Fall &#039;15]]&lt;br /&gt;
* [[/Summer 2015|Summer &#039;15]]&lt;br /&gt;
* [[/Spring 2015|Spring &#039;15]]&lt;br /&gt;
* [[/Fall 2014|Fall &#039;14]]&lt;br /&gt;
* [[/Spring-Summer 2014|Spring-Summer &#039;14]]&lt;br /&gt;
* [[/Summer-Fall 2013|Summer-Fall &#039;13]]&lt;br /&gt;
* [[/Spring 2013|Spring &#039;13]]&lt;br /&gt;
* [[/Fall 2012|Fall &#039;12]]&lt;br /&gt;
* [[/Summer 2012|Summer &#039;12]]&lt;br /&gt;
* [[/Spring 2012|Spring &#039;12]]&lt;br /&gt;
* [[/Summer-Fall 2011|Summer-Fall &#039;11]]&lt;br /&gt;
* [[/Spring 2011|Spring &#039;11]]&lt;br /&gt;
* [[/Summer-Fall 2010|Summer-Fall &#039;10]]&lt;br /&gt;
* [[/Spring 2010|Spring &#039;10]]&lt;br /&gt;
* [[/Fall 2009|Fall &#039;09]]&lt;br /&gt;
* [[/Summer 2009|Summer &#039;09]]&lt;br /&gt;
* [[/Spring 2009|Spring &#039;09]]&lt;br /&gt;
* [[/Fall 2008|Fall &#039;08]]&lt;br /&gt;
* [http://sites.google.com/a/vis.cs.brown.edu/collaboravis/Home/summer-08-group-goals Summer &#039;08]&lt;br /&gt;
&lt;br /&gt;
[[Category:VRL]]&lt;/div&gt;</summary>
		<author><name>Josh Tveite</name></author>
	</entry>
	<entry>
		<id>http://vrl.cs.brown.edu/wiki/index.php?title=Plans_and_Goals&amp;diff=6771</id>
		<title>Plans and Goals</title>
		<link rel="alternate" type="text/html" href="http://vrl.cs.brown.edu/wiki/index.php?title=Plans_and_Goals&amp;diff=6771"/>
		<updated>2016-04-18T17:17:06Z</updated>

		<summary type="html">&lt;p&gt;Josh Tveite: /* Josh */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;On this page the members of the [[VRL]] record and refine their goals for the current semester.  This is a living document in which [[dhl]] will provide feedback.  See the bottom of the page for links to past plans &amp;amp; goals documents.&lt;br /&gt;
&lt;br /&gt;
== Current Schedule ==&lt;br /&gt;
Meetings are on Mondays.  The authoritative list is in dhl&#039;s calendar.&lt;br /&gt;
&lt;br /&gt;
== Current Plans and Goals (Spring &#039;16) ==&lt;br /&gt;
&lt;br /&gt;
=== [[User:Connor Gramazio|Connor]] ===&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;Boldfaced&amp;lt;/span&amp;gt;&#039;&#039;&#039; goals are those that mark the high-level success of each project.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;Writing&#039;&#039;&#039; =====&lt;br /&gt;
* &amp;lt;s&amp;gt;By January 29: Create exemplar VIS/HCI technical writing exemplar spreadsheet with Hua&amp;lt;/s&amp;gt;&lt;br /&gt;
* Shift writing style to be story- and outline-driven&lt;br /&gt;
* Reread William&#039;s &amp;quot;Style: Toward clarity and grace&amp;quot;, Boice&#039;s &amp;quot;Advice for new faculty members&amp;quot;, and Strunk &amp;amp; White&#039;s &amp;quot;Elements of Style&amp;quot;&lt;br /&gt;
* Practice writing in short, daily sessions&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;Dissertation&#039;&#039;&#039; =====&lt;br /&gt;
* &amp;lt;s&amp;gt;23 February: &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;Dissertation proposal&amp;lt;/span&amp;gt;&#039;&#039;&#039;&amp;lt;/s&amp;gt;&lt;br /&gt;
* 29 April: &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;Resubmit dissertation proposal&amp;lt;/span&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;Color&#039;&#039;&#039; =====&lt;br /&gt;
* &amp;lt;s&amp;gt;By 15 January: Complete achromatic color preference extrapolation&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;By 29 January: Complete pilot rounds of Experimentr data collection and iron out all bugs (remember to make security patches)&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;By 5 February: Complete all data collection&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;By 29 February: Complete 1st draft of Colorgorical paper&amp;lt;/s&amp;gt; (done 23 Feb)&lt;br /&gt;
* &amp;lt;s&amp;gt;By 21 March: submit abstract to VIS (InfoVis)&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;By 31 March: &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;Resubmit paper to VIS&amp;lt;/span&amp;gt;&#039;&#039;&#039;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;Genomics Case Study&#039;&#039;&#039; =====&lt;br /&gt;
* Weekly: check up on MAGI interaction log scraping&lt;br /&gt;
* &amp;lt;s&amp;gt;By 21 March: submit abstract to VIS (VAST)&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;By 31 March: &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;(re)submit latest draft to VAST&amp;lt;/span&amp;gt;&#039;&#039;&#039;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;BLADE&#039;&#039;&#039; =====&lt;br /&gt;
* &amp;lt;s&amp;gt;By 4 March: Have all genomics researchers scheduled for observation&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;By 1 April: Have sigma-lognormal interaction log mining implemented&amp;lt;/s&amp;gt;&lt;br /&gt;
* By 30 April: &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;Complete BLADE-video comparative evaluation&amp;lt;/span&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
* By 30 April: Complete BLADE prototype&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;Other&#039;&#039;&#039; =====&lt;br /&gt;
* &amp;lt;s&amp;gt;Complete Sheridan Certificate I program&amp;lt;/s&amp;gt;&lt;br /&gt;
* Help Karen prep heatmap color paper for submission&lt;br /&gt;
&lt;br /&gt;
=== [[User:Hua Guo|Hua]] ===&lt;br /&gt;
* &amp;lt;s&amp;gt;ThoughtFlow submission to VIS&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;Jan. 22: First round user feedback collected and design improvement plan finalized&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;Feb.25: Design improvements implemented based on first round user feedback&amp;lt;/s&amp;gt;&lt;br /&gt;
*** &amp;lt;s&amp;gt;Paper thumbnails and citation pattern vis prototyped (Feb.15)&amp;lt;/s&amp;gt;&lt;br /&gt;
*** Proposal keyword selection implemented (Feb.22)&amp;lt;/s&amp;gt;&lt;br /&gt;
*** &amp;lt;s&amp;gt;Citation pattern backend implemented (Feb.22)&amp;lt;/s&amp;gt;&lt;br /&gt;
*** &amp;lt;s&amp;gt;Citation pattern vis and paper thumbnails design refined (Feb.29)&amp;lt;/s&amp;gt;&lt;br /&gt;
*** &amp;lt;s&amp;gt;Get feedback from Steven S&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;March 7: Second round user feedback collected&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;March 21: abstract due&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;March 31: paper submission&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt;Flyingsessions submission to VIS&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;March 21: abstract due&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;March 31: paper submission&amp;lt;/s&amp;gt;&lt;br /&gt;
* ThoughtFlow post-VIS work&lt;br /&gt;
** Interface redesign&lt;br /&gt;
*** Write a plan on how it ties into interaction modeling work (Apr.8)&lt;br /&gt;
*** Sketch out the design for literature exploration view (Apr.15)&lt;br /&gt;
*** Implement literature exploration view&lt;br /&gt;
** Interaction modeling&lt;br /&gt;
* Dissertation Writing&lt;br /&gt;
** Draft abstract and introduction&lt;br /&gt;
&lt;br /&gt;
=== [[User:Steven Gomez|Steve]] ===&lt;br /&gt;
* &#039;&#039;&#039;Dissertation&#039;&#039;&#039;&lt;br /&gt;
** By June 30: committee settled &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
** By June 30: dissertation draft completed and circulated &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
*** Address feedback for dissertation as it comes in&lt;br /&gt;
** By June 30: get scheduling feedback for committee for mid-August defense &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
** By early July: resolve defense scheduling &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
** By mid July: submit defense, date, meta-data, and thesis draft to Lauren &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
** By mid August: defend thesis, get notes for dissertation revisions from committee&lt;br /&gt;
** By mid September: do any necessary dissertation revisions, get signatures from committee, and submit&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;TVCG/VAST paper&#039;&#039;&#039;&lt;br /&gt;
** By June 20: Use R to get CI intervals for correlations &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
** By June 26: Help Hua with response, submission for conditional acceptance &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;NSF Proposal on Cognitive/Task Modeling&#039;&#039;&#039;&lt;br /&gt;
** Meet weekly to stay on track for September deadline&lt;br /&gt;
** By June 25:&lt;br /&gt;
*** Gather notes from all past proposals &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
*** Write up independent thoughts about new proposal, then compare with David&#039;s Expedition notes&lt;br /&gt;
** By mid July: rough draft of new proposal based on notes, discussions&lt;br /&gt;
** By August: help prepare solid final draft&lt;br /&gt;
** Submit in FastLane&lt;br /&gt;
*** By September 16 for MEDIUM&lt;br /&gt;
*** By September 24 for LARGE&lt;br /&gt;
*** By November 18 for SMALL&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Other&#039;&#039;&#039;&lt;br /&gt;
** Review workshops for VIS as possible project venues&lt;br /&gt;
** Find housing in Boston &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== [[User:Ryan Cabeen|Ryan]] ===&lt;br /&gt;
&lt;br /&gt;
* RP Imaging Studies&lt;br /&gt;
** Send update for request for additional bundles in SMART data&lt;br /&gt;
** Iron out details for South Africa analysis (group meeting on 6/10)&lt;br /&gt;
*** &#039;&#039;Update&#039;&#039;: fiber bundle length (need a couple more bundles)&lt;br /&gt;
*** &#039;&#039;Update&#039;&#039;: graph-based analysis w/ Laurie&lt;br /&gt;
** Keep up with paper reviewing and other requests&lt;br /&gt;
* Diffusion outside brain&lt;br /&gt;
** &#039;&#039;Update&#039;&#039;: support image analysis w/ Trey Crisco &amp;amp; Ed Walsh&lt;br /&gt;
* Yurt&lt;br /&gt;
** Demo as needed&lt;br /&gt;
** Provide support for CS137-related things&lt;br /&gt;
** Help Johannes with getting up to speed for TAing&lt;br /&gt;
** &#039;&#039;Update&#039;&#039;: Get some brain data in&lt;br /&gt;
* Thesis work&lt;br /&gt;
** Complete a rough draft of dissertation&lt;br /&gt;
** Work with Dan to get bipolar imaging paper out&lt;br /&gt;
** &#039;&#039;Update&#039;&#039;: Put together documentation of various analyses and tools&lt;br /&gt;
&lt;br /&gt;
=== [[User:David Laidlaw|David]] ===&lt;br /&gt;
&lt;br /&gt;
* yurt&lt;br /&gt;
** working well enough for cs137&lt;br /&gt;
** working well enough for VT experiment&lt;br /&gt;
** press&lt;br /&gt;
** paper out about R&amp;amp;D, model on Cruz&lt;br /&gt;
** hw and low-level software testing/reliability plan&lt;br /&gt;
** application software development easier (asf?)&lt;br /&gt;
* VT&lt;br /&gt;
** first experiment complete, written, and out!&lt;br /&gt;
* orthopedics&lt;br /&gt;
** tools continuing to run well (despite upgrade)&lt;br /&gt;
** renewal with Trey&lt;br /&gt;
** diffusion imaging&lt;br /&gt;
* longer-term funding progress&lt;br /&gt;
** cognition&lt;br /&gt;
** VR&lt;br /&gt;
** brains&lt;br /&gt;
** trey&lt;br /&gt;
** STC?&lt;br /&gt;
* good CS137&lt;br /&gt;
* keep all advisees moving along appropriately&lt;br /&gt;
&lt;br /&gt;
=== [[User:Wesley Miller|Wesley]] ===&lt;br /&gt;
&lt;br /&gt;
* CAVE/YURT&lt;br /&gt;
** Complete or nearly complete user study with Johannes&lt;br /&gt;
** Help out with Demos when needed&lt;br /&gt;
** Add new applications for use in YURT&lt;br /&gt;
&lt;br /&gt;
* Fitts&#039; Law&lt;br /&gt;
** Work on paper with HCI seminar group&lt;br /&gt;
&lt;br /&gt;
* Third Person Perspective&lt;br /&gt;
** Make plans for future of 3PP project or something derivative&lt;br /&gt;
&lt;br /&gt;
* Hospital&lt;br /&gt;
** Discuss potential projects with Derek&lt;br /&gt;
&lt;br /&gt;
=== [[User:Johannes Novotny|Johannes]] ===&lt;br /&gt;
&lt;br /&gt;
* Cave/Yurt&lt;br /&gt;
** Complete user study with Wesley&lt;br /&gt;
** Design next experiment for VT project&lt;br /&gt;
** Work on VR volume visualization (3D Visualizer/CaveVOX/...)&lt;br /&gt;
** Get more concrete collaboration with students of Robbert Creton or Kristi Wharton&lt;br /&gt;
** Help out with Demos when needed&lt;br /&gt;
** Explore use of VTK in VRG3D&lt;br /&gt;
&lt;br /&gt;
* CS137&lt;br /&gt;
** Set up clean development branch for CavePainting&lt;br /&gt;
** Get acquainted with the sourcecode&lt;br /&gt;
** Fix some bugs if possible&lt;br /&gt;
&lt;br /&gt;
* Fitts&#039; Law&lt;br /&gt;
** Work on paper with HCI seminar group&lt;br /&gt;
&lt;br /&gt;
* Thesis Project &lt;br /&gt;
** Restart discussions with Derek and Kristi&lt;br /&gt;
** Explore collaborations for genome folding visualizations&lt;br /&gt;
** by December: Create Thesis proposal draft&lt;br /&gt;
&lt;br /&gt;
=== [[User:Tom Sgouros|Tom]] ===&lt;br /&gt;
&lt;br /&gt;
=== [[User:Bruce Campbell|Bruce]] ===&lt;br /&gt;
&lt;br /&gt;
* Funding&lt;br /&gt;
** Raise funding to support Visiting Scientist position for 2016&lt;br /&gt;
** Submit proposals to STAC, NSF ITEST, and ONR by end of 2015&lt;br /&gt;
** Create ten-page white paper for Jan 31, 2016 to send to other funding organizations&lt;br /&gt;
&lt;br /&gt;
* Cave/Yurt&lt;br /&gt;
** Axial Seamount application:&lt;br /&gt;
*** Implement Animation controls by Dec 31, 2015&lt;br /&gt;
*** Implement Grab and Manipulate interaction by Jan 30, 2016&lt;br /&gt;
** Create Plan for 2016 work by Jan 30, 2016 (promote here):&lt;br /&gt;
*** Continuous overall contribution: Useful Temporal Interaction GUIs&lt;br /&gt;
*** Prioritize other COVE (http://cove.ocean.washington.edu) features integration&lt;br /&gt;
*** Pursue Python interpreter integration unless other Yurt methods pan out&lt;br /&gt;
*** Anticipate STAC/ITEST programming needs for Yurt&lt;br /&gt;
*** Continue to pursue possible student participation&lt;br /&gt;
&lt;br /&gt;
* CS 137&lt;br /&gt;
** Continue to attend and revisit notes from UW INDE 543&lt;br /&gt;
** CG&amp;amp;A &#039;&#039;Art on Graphics&#039;&#039; column to layout by February 15, 2016&lt;br /&gt;
&lt;br /&gt;
* Distributed Cognition&lt;br /&gt;
** Create updated mind map (with bibliography) by Dec 31, 2015&lt;br /&gt;
** Create d-cog metric and test plan to support VIS/VAST paper by Jan 15, 2015&lt;br /&gt;
** VIS/VAST paper abstract ready by March deadline&lt;br /&gt;
&lt;br /&gt;
* Personal Development&lt;br /&gt;
** Continuous: Improve research process effectiveness including a better parallel writing process&lt;br /&gt;
** Continuous: Improve conciseness in e-mail and research-related writing&lt;br /&gt;
** Continuous: Improve at sketching ideas&lt;br /&gt;
&lt;br /&gt;
=== [[User:Josh Tveite|Josh]] ===&lt;br /&gt;
&lt;br /&gt;
* Research Comps&lt;br /&gt;
** Write/Finish proposal and give proposal presentation&lt;br /&gt;
** Find a committee - done&lt;br /&gt;
** Continue work on implementation&lt;br /&gt;
&lt;br /&gt;
* User Study&lt;br /&gt;
** Continue running users - done&lt;br /&gt;
** Write paper - submitted, needs work&lt;br /&gt;
** Help with refinements of data/paper&lt;br /&gt;
&lt;br /&gt;
* General Yurt&lt;br /&gt;
** Continue to give demos as needed&lt;br /&gt;
** Learn everything Wesley knows before he leaves&lt;br /&gt;
&lt;br /&gt;
=== [[User:Wallace Lages|Wallace]] ===&lt;br /&gt;
&lt;br /&gt;
*Finish experiment and write IEEEVR paper&lt;br /&gt;
&lt;br /&gt;
* Finish VR volume renderer&lt;br /&gt;
** last changes: added another kernel for gpu pre processing, copying one PBO to another in the GPU. Simple kernel (just remove part of the dataset)&lt;br /&gt;
** Issues: Interaction pass takes a long time on CPU&lt;br /&gt;
** Options: add spatial structure, perform interaction on GPU&lt;br /&gt;
** Other improvements: 1) reduce original RGBA 3d texture to mono -&amp;gt; improve memory usage 2) remove 3d texture altogether and implement filtering in the shader -&amp;gt; possible faster copy in one pass, 3) change to splatting 4) refactor code&lt;br /&gt;
&lt;br /&gt;
*Reimplement Volume Cracker like interaction&lt;br /&gt;
**Implement on VR&lt;br /&gt;
**Develop hardware&lt;br /&gt;
&lt;br /&gt;
* Finish new interaction technique&lt;br /&gt;
**Finish design&lt;br /&gt;
**Implement software&lt;br /&gt;
**Implement technique on VR&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- please don&#039;t edit below this line --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Past Plans and Goals ==&lt;br /&gt;
* [[/Fall 2015|Fall &#039;15]]&lt;br /&gt;
* [[/Summer 2015|Summer &#039;15]]&lt;br /&gt;
* [[/Spring 2015|Spring &#039;15]]&lt;br /&gt;
* [[/Fall 2014|Fall &#039;14]]&lt;br /&gt;
* [[/Spring-Summer 2014|Spring-Summer &#039;14]]&lt;br /&gt;
* [[/Summer-Fall 2013|Summer-Fall &#039;13]]&lt;br /&gt;
* [[/Spring 2013|Spring &#039;13]]&lt;br /&gt;
* [[/Fall 2012|Fall &#039;12]]&lt;br /&gt;
* [[/Summer 2012|Summer &#039;12]]&lt;br /&gt;
* [[/Spring 2012|Spring &#039;12]]&lt;br /&gt;
* [[/Summer-Fall 2011|Summer-Fall &#039;11]]&lt;br /&gt;
* [[/Spring 2011|Spring &#039;11]]&lt;br /&gt;
* [[/Summer-Fall 2010|Summer-Fall &#039;10]]&lt;br /&gt;
* [[/Spring 2010|Spring &#039;10]]&lt;br /&gt;
* [[/Fall 2009|Fall &#039;09]]&lt;br /&gt;
* [[/Summer 2009|Summer &#039;09]]&lt;br /&gt;
* [[/Spring 2009|Spring &#039;09]]&lt;br /&gt;
* [[/Fall 2008|Fall &#039;08]]&lt;br /&gt;
* [http://sites.google.com/a/vis.cs.brown.edu/collaboravis/Home/summer-08-group-goals Summer &#039;08]&lt;br /&gt;
&lt;br /&gt;
[[Category:VRL]]&lt;/div&gt;</summary>
		<author><name>Josh Tveite</name></author>
	</entry>
	<entry>
		<id>http://vrl.cs.brown.edu/wiki/index.php?title=Plans_and_Goals&amp;diff=6704</id>
		<title>Plans and Goals</title>
		<link rel="alternate" type="text/html" href="http://vrl.cs.brown.edu/wiki/index.php?title=Plans_and_Goals&amp;diff=6704"/>
		<updated>2015-09-08T19:39:03Z</updated>

		<summary type="html">&lt;p&gt;Josh Tveite: /* Current Plans and Goals (Summer &amp;#039;15) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;On this page the members of the [[VRL]] record and refine their goals for the current semester.  This is a living document in which [[dhl]] will provide feedback.  See the bottom of the page for links to past plans &amp;amp; goals documents.&lt;br /&gt;
&lt;br /&gt;
== Current Schedule ==&lt;br /&gt;
Meetings are on Mondays.  The authoritative list is in dhl&#039;s calendar.&lt;br /&gt;
&lt;br /&gt;
== Current Plans and Goals (Summer &#039;15) ==&lt;br /&gt;
&lt;br /&gt;
=== [[User:Connor Gramazio|Connor]] ===&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;Boldfaced&amp;lt;/span&amp;gt;&#039;&#039;&#039; goals are those that mark the high-level success of each project.&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;Dissertation&#039;&#039;&#039; =====&lt;br /&gt;
&amp;lt;s&amp;gt;&lt;br /&gt;
* By June 5: &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;send out complete first draft to dissertation committee&amp;lt;/span&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;/s&amp;gt;&lt;br /&gt;
* By August 5: &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;send out complete first draft to dissertation committee&amp;lt;/span&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
* By September 4: &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;schedule proposal date&amp;lt;/span&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;Genomics&#039;&#039;&#039; =====&lt;br /&gt;
* Weekly: check up on MAGI interaction logs and process them through BLADE to verify collection is going smoothly&lt;br /&gt;
&amp;lt;s&amp;gt;&lt;br /&gt;
* By June 26: respond to VIS review feedback&lt;br /&gt;
* By June 30: complete MAGI view redesign and accompanying logging refactor&lt;br /&gt;
* By June 30: create local MAGI annotation development sandbox for ETA development&lt;br /&gt;
&amp;lt;/s&amp;gt;&lt;br /&gt;
(VIS paper rejections = reshuffle)&lt;br /&gt;
* By July 27: complete genomics paper rewrite&lt;br /&gt;
* By July 31: create local MAGI annotation development sandbox for ETA development&lt;br /&gt;
* By August 12: &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;create stand-alone ETA prototype that displays querryable network with annotation overlay&amp;lt;/span&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
* By September 4: draft a high-level ETA contribution document to ID ultimate project direction (e.g., drop topic modeling)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;Color&#039;&#039;&#039; =====&lt;br /&gt;
&amp;lt;s&amp;gt;&lt;br /&gt;
* By June 26: respond to VIS review feedback&lt;br /&gt;
* By June 30: prototype D3 decomposition-by-category feature of Colorgorical&lt;br /&gt;
* By July 10: prototype new Colorgorical scoring functions using Bayesian optimization procedure&lt;br /&gt;
* By August 7: &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;complete integration of new scoring functions into Colorgorical&amp;lt;/span&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;/s&amp;gt;&lt;br /&gt;
(VIS paper rejections = reshuffle)&lt;br /&gt;
* By July 27: complete colorgorical paper rewrite&lt;br /&gt;
* By August 21:  &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;integrate new Colorgorical scoring functions using Bayesian optimization procedure&amp;lt;/span&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
* By September 4: prototype D3 decomposition-by-category feature of Colorgorical&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;Other&#039;&#039;&#039; =====&lt;br /&gt;
* &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:steelblue&amp;quot;&amp;gt;Cut back on non-dissertation projects to 20% time by end of summer&amp;lt;/span&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== [[User:Hua Guo|Hua]] ===&lt;br /&gt;
&lt;br /&gt;
=== [[User:Steven Gomez|Steve]] ===&lt;br /&gt;
* &#039;&#039;&#039;Dissertation&#039;&#039;&#039;&lt;br /&gt;
** By June 30: committee settled &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
** By June 30: dissertation draft completed and circulated &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
*** Address feedback for dissertation as it comes in&lt;br /&gt;
** By June 30: get scheduling feedback for committee for mid-August defense &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
** By early July: resolve defense scheduling &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
** By mid July: submit defense, date, meta-data, and thesis draft to Lauren &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
** By mid August: defend thesis, get notes for dissertation revisions from committee&lt;br /&gt;
** By mid September: do any necessary dissertation revisions, get signatures from committee, and submit&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;TVCG/VAST paper&#039;&#039;&#039;&lt;br /&gt;
** By June 20: Use R to get CI intervals for correlations &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
** By June 26: Help Hua with response, submission for conditional acceptance &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;NSF Proposal on Cognitive/Task Modeling&#039;&#039;&#039;&lt;br /&gt;
** Meet weekly to stay on track for September deadline&lt;br /&gt;
** By June 25:&lt;br /&gt;
*** Gather notes from all past proposals &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
*** Write up independent thoughts about new proposal, then compare with David&#039;s Expedition notes&lt;br /&gt;
** By mid July: rough draft of new proposal based on notes, discussions&lt;br /&gt;
** By August: help prepare solid final draft&lt;br /&gt;
** Submit in FastLane&lt;br /&gt;
*** By September 16 for MEDIUM&lt;br /&gt;
*** By September 24 for LARGE&lt;br /&gt;
*** By November 18 for SMALL&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Other&#039;&#039;&#039;&lt;br /&gt;
** Review workshops for VIS as possible project venues&lt;br /&gt;
** Find housing in Boston &amp;lt;span style=&amp;quot;color:#00FF00&amp;quot;&amp;gt;          &amp;amp;#10003;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== [[User:Ryan Cabeen|Ryan]] ===&lt;br /&gt;
&lt;br /&gt;
* RP Imaging Studies&lt;br /&gt;
** Send update for request for additional bundles in SMART data&lt;br /&gt;
** Iron out details for South Africa analysis (group meeting on 6/10)&lt;br /&gt;
*** &#039;&#039;Update&#039;&#039;: fiber bundle length (need a couple more bundles)&lt;br /&gt;
*** &#039;&#039;Update&#039;&#039;: graph-based analysis w/ Laurie&lt;br /&gt;
** Keep up with paper reviewing and other requests&lt;br /&gt;
* Diffusion outside brain&lt;br /&gt;
** &#039;&#039;Update&#039;&#039;: support image analysis w/ Trey Crisco &amp;amp; Ed Walsh&lt;br /&gt;
* Yurt&lt;br /&gt;
** Demo as needed&lt;br /&gt;
** Provide support for CS137-related things&lt;br /&gt;
** Help Johannes with getting up to speed for TAing&lt;br /&gt;
** &#039;&#039;Update&#039;&#039;: Get some brain data in&lt;br /&gt;
* Thesis work&lt;br /&gt;
** Complete a rough draft of dissertation&lt;br /&gt;
** Work with Dan to get bipolar imaging paper out&lt;br /&gt;
** &#039;&#039;Update&#039;&#039;: Put together documentation of various analyses and tools&lt;br /&gt;
&lt;br /&gt;
=== [[User:David Laidlaw|David]] ===&lt;br /&gt;
&lt;br /&gt;
=== [[User:Wesley Miller|Wesley]] ===&lt;br /&gt;
&lt;br /&gt;
* CAVE/YURT&lt;br /&gt;
** Complete or nearly complete user study with Johannes&lt;br /&gt;
** Help out with Demos when needed&lt;br /&gt;
** Add new applications for use in YURT&lt;br /&gt;
&lt;br /&gt;
* Fitts&#039; Law&lt;br /&gt;
** Work on paper with HCI seminar group&lt;br /&gt;
&lt;br /&gt;
* Third Person Perspective&lt;br /&gt;
** Make plans for future of 3PP project or something derivative&lt;br /&gt;
&lt;br /&gt;
* Hospital&lt;br /&gt;
** Discuss potential projects with Derek&lt;br /&gt;
&lt;br /&gt;
=== [[User:Johannes Novotny|Johannes]] ===&lt;br /&gt;
&lt;br /&gt;
* Cave/Yurt&lt;br /&gt;
** Complete user study with Wesley&lt;br /&gt;
** Work on VR volume visualization (3D Visualizer/CaveVOX/...)&lt;br /&gt;
** Get more concrete collaboration with students of Robbert Creton or Kristi Wharton&lt;br /&gt;
** Help out with Demos when needed&lt;br /&gt;
&lt;br /&gt;
* CS137&lt;br /&gt;
** Set up clean development branch for CavePainting&lt;br /&gt;
** Get acquainted with the sourcecode&lt;br /&gt;
** Fix some bugs if possible&lt;br /&gt;
&lt;br /&gt;
* Fitts&#039; Law&lt;br /&gt;
** Work on paper with HCI seminar group&lt;br /&gt;
&lt;br /&gt;
=== [[User:Tom Sgouros|Tom]] ===&lt;br /&gt;
&lt;br /&gt;
=== [[User:Josh Tveite|Josh]] ===&lt;br /&gt;
&lt;br /&gt;
* General&lt;br /&gt;
** Become acquainted with the department and Providence in general. &lt;br /&gt;
** Develop a vision for research and start finding projects to work on.&lt;br /&gt;
** Improve artistic skill in order to be able to communicate ideas more effectively.&lt;br /&gt;
&lt;br /&gt;
* Yurt/Cave&lt;br /&gt;
** Start to learn how to work in the Yurt effectively (likely through taking CS 137)&lt;br /&gt;
** Find a project to work on in the Yurt.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- please don&#039;t edit below this line --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Past Plans and Goals ==&lt;br /&gt;
* [[/Spring 2015|Spring &#039;15]]&lt;br /&gt;
* [[/Fall 2014|Fall &#039;14]]&lt;br /&gt;
* [[/Spring-Summer 2014|Spring-Summer &#039;14]]&lt;br /&gt;
* [[/Summer-Fall 2013|Summer-Fall &#039;13]]&lt;br /&gt;
* [[/Spring 2013|Spring &#039;13]]&lt;br /&gt;
* [[/Fall 2012|Fall &#039;12]]&lt;br /&gt;
* [[/Summer 2012|Summer &#039;12]]&lt;br /&gt;
* [[/Spring 2012|Spring &#039;12]]&lt;br /&gt;
* [[/Summer-Fall 2011|Summer-Fall &#039;11]]&lt;br /&gt;
* [[/Spring 2011|Spring &#039;11]]&lt;br /&gt;
* [[/Summer-Fall 2010|Summer-Fall &#039;10]]&lt;br /&gt;
* [[/Spring 2010|Spring &#039;10]]&lt;br /&gt;
* [[/Fall 2009|Fall &#039;09]]&lt;br /&gt;
* [[/Summer 2009|Summer &#039;09]]&lt;br /&gt;
* [[/Spring 2009|Spring &#039;09]]&lt;br /&gt;
* [[/Fall 2008|Fall &#039;08]]&lt;br /&gt;
* [http://sites.google.com/a/vis.cs.brown.edu/collaboravis/Home/summer-08-group-goals Summer &#039;08]&lt;br /&gt;
&lt;br /&gt;
[[Category:VRL]]&lt;/div&gt;</summary>
		<author><name>Josh Tveite</name></author>
	</entry>
</feed>