|
| class | AcquisitionTime |
| | Acquisition Time is the duration from the start of the capture to when the camera has acquired the last image. After this time, the camera has finished its acquisition and you can move the robot, or capture with another camera with overlapping field of view. Acquisition Time is equal to the time it takes for the Camera::capture(settings) API function call to return. More...
|
| class | CaptureTime |
| | Capture Time is the duration from the start of the capture to when all of the data transfer and processing has completed. After this time the 3D point cloud and/or 2D color image is ready and available on the GPU memory, and can be copied to the system memory (RAM). More...
|
| class | ReprocessingTime |
| | Reprocessing re-runs the entire processing pipeline (including filters, color balance etc.) on a previously acquired frame. Reprocessing is available in Zivid Studio for captures with Diagnostics Mode enabled. The ReprocessingTime field is only set if this frame was reprocessed after it was initially captured, otherwise it will be unset. More...
|
| class | ThrottlingTime |
| | Throttling Time is the duration that the capture was paused due to thermal or other constraints on the camera's components while it was capturing this frame. This duration is part of the overall Acquisition Time. If the camera throttled during a capture, it will result in a longer Acquisition Time. More...
|
|
| | Metrics () |
| | Default constructor.
|
| template<typename... Args> |
| | Metrics (Args &&...args) |
| | Constructor taking variadic number of arguments.
|
| template<typename... Args> |
| void | set (Args &&...args) |
| | Set multiple arguments.
|
| template<typename... Args> |
| Metrics | copyWith (Args &&...args) const |
| | Returns a copy of this object with the given argument(s) set to the new value(s)
|
| const AcquisitionTime & | acquisitionTime () const |
| | Get AcquisitionTime.
|
| AcquisitionTime & | acquisitionTime () |
| | Get AcquisitionTime.
|
| Metrics & | set (const AcquisitionTime &value) |
| | Set AcquisitionTime.
|
| const CaptureTime & | captureTime () const |
| | Get CaptureTime.
|
| CaptureTime & | captureTime () |
| | Get CaptureTime.
|
| Metrics & | set (const CaptureTime &value) |
| | Set CaptureTime.
|
| const ReprocessingTime & | reprocessingTime () const |
| | Get ReprocessingTime.
|
| ReprocessingTime & | reprocessingTime () |
| | Get ReprocessingTime.
|
| Metrics & | set (const ReprocessingTime &value) |
| | Set ReprocessingTime.
|
| const ThrottlingTime & | throttlingTime () const |
| | Get ThrottlingTime.
|
| ThrottlingTime & | throttlingTime () |
| | Get ThrottlingTime.
|
| Metrics & | set (const ThrottlingTime &value) |
| | Set ThrottlingTime.
|
| template<typename T, typename std::enable_if< std::is_same< T, FrameInfo::Metrics::AcquisitionTime >::value, int >::type = 0> |
| const FrameInfo::Metrics::AcquisitionTime & | get () const |
| template<typename T, typename std::enable_if< std::is_same< T, FrameInfo::Metrics::CaptureTime >::value, int >::type = 0> |
| const FrameInfo::Metrics::CaptureTime & | get () const |
| template<typename T, typename std::enable_if< std::is_same< T, FrameInfo::Metrics::ReprocessingTime >::value, int >::type = 0> |
| const FrameInfo::Metrics::ReprocessingTime & | get () const |
| template<typename T, typename std::enable_if< std::is_same< T, FrameInfo::Metrics::ThrottlingTime >::value, int >::type = 0> |
| const FrameInfo::Metrics::ThrottlingTime & | get () const |
| template<size_t i, typename std::enable_if< i==0, int >::type = 0> |
| const FrameInfo::Metrics::AcquisitionTime & | get () const |
| template<size_t i, typename std::enable_if< i==1, int >::type = 0> |
| const FrameInfo::Metrics::CaptureTime & | get () const |
| template<size_t i, typename std::enable_if< i==2, int >::type = 0> |
| const FrameInfo::Metrics::ReprocessingTime & | get () const |
| template<size_t i, typename std::enable_if< i==3, int >::type = 0> |
| const FrameInfo::Metrics::ThrottlingTime & | get () const |
| template<typename F> |
| void | forEach (const F &f) const |
| | Run the given function on each direct member with the value of the member as parameter.
|
| template<typename F> |
| void | forEach (const F &f) |
| | Run the given function on each direct member with the value of the member as parameter.
|
| bool | operator== (const Metrics &other) const |
| | Equality operator.
|
| bool | operator!= (const Metrics &other) const |
| | Inequality operator.
|
| std::string | toString () const |
| | Get the value as string.
|
Metrics related to this capture.