split_image

Configuration

Input Ports

Port name

Data Type

Flags

Description

image

kwiver:image

_required

Single frame image.

Output Ports

Port name

Data Type

Flags

Description

left_image

kwiver:image

(none)

Single frame left image.

right_image

kwiver:image

(none)

Single frame right image.

Pipefile Usage

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

Pipefile block

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

Process connections

The following Input ports will need to be set

# This process will consume the following input ports
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>.left_image
         to   <downstream-proc>.left_image
connect from <this-proc>.right_image
         to   <downstream-proc>.right_image

Class Description

class split_image_process : public sprokit::process

Splits an image into multiple smaller images.

\iports \iport{image}

\oports \oport{image1} \oport{image2}

class priv