OpenIGTLink/Slicer2

From NAMIC Wiki
Revision as of 17:51, 10 July 2017 by Grundlett (talk | contribs) (Text replacement - "http://www.slicer.org/slicerWiki/index.php/" to "https://www.slicer.org/wiki/")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Home < OpenIGTLink < Slicer2

<< OpenIGTLink

What's new in the new version of Slicer3 OpenIGTLInk module?

  • Outgoing data support
    • The new version can export image and linear transform data to other software through OpenIGTLink connection.
  • Implemented using the OpenIGTLink Library
    • Changes in the OpenIGTLink Library can quickly applied to the module.


OpenIGTLink Slicer Screenshot.png

Install the Software

From binaries

We don't provide binaries for this version.

Build from the source

Build 3D Slicer

Please refer instruction in [1].


Build the OpenIGTLink Library

Please refer to the instruction on OpenIGTLink/Library

Build OpenIGTLink Loadable Module

Before building the module, please make sure that your CMake version is higher than 2.6. You can find it in Slicer3-lib/CMake-build directory, which was created during building 3D Slicer.

First, get the source code from the repository. For Linux and Mac:

 $ cd <working directory>
 $ svn co http://svn.na-mic.org/NAMICSandBox/trunk/IGTLoadableModules/OpenIGTLinkIF OpenIGTLinkIF

Create build directory

 $ mkdir OpenIGTLinkIF-build
 $ cd OpenIGTLinkIF-build

Then configure by using CMake

 $ cmake -DSlicer3_DIR=<Path to the Slicer-build directory> -DOpenIGTLink_DIR=<Path to the OpenIGTLink-build directory> ../OpenIGTLinkIF

If the previous command has completed without error, you can start compiling

 $ make

After the compilation, you will find libOpenIGTLink.so (Linux) libOpenIGTLink.dylib (Mac) in OpenIGTLink-build dirctory.

!! Note: Building on Mac OS X 10.5 (Leopard) !!

If you are working in the Mac OS X 10.5 (Leopard) environment, you may get a linker error:

 ld: cycle in dylib re-exports with /usr/X11R6/lib/libGL.dylib

This is caused by a known bug of the Open GL library in Mac OS X 10.5 (see [2] for detail). To avoid this error, specify following option when you run cmake.

$ cmake -DSlicer3_DIR=<Path to Slicer-build directory> -DCMAKE_SHARED_LINKER_FLAGS=-Wl,-dylib_file,/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib ../OpenIGTLink


Tracker Simulator for Testing Open IGT Link

To test the Open IGT Link module (or other Open-IGT-Link-complaint devices and software), tracking simulator software is provided. This software simply sends dummy coordinate data to the server with specified frame rate. You can either obtain the software as a binary code or build from source.

From binaries

Obtain a binary file for your environment.

From Source

To get the source code, run following commands:

$ mkdir <working directory>
$ svn co http://svn.na-mic.org/NAMICSandBox/trunk/BRPTools/ScannerIO ScannerIO

Then configure the source code

$ cd ScannerIO
$ ccmake .

Usually, you don't need to change any setting. Just press 'c' key by 'g' key to generate Makefiles. Press 'q' to quit the ccmake interface. Now you are ready to build the program.

$ make

The executable file TrackerSim can be found in ScannerIO/bin directory.


Testing Open IGT Link Module -- Show Tracking Device in the 3D Space

Set up Open IGT Link Module

  1. Select "OpenIGTLink" from "Modules:" menu
  2. Open "Connector Browser" frame, and press "Add" button below the "Connectors" list to add a new connector
  3. Configure and start the connector. Choose "Server" check box in the "Type" option, then clinck "Active" check box. Now the Slicer is ready to accept connections through Open IGT Link.

Run Tracker Simulator

To send dummy coordinate data to the Slicer running on localhost with frame rate of 10 fps, run:

$ ./TrackerSim  10  c  localhost 18944

Visualize Tracker Position

To see the coordinate from the Tracker Simulator,

  1. Open "Visualization / Slice Control" frame in the OpenIGTLink module interface.
  2. Click the "Show Locator" check button. A locator model shows up on the 3D viewer.
  3. Open "Data" module. Choose "Data" from "Modules:" menu.
  4. Edit MRML tree. Put "IGTLocator" under the "Tracker" by dragging "IGTLocator" node.
  5. You should see the locator model moves in the 3D viewer.


Testing Open IGT Link Module -- Reslice 3D image

We can reslice 3D image according to the locator position with following steps:

  1. Load 3D volume from the "Volumes" module.
  2. Start Tracking as we did in the previous section.
  3. In the "Visualization / Slice Control" frame in the OpenIGTLink module interface, click Red menu and choose "Locator".
  4. The image in the left 2D slice viewer (Red) should start to move. You can change the orientation by changing slice orientation menu in the 2D slice viewer.
  5. If you click the "Oblique" check button in the "Visualization / Slicer Control" frame, the slice orientation is set according to the locator orientation.
  6. You can use other 2D viewers (Yellow and Green) by choosing "Locator" from the Yellow and Green menu in the "Visualization / Slice Control" frame.



Loadmap

The current version of the Open IGT Link module supports only incoming data. In future, the module will also support outgoing data, which is useful for

  • exporting registration result to other software
  • exporting result images of registration / segmentation
  • sending control commands to devices and imagers
  • synchronizing multiple navigation software

The idea of outgoing data support is that the Open IGT Link module detects MRML update events (linear transforms and images) and put the new data into Open IGT Link data stream. This mechanism allows other Slicer3 modules to communicate with other OpenIGTLink-compatible software or devices through MRML.

In the next version, the Open IGT Link module handles MRML events to detect updates in MRML nodes (linear transforms and images)

Currently, the new version of Open IGT Link module is being developed. The code is available from SVN repository at:

http://svn.na-mi.org/NAMICSandBox/trunk/IGTLodableModules/OpenIGTLinkPrototype

Please make sure not to load the current version of OpenIGTLink module and OpenIGTLinkPrototype module at the same time.


Other Resources

People