You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Polls to see if there is a new image with transform. If not, returns false
45
+
/**
46
+
* @brief nextImage, Returns the most recent combination of image and transform, provided it is different from the previous time the function was called.
47
+
*
48
+
* @param[out] image, rgbd image to write the next image to. Iff a next image is found
49
+
* @param[out] sensor_pose, will be filled with the sensor pose corresponding to the next image. Iff a next image is found
50
+
* @return whether or not a novel image is available
// Blocks until a new image with transform is found. Returns false if no image or tf could be found within 'timeout_sec' seconds
54
+
/**
55
+
* @brief waitForRecentImage, Blocks until a new image with transform is found. Returns false if no image or tf could be found within 'timeout_sec' seconds
56
+
*
57
+
* @param[out] image, rgbd image to write the next image to. Iff a next image is found
58
+
* @param[out] sensor_pose, will be filled with the sensor pose corresponding to the next image. Iff a next image is found
59
+
* @param[in] timeout_sec, maximum duration to block.
60
+
* @return whether or not a next image was available within the timeout duration.
0 commit comments