Difference between revisions of "NaviTrack Tutorial:Creating module:Module structure"

From NAMIC Wiki
Jump to: navigation, search
Line 1: Line 1:
== Three types of node ==
+
== Three types of nodes ==
  
* Sink node   (XxxxSink.h, [XxxxSink.cxx])
+
* Sink nodes   (XxxxSink.h, [XxxxSink.cxx])
* Source node (XxxxSource.h, [XxxxSource.cxx])
+
Leaves in the graph and receive their data values from external sources, such as Polaris optraciking system, and send put the data into NaviTrack data flow graph.
* Filter node (we don't use this in the tutorial)
+
 
 +
* Source nodes (XxxxSource.h, [XxxxSource.cxx])
 +
* Filter nodes (we don't use this in the tutorial)
  
  

Revision as of 17:38, 14 May 2007

Home < NaviTrack Tutorial:Creating module:Module structure

Three types of nodes

  • Sink nodes (XxxxSink.h, [XxxxSink.cxx])

Leaves in the graph and receive their data values from external sources, such as Polaris optraciking system, and send put the data into NaviTrack data flow graph.

  • Source nodes (XxxxSource.h, [XxxxSource.cxx])
  • Filter nodes (we don't use this in the tutorial)


Structure of Sink class

Structure of Source class

Go back to Creating module.