Files
openvino/docs/snippets/dldt_optimization_guide8.cpp
Ilya Churaev 0c9abf43a9 Updated copyright headers (#15124)
* Updated copyright headers

* Revert "Fixed linker warnings in docs snippets on Windows (#15119)"

This reverts commit 372699ec49.
2023-01-16 11:02:17 +04:00

14 lines
238 B
C++

#include <ie_core.hpp>
int main() {
//! [part8]
while(true) {
// capture frame
// populate CURRENT InferRequest
// Infer CURRENT InferRequest //this call is synchronous
// display CURRENT result
}
//! [part8]
return 0;
}