markjay4k / YOLO-series

A series of notebooks describing how to use YOLO (darkflow) in python
247 stars 171 forks source link

ValueError: numpy.ufunc size changed, may indicate binary incompatibility. Expected 216 from C header, got 192 from PyObject #37

Closed bhaveshpadharia closed 5 years ago

bhaveshpadharia commented 5 years ago

I use this command to processing my video

python flow --model cfg/yolo.cfg --load bin/yolov2.weights --demo fri1hd.mp4 --saveVideo

but i get this error

Traceback (most recent call last): File "flow", line 4, in <module> from darkflow.cli import cliHandler File "/home/bhavesh/Object Detection/customyolo/darkflow/darkflow/cli.py", line 3, in <module> from .net.build import TFNet File "/home/bhavesh/Object Detection/customyolo/darkflow/darkflow/net/build.py", line 7, in <module> from .framework import create_framework File "/home/bhavesh/Object Detection/customyolo/darkflow/darkflow/net/framework.py", line 1, in <module> from . import yolo File "/home/bhavesh/Object Detection/customyolo/darkflow/darkflow/net/yolo/__init__.py", line 2, in <module> from . import predict File "/home/bhavesh/Object Detection/customyolo/darkflow/darkflow/net/yolo/predict.py", line 7, in <module> from ...cython_utils.cy_yolo_findboxes import yolo_box_constructor File "__init__.pxd", line 918, in init darkflow.cython_utils.cy_yolo_findboxes ValueError: numpy.ufunc size changed, may indicate binary incompatibility. Expected 216 from C header, got 192 from PyObject

someone help me to solve this error.

Thank you.