draw_tracks

Configuration

Input Ports

Port name

Data Type

Flags

Description

feature_track_set

kwiver:feature_track_set

_required

Set of feature tracks.

image

kwiver:image

_required

Single frame image.

Output Ports

Port name

Data Type

Flags

Description

output_image

kwiver:image

(none)

Image with tracks

Pipefile Usage

The following sections describe the blocks needed to use this process in a pipe file.

Pipefile block

# ================================================================
process <this-proc>
  :: draw_tracks
# ================================================================

Process connections

The following Input ports will need to be set

# This process will consume the following input ports
connect from <this-proc>.feature_track_set
         to   <upstream-proc>.feature_track_set
connect from <this-proc>.image
         to   <upstream-proc>.image

The following Output ports will need to be set

# This process will produce the following output ports
connect from <this-proc>.output_image
         to   <downstream-proc>.output_image

Class Description

class draw_tracks_process : public sprokit::process

Display images.

class priv