* Deprecate legacy Core and Allocator * Suppress blob warnings * Suppress some warnings * Suppress more warnings * Suppress blob allocator * Suppress more warnings * Suppress more warnings * Fixed compilation issues for Template plugin * Fixed some warnings * Fixed tests * Add WA for benchmark_app * Suppress #warning for developer package * Rename define * Disable warnings for compile_tool and benchmark_app * Suppress Windows warnings * Suppress more warnings for Windows * Fixed compile_tool install * Added message for VS * Fixed snippets and throw only first error
15 lines
315 B
C++
15 lines
315 B
C++
int main() {
|
|
//! [part9]
|
|
while(true) {
|
|
// capture frame
|
|
// populate NEXT InferRequest
|
|
// start NEXT InferRequest //this call is async and returns immediately
|
|
|
|
// wait for the CURRENT InferRequest
|
|
// display CURRENT result
|
|
// swap CURRENT and NEXT InferRequests
|
|
}
|
|
//! [part9]
|
|
return 0;
|
|
}
|