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;
|
|
}
|