lucav76 / CarND-Capstone

Fork of the Udacity project to complete the System Integration task, for the "total-recall-dryvers"
3 stars 2 forks source link

SSD on MobileNet #11

Closed lucav76 closed 6 years ago

kkweon commented 6 years ago

Confirmed running using infer.py, but had to fix the windows path in infer.py though it's not going to be used in simulator.

But not sure if os.path.join also works in Windows.

image_wrap = ImageWrap(cv2.imread("assets\\" + image_file), True)

to

image_wrap = ImageWrap(cv2.imread(os.path.join("assets", image_file)), True)