14 lines
238 B
C++
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;
|
|
}
|