This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys, os, cv2, time | |
import numpy as np, math | |
from argparse import ArgumentParser | |
try: | |
from armv7l.openvino.inference_engine import IENetwork, IEPlugin | |
except: | |
from openvino.inference_engine import IENetwork, IEPlugin | |
# sudo apt-get install python3.6-tk |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <rtthread.h> | |
#include <rtdevice.h> | |
#include <webnet.h> | |
#include <wn_module.h> |
OlderNewer