IVALab Python Libraries
Collection of code for computer vision and robotics with specific API.
|
Replay a recorded stream from a bag file. More...
Public Member Functions | |
None | __init__ (self, configs) |
Constructor for Intel Realsense D435 camera bag replay instance. More... | |
def | capture (self, before_scale=False) |
Get the next frame(s) with awareness of expected return. More... | |
def | get_frames (self, before_scale=False) |
Get the next frame(s) More... | |
def | process_frame (self, theProcessor, figOut=False) |
Replay and process data from the bag file attached to this instance. More... | |
def | process_frames_selected (self, theProcessor, figOut=True) |
Replay and process data from the bag file attached to this instance. More... | |
def | process_loop (self, theProcessor, figOut=False) |
Replay and process data from the bag file attached to this instance. More... | |
def | replay_loop (self) |
Replay the data from the bag file attached to this instance. More... | |
def | start (self) |
Start capturing the stream. More... | |
![]() | |
def | captureRGBD (self, before_scale=False) |
Snag the next set of RGB and D frames. More... | |
def | display (self, rgb, depth) |
def | get (self, key) |
def | stop (self) |
Stop capturing the stream. More... | |
![]() | |
None | __init__ (self, configs, K=None) |
Base class instantiator for camera runners. More... | |
def | get_configs (self) |
def | get_frames (self) |
def | set (self, key, value) |
def | set_configs (self, configs) |
def | set_intrinsic (self, K) |
Public Attributes | |
align | |
depth_scale | |
gCD | |
Kdepth | |
pipeline | |
rs_config | |
timestamp | |
![]() | |
align | |
auto_exposure | |
color_sensor | |
depth_scale | |
depth_sensor | |
gCD | |
K | |
Kdepth | |
pipeline | |
profile | |
rs_config | |
![]() | |
configs | |
K | |
Additional Inherited Members | |
![]() | |
def | buildFromFile (configFile) |
Replay a recorded stream from a bag file.
None __init__ | ( | self, | |
configs | |||
) |
Constructor for Intel Realsense D435 camera bag replay instance.
[in] | configs | Settings to apply (indicates topics and alignment). |
Reimplemented from D435_Runner.
def capture | ( | self, | |
before_scale = False |
|||
) |
Get the next frame(s) with awareness of expected return.
Slightly more flexible version of get_frames agnostic to what is being captured. The setup determines configured returns and returns compatible output.
Returns arguments provided in prioritized order based on camera configuration: color, depth, flag.
[in] | before_scale | [bool] If True, get integer depth map before scaling. |
[out] | rgb | [np.ndarray] RGB image if set to read. |
[out] | dep | [np.ndarray] Depth map in meters if set to read. |
[out] | flag | [bool] Indicator status of fetch/capture operation. \ If true, then expected frame(s) fetched. |
Reimplemented from D435_Runner.
def get_frames | ( | self, | |
before_scale = False |
|||
) |
Get the next frame(s)
Args:
before_scale (bool). Before the scaling. If True, will get the integer depth map before scaling.
Returns: rgb [np.ndarray]: The rgb image dep [np.ndarray]: The depth map in meter succ_flag [bool]: The indicator for the status of fetching the next frames. \ If true, then both rgb and depth frames are successfully fetched.
Reimplemented from D435_Runner.
def process_frame | ( | self, | |
theProcessor, | |||
figOut = False |
|||
) |
Replay and process data from the bag file attached to this instance.
Will query bag file for single measurement and send obtained data to the passed function. The raw data can be visualized if set, otherwise the processing function is responsible for handling output of raw, intermediate, or final data.
[in] | theProcessor | RGBD stream data processor. Should handle input. |
[in] | figOut | [False] Flag for including window output of raw data. |
def process_frames_selected | ( | self, | |
theProcessor, | |||
figOut = True |
|||
) |
Replay and process data from the bag file attached to this instance.
Will loop through the bag file and send obtained data to the passed function. The raw data can be visualized if set, otherwise the processing function is responsible for handling output of raw, intermediate, or final data.
[in] | theProcessor | RGBD stream data processor. Should handle input. |
[in] | figOut | [True] Flag for including window output of raw data. |
def process_loop | ( | self, | |
theProcessor, | |||
figOut = False |
|||
) |
Replay and process data from the bag file attached to this instance.
Will loop through the bag file and send obtained data to the passed function. The raw data can be visualized if set, otherwise the processing function is responsible for handling output of raw, intermediate, or final data.
[in] | theProcessor | RGBD stream data processor. Should handle input. |
[in] | figOut | [False] Flag for including window output of raw data. |
def replay_loop | ( | self | ) |
Replay the data from the bag file attached to this instance.
Basically will display the color and depth information. See process_loop for performing actual processing on the data.
def start | ( | self | ) |
Start capturing the stream.
Reimplemented from D435_Runner.
align |
depth_scale |
gCD |
Kdepth |
pipeline |
rs_config |
timestamp |