Files
openvino/docs/snippets/dldt_optimization_guide8.cpp
T

12 lines
214 B
C++
Raw Normal View History

2023-01-16 11:02:17 +04:00
int main() {
//! [part8]
while(true) {
// capture frame
// populate CURRENT InferRequest
// Infer CURRENT InferRequest //this call is synchronous
// display CURRENT result
}
//! [part8]
return 0;
}