Skip to content
This repository has been archived by the owner on Mar 2, 2022. It is now read-only.

Commit

Permalink
Fix import pass
Browse files Browse the repository at this point in the history
  • Loading branch information
PINTO0309 committed Apr 26, 2019
1 parent 72ee91e commit 677b5a9
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
5 changes: 4 additions & 1 deletion openvino_tiny-yolov3_MultiStick_test.py
@@ -1,6 +1,9 @@
import sys, os, cv2, time, heapq, argparse
import numpy as np, math
from openvino.inference_engine import IENetwork, IEPlugin
try:
from armv7l.openvino.inference_engine import IENetwork, IEPlugin
except:
from openvino.inference_engine import IENetwork, IEPlugin
import multiprocessing as mp
from time import sleep
import threading
Expand Down
5 changes: 4 additions & 1 deletion openvino_tiny-yolov3_test.py
@@ -1,7 +1,10 @@
import sys, os, cv2, time
import numpy as np, math
from argparse import ArgumentParser
from openvino.inference_engine import IENetwork, IEPlugin
try:
from armv7l.openvino.inference_engine import IENetwork, IEPlugin
except:
from openvino.inference_engine import IENetwork, IEPlugin

m_input_size = 416

Expand Down
5 changes: 4 additions & 1 deletion openvino_yolov3_MultiStick_test.py
@@ -1,6 +1,9 @@
import sys, os, cv2, time, heapq, argparse
import numpy as np, math
from openvino.inference_engine import IENetwork, IEPlugin
try:
from armv7l.openvino.inference_engine import IENetwork, IEPlugin
except:
from openvino.inference_engine import IENetwork, IEPlugin
import multiprocessing as mp
from time import sleep
import threading
Expand Down
5 changes: 4 additions & 1 deletion openvino_yolov3_test.py
@@ -1,7 +1,10 @@
import sys, os, cv2, time
import numpy as np, math
from argparse import ArgumentParser
from openvino.inference_engine import IENetwork, IEPlugin
try:
from armv7l.openvino.inference_engine import IENetwork, IEPlugin
except:
from openvino.inference_engine import IENetwork, IEPlugin

m_input_size = 416

Expand Down

0 comments on commit 677b5a9

Please sign in to comment.