Configuration

Input Ports

Port name

Data Type

Flags

Description

mutate

_any

_mutable, _required

The port with the mutate flag set.

Output Ports

Pipefile Usage

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

Pipefile block

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

Process connections

The following Input ports will need to be set

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

The following Output ports will need to be set

# This process will produce the following output ports

Class Description

class mutate_process : public sprokit::process

A process with a mutate input port.

\process A process with a mutate input port.

\iports

\iport{mutate} A port with the mutate flag on it.

\reqs

\req The \port{number} port must be connected.

Public Functions

mutate_process(kwiver::vital::config_block_sptr const &config)

Constructor.

Parameters:

config – The configuration for the process.

~mutate_process()

Destructor.

class priv