.. |br| raw:: html
Configuration ------------- .. csv-table:: :header: "Variable", "Default", "Tunable", "Description" :align: left :widths: auto "computer", "(no default value)", "NO", "Algorithm configuration subblock" Input Ports ----------- .. csv-table:: :header: "Port name", "Data Type", "Flags", "Description" :align: left :widths: auto "left_image", "kwiver:image", "_required", "Single frame left image." "right_image", "kwiver:image", "_required", "Single frame right image." Output Ports ------------ .. csv-table:: :header: "Port name", "Data Type", "Flags", "Description" :align: left :widths: auto "depth_map", "kwiver:image", "(none)", "Depth map stored in image form." Pipefile Usage -------------- The following sections describe the blocks needed to use this process in a pipe file. Pipefile block -------------- .. code:: # ================================================================ process :: compute_stereo_depth_map # Algorithm configuration subblock computer = # ================================================================ Process connections ~~~~~~~~~~~~~~~~~~~ The following Input ports will need to be set ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ .. code:: # This process will consume the following input ports connect from .left_image to .left_image connect from .right_image to .right_image The following Output ports will need to be set ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ .. code:: # This process will produce the following output ports connect from .depth_map to .depth_map Class Description ----------------- .. doxygenclass:: kwiver::compute_stereo_depth_map_process :project: kwiver :members: