2021-06-01 16:31:29 +03:00
|
|
|
#include <ie_core.hpp>
|
2020-09-22 18:01:48 +03:00
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
|
//! [part8]
|
2020-10-10 11:19:16 +03:00
|
|
|
while(true) {
|
|
|
|
|
// capture frame
|
|
|
|
|
// populate CURRENT InferRequest
|
|
|
|
|
// Infer CURRENT InferRequest //this call is synchronous
|
|
|
|
|
// display CURRENT result
|
2020-09-22 18:01:48 +03:00
|
|
|
}
|
|
|
|
|
//! [part8]
|
|
|
|
|
return 0;
|
|
|
|
|
}
|