I am trying to run the object_detection.ipynb type program but it is a normal python program(.py). It is working very well but when running inside the ..m
object_detection.ipynb
..m
It could be that your object_detection folder is not on your path, so python does not know where to look for the files.
you can check this from within python with
import sys sys.path
if this is the problem, you can solve it by
sys.path.insert(0, 'path/to/your/object_detection')