compiled mxnet and opencv from source using cmake,python biding worked too.
but once i try to run the demo i got multiple errors,tried to refactor everything to python3,which worked until i hit this error :
Traceback (most recent call last):
File "demo.py", line 29, in
from core.tester import im_detect, Predictor
File "/home/agroconcept/Desktop/FCIS/fcis/core/tester.py", line 23, in
from nms.nms import py_nms_wrapper
File "/home/agroconcept/Desktop/FCIS/fcis/../lib/nms/nms.py", line 3, in
from cpu_nms import cpu_nms
ModuleNotFoundError: No module named 'cpu_nms'
cpu_nms is in the nms folder the c code has already been compiled .
compiled mxnet and opencv from source using cmake,python biding worked too.
but once i try to run the demo i got multiple errors,tried to refactor everything to python3,which worked until i hit this error :
Traceback (most recent call last): File "demo.py", line 29, in
from core.tester import im_detect, Predictor
File "/home/agroconcept/Desktop/FCIS/fcis/core/tester.py", line 23, in
from nms.nms import py_nms_wrapper
File "/home/agroconcept/Desktop/FCIS/fcis/../lib/nms/nms.py", line 3, in
from cpu_nms import cpu_nms
ModuleNotFoundError: No module named 'cpu_nms'
cpu_nms is in the nms folder the c code has already been compiled .