openigtlink junichi tokuda 1 1 brigham and women’s hospital / harvard medical school, luis ibanez...

25
OpenIGTLink Junichi Tokuda 1 1 Brigham and Women’s Hospital / Harvard Medical School, Luis Ibanez 2 , Csaba Csoma 3 , Patrick Cheng 4 , Haiying Liu 1 , Jack Blevins 5 , Junpei Arata 6 , Xenophon Papademetris 7 , Nobuhiko Hata 1 2 Kitware Inc., 3 Johns Hopkins University, 4 Georgetown University, 5 Acoustic Med Systems, 6 Nagoya Institute of Technology, 7 Yale University

Upload: laurence-miles

Post on 29-Jan-2016

215 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: OpenIGTLink Junichi Tokuda 1 1 Brigham and Women’s Hospital / Harvard Medical School, Luis Ibanez 2, Csaba Csoma 3, Patrick Cheng 4, Haiying Liu 1, Jack

OpenIGTLink

Junichi Tokuda1

1Brigham and Women’s Hospital / Harvard Medical School,

Luis Ibanez2, Csaba Csoma3, Patrick Cheng4,

Haiying Liu1, Jack Blevins5, Junpei Arata6, Xenophon Papademetris7, Nobuhiko Hata1

2Kitware Inc., 3Johns Hopkins University, 4Georgetown University,5Acoustic Med Systems, 6Nagoya Institute of Technology, 7Yale University

Page 2: OpenIGTLink Junichi Tokuda 1 1 Brigham and Women’s Hospital / Harvard Medical School, Luis Ibanez 2, Csaba Csoma 3, Patrick Cheng 4, Haiying Liu 1, Jack

MICCAI 2008 Workshop, New York, NY

Acknowledgement

• Support for Open IGT Link comes from– National Institutes of Health• National Center of Image Guided Therapy (PI:

Jolesz)• National Alliance on Medical Image Computing (PI:

Kikinis)

– NSF ERC CISST (PI: Taylor)– NEDO, Japan– Dr. Kiyoyuki Chinzei, AIST, Japan

Page 3: OpenIGTLink Junichi Tokuda 1 1 Brigham and Women’s Hospital / Harvard Medical School, Luis Ibanez 2, Csaba Csoma 3, Patrick Cheng 4, Haiying Liu 1, Jack

MICCAI 2008 Workshop, New York, NY

IGT system: academic perspective

• Hardware/software components– MR/CT/Ultrasound scanners– Position tracking devices– Robotic devices– Navigation software

• Data types exchanged among the IGT system– Images– Positions / Transforms– Commands– Software / hardware status, etc…

Page 4: OpenIGTLink Junichi Tokuda 1 1 Brigham and Women’s Hospital / Harvard Medical School, Luis Ibanez 2, Csaba Csoma 3, Patrick Cheng 4, Haiying Liu 1, Jack

MICCAI 2008 Workshop, New York, NY

Related standards / works

• Communication standards used in medical area– Device connection

• IEEE 1073 -- Medical Device Communication• ISO 11898 -- Controller Area Network (CAN)

– Picture archiving and communication system• Digital imaging and communication in medicine (DICOM)

• Network communication framework for IGT– CORBA [Schorr-2000]

– OpenTracker [von Spiczak]

Page 5: OpenIGTLink Junichi Tokuda 1 1 Brigham and Women’s Hospital / Harvard Medical School, Luis Ibanez 2, Csaba Csoma 3, Patrick Cheng 4, Haiying Liu 1, Jack

MICCAI 2008 Workshop, New York, NY

Our goals

– Availability: research and commercial

– Simplicity: from embedded system to HPC

– Extensibility: variety of data types

– Reliability: data verification mechanism

Page 6: OpenIGTLink Junichi Tokuda 1 1 Brigham and Women’s Hospital / Harvard Medical School, Luis Ibanez 2, Csaba Csoma 3, Patrick Cheng 4, Haiying Liu 1, Jack

MICCAI 2008 Workshop, New York, NY

Our solution: OpenIGTLink

• Community-oriented Development– The project was launched in US national level

meeting 2008 (NA-MIC, all hands mtg, January 2008, Slat Lake City, UT).

• Platform-independent– Multi-platform C/C++ library for Windows/Linux/Mac

Operating System

C++ socket & thread class C message structure

C++ message class

Application

Page 7: OpenIGTLink Junichi Tokuda 1 1 Brigham and Women’s Hospital / Harvard Medical School, Luis Ibanez 2, Csaba Csoma 3, Patrick Cheng 4, Haiying Liu 1, Jack

MICCAI 2008 Workshop, New York, NY

The OpenIGTLink Protocol

• Code snippet– Nine lines to send linear transform data

Page 8: OpenIGTLink Junichi Tokuda 1 1 Brigham and Women’s Hospital / Harvard Medical School, Luis Ibanez 2, Csaba Csoma 3, Patrick Cheng 4, Haiying Liu 1, Jack

MICCAI 2008 Workshop, New York, NY

The OpenIGTLink Protocol

• Message-based protocol– No session / messages are independent– Allows defining new message types

Header

IMAGE Type BodyVersion

Type Name

Device Name

Body Size

CRC

Time Stamp

Body

TRANSFORM Type Body

COMMAND Type Body….

Body Size

Page 9: OpenIGTLink Junichi Tokuda 1 1 Brigham and Women’s Hospital / Harvard Medical School, Luis Ibanez 2, Csaba Csoma 3, Patrick Cheng 4, Haiying Liu 1, Jack

MICCAI 2008 Workshop, New York, NY

Protocol

• Device name– Multi-channel or multi-device

• Body size– Allows receivers to skip data, even if type is

unknown.

• CRC– Data integrity check in the receiving program

• Time stamp– Required in real-time application

Page 10: OpenIGTLink Junichi Tokuda 1 1 Brigham and Women’s Hospital / Harvard Medical School, Luis Ibanez 2, Csaba Csoma 3, Patrick Cheng 4, Haiying Liu 1, Jack

MICCAI 2008 Workshop, New York, NY

Standard Data Types

• Position (tracking / device positioning)

• Transformation (tracking / registration)

x y z ox oy oz w

position orientation (quaternion)

tx ty tz sx sy sz nx ny nz x y z

tx sx nx xty sy ny ytz sz nz z0 0 0 1

⎜ ⎜ ⎜

⎟ ⎟ ⎟

Page 11: OpenIGTLink Junichi Tokuda 1 1 Brigham and Women’s Hospital / Harvard Medical School, Luis Ibanez 2, Csaba Csoma 3, Patrick Cheng 4, Haiying Liu 1, Jack

MICCAI 2008 Workshop, New York, NY

Standard Data Types

• Image– 2D / 3D– Scalar / vector– Affine transform– Partial volume update

i

j

k

Nj

(0, 0, 0)

(Ni -1, Nj -1, Nk -1)Nk

Mj

Ni

Mi

(oi +Mi -1, oj +Mj -1,ok+Mk -1)

Mk

(oi, oj, ok)

Generic info size transform partial volumeindex/size

Pixel data

Page 12: OpenIGTLink Junichi Tokuda 1 1 Brigham and Women’s Hospital / Harvard Medical School, Luis Ibanez 2, Csaba Csoma 3, Patrick Cheng 4, Haiying Liu 1, Jack

MICCAI 2008 Workshop, New York, NY

Standard Data Type

• Status

Code Sub-code Status name MessageCode Description

0 Invalid packet

1 OK

2 Unknown error

3 Panic

4 Not found

5 Access denied

6 Busy

7 Time out

8 Overflow

9 Checksum error

Code Description

10 Configuration error

11 Resource error

12 Unknown instruction

13 Device not ready

14 Manual mode

15 Device Disabled

16 Device not present

17 Unknown device version

18 Hardware failure

19 Shutdown in progress

Page 13: OpenIGTLink Junichi Tokuda 1 1 Brigham and Women’s Hospital / Harvard Medical School, Luis Ibanez 2, Csaba Csoma 3, Patrick Cheng 4, Haiying Liu 1, Jack

MICCAI 2008 Workshop, New York, NY

Applications

• Three highlighted scenarios

1. Prototyping clinical system

2. Research-commercial technological transition

3. Clinical Research Bridging

Page 14: OpenIGTLink Junichi Tokuda 1 1 Brigham and Women’s Hospital / Harvard Medical School, Luis Ibanez 2, Csaba Csoma 3, Patrick Cheng 4, Haiying Liu 1, Jack

MICCAI 2008 Workshop, New York, NY

1. Prototyping Clinical System

• Connect prototype hardware / software to the system

Component2

PrototypeHWCompone

nt 1….

PrototypeSW

OpenIGTLink (Application Layer)

TCP/IP

Page 15: OpenIGTLink Junichi Tokuda 1 1 Brigham and Women’s Hospital / Harvard Medical School, Luis Ibanez 2, Csaba Csoma 3, Patrick Cheng 4, Haiying Liu 1, Jack

MICCAI 2008 Workshop, New York, NY

1. Prototyping Clinical System

• Surgical manipulator integration

Drs. H. Fujimoto and J. Arata, Nagoya Institute of Technology

Page 16: OpenIGTLink Junichi Tokuda 1 1 Brigham and Women’s Hospital / Harvard Medical School, Luis Ibanez 2, Csaba Csoma 3, Patrick Cheng 4, Haiying Liu 1, Jack

MICCAI 2008 Workshop, New York, NY

1. Prototyping Clinical System

• Surgical manipulator integration

Navigation System (3D Slicer)

3D Motion Sensor(Optotrak)

Robot Master Robot(PHANToM)

Markers

OpenIGTLink

OpenIGTLink

500Hz

10Hz

Page 17: OpenIGTLink Junichi Tokuda 1 1 Brigham and Women’s Hospital / Harvard Medical School, Luis Ibanez 2, Csaba Csoma 3, Patrick Cheng 4, Haiying Liu 1, Jack

MICCAI 2008 Workshop, New York, NY

2. Research-Commercial Transition

• Replace research prototype with commercial product prototype

ResearchPrototype

….

Commercial

Product

OpenIGTLink (Application Layer)

TCP/IP

Component 1

Component 2

Page 18: OpenIGTLink Junichi Tokuda 1 1 Brigham and Women’s Hospital / Harvard Medical School, Luis Ibanez 2, Csaba Csoma 3, Patrick Cheng 4, Haiying Liu 1, Jack

MICCAI 2008 Workshop, New York, NY

2. Research-Commercial Transition

• MR-guided prostate robotic intervention– MRI-compatible needle placement robot [Fischer 2007]

Page 19: OpenIGTLink Junichi Tokuda 1 1 Brigham and Women’s Hospital / Harvard Medical School, Luis Ibanez 2, Csaba Csoma 3, Patrick Cheng 4, Haiying Liu 1, Jack

MICCAI 2008 Workshop, New York, NY

2. Research-Commercial Transition

• MR-guided prostate robotic intervention– 3D Slicer : research prototype– RadVision (Acoustic Med Systems) : commercial

Navigation Software3D Slicer or RadVision

Robot ControllerReal-time

Scanner IO

MRI ScannerGE Excite 3T

Pneumatic NeedlePlacement Robot

DICOMServer

OpenIGTLink

OpenIGTLinkOpenIGTLink

RT Image

RT Image

ImagingPlane

ImagingPlane

3D Image

3D Image

Needle Position

Target Position

Workstation

RobotScanner

Page 20: OpenIGTLink Junichi Tokuda 1 1 Brigham and Women’s Hospital / Harvard Medical School, Luis Ibanez 2, Csaba Csoma 3, Patrick Cheng 4, Haiying Liu 1, Jack

MICCAI 2008 Workshop, New York, NY

3. Clinical Research Bridging

• Export clinical data from approved system (proprietary) to research software

Proprietary

SW

Proprietary HW

….

OpenIGTLink

TCP/IP

BridgeSoftware

Research Software

Proprietary Protocol

Page 21: OpenIGTLink Junichi Tokuda 1 1 Brigham and Women’s Hospital / Harvard Medical School, Luis Ibanez 2, Csaba Csoma 3, Patrick Cheng 4, Haiying Liu 1, Jack

MICCAI 2008 Workshop, New York, NY

3. Bridging to commercial system

• BrainLab – Slicer 3– BrainLab, commercial navigation system– 3D Slicer, research platoform– BioImage Suite (by Xenophon Papademetris, Yale

University),

bridging VVLink and

OpenIGTLink protocols

Page 22: OpenIGTLink Junichi Tokuda 1 1 Brigham and Women’s Hospital / Harvard Medical School, Luis Ibanez 2, Csaba Csoma 3, Patrick Cheng 4, Haiying Liu 1, Jack

MICCAI 2008 Workshop, New York, NY

Endowments

• GE Excite MRI• JHU robots and encoders• IGSTK -- NDI and Micron trackers• Robin Medical EndoScout• NIT robots (Intelligent SI Project)• BrainLab via BioImage Suite

(Papademetris)• 3D Slicer• Matlab interface

Page 23: OpenIGTLink Junichi Tokuda 1 1 Brigham and Women’s Hospital / Harvard Medical School, Luis Ibanez 2, Csaba Csoma 3, Patrick Cheng 4, Haiying Liu 1, Jack

MICCAI 2008 Workshop, New York, NY

Summary

• OpenIGTLink– Open, simple, extensible and reliable– Slicer 3, MRI, tracking device, robot, etc.– Used in navigation and surgical robot projects

• Communication protocol for IGT– Prototyping clinical system– Research-commercial technological transition– Clinical research bridging

Page 24: OpenIGTLink Junichi Tokuda 1 1 Brigham and Women’s Hospital / Harvard Medical School, Luis Ibanez 2, Csaba Csoma 3, Patrick Cheng 4, Haiying Liu 1, Jack

MICCAI 2008 Workshop, New York, NY

Future Work

• Complete toolbox for development– Testing tools– Monitoring / analysis tools

• Logging - “Blackbox”– Record all events in OR

• Hard real-time capability– Motion compensation in radiotherapy / FUS

Page 25: OpenIGTLink Junichi Tokuda 1 1 Brigham and Women’s Hospital / Harvard Medical School, Luis Ibanez 2, Csaba Csoma 3, Patrick Cheng 4, Haiying Liu 1, Jack

MICCAI 2008 Workshop, New York, NY

For more information…..

google “open igt link”