Closed Limbomike closed 4 years ago
Did You try to install dependencies globally using pip3 install .
?
Yeah, dependencies are globally installed
Tensorflow version 1.15 Opencv-contrib-python version 4.1.2.30
Since this might be the problem, I made a new virtual env and installed all dependencies again. This time following the versions in the description:
pip install tensorflow==1.15
pip install numpy
pip install opencv-contrib-python==3.4.9.31
pip install .
- for darkflow installationNow I still get following error:
ModuleNotFoundError: No module named 'darkflow.cython_utils.cy_yolo_findboxes'
So I guess I fixed the upper problem,
you also need to dowload following packages to make everything work smoothly:
pip install numba
pip install sklearn
pip install filterpy
Running everything from CMD-Line.
Still having some issues but not to this topic, so I will close the thread
BR
Hey guys,
let's start this issue from the beginning what I have done so far:
pip install -e.
. This should have worked, because if ipip show darkflow
I get the following output:Name: darkflow Version: 1.0.0 Summary: Darkflow Home-page: https://github.com/thtrieu/darkflow Author: UNKNOWN Author-email: UNKNOWN License: GPLv3 Location: MyLocation Requires: Required-by:
Now to the Problem:
No module named 'darkflow.cython_utils.cy_yolo_findboxes
The Location MyLocation, however, is not the same as this repo. To fix this I treid following:
Would really appreciate some help. Like already said I have my, from scratch trained yolo model, with the 4 ckpt files (where I use XXX.meta file as weights file) and would love to count my objects if they pass a specific line in the video. I think the harder part is already done with the model creation, but I dont have the insights in the code to fully understand where I get all my coordinates for the bounding boxes to calculate centroids and furthermore assign IDs and count those.
BR