gliese581gg / YOLO_tensorflow

tensorflow implementation of 'YOLO : Real-Time Object Detection'
Other
1.72k stars 656 forks source link

import order bug fix #28

Closed rossilhf closed 5 years ago

rossilhf commented 7 years ago

the order of import cause different cv2.imread() result, I don't know reason. In current order, cv2.imread() returns None. But after change the order of "import tensorflow as tf" and "import cv2", the function works correctly.

rossilhf commented 7 years ago

http://stackoverflow.com/questions/43535134/why-different-import-order-effects-result-in-python this is the page that I report the "import order" bug I encounted