#include "cuda.hpp"
§ CreateFlags
Enumerator |
---|
DEFAULT | Default event flag
|
BLOCKING_SYNC | Event uses blocking synchronization
|
DISABLE_TIMING | Event will not record timing data
|
INTERPROCESS | Event is suitable for interprocess use. DisableTiming must be set
|
§ Event()
Python: |
---|
| <cuda_Event object> | = | cv.cuda_Event( | [, flags] | ) |
§ elapsedTime()
static float cv::cuda::Event::elapsedTime |
( |
const Event & |
start, |
|
|
const Event & |
end |
|
) |
| |
|
static |
Python: |
---|
| retval | = | cv.cuda.Event_elapsedTime( | start, end | ) |
computes the elapsed time between events
§ queryIfComplete()
bool cv::cuda::Event::queryIfComplete |
( |
| ) |
const |
Python: |
---|
| retval | = | cv.cuda_Event.queryIfComplete( | | ) |
queries an event's status
§ record()
Python: |
---|
| None | = | cv.cuda_Event.record( | [, stream] | ) |
§ waitForCompletion()
void cv::cuda::Event::waitForCompletion |
( |
| ) |
|
Python: |
---|
| None | = | cv.cuda_Event.waitForCompletion( | | ) |
waits for an event to complete
§ EventAccessor
The documentation for this class was generated from the following file: