Skip to content
#

darknet

Here are 323 public repositories matching this topic...

xfan1024
xfan1024 commented Jan 7, 2020

我发现examples/retinaface.cpp中,如果开启OMP加速的话似乎在检测到人脸时会发生内存泄漏,但我定位不了这个问题的具体原因。

值得注意的时,如果将qsort_descent_inplace函数中的OMP指令注释掉这个问题就会消失掉。

static void qsort_descent_inplace(std::vector<FaceObject>& faceobjects, int left, int right)
{
    int i = left;
    int j = right;
    float p = faceobjects[(left + right) / 2].prob;
    ...
    // #pragma omp parallel sections
    {
        // #pragma
Francisobiagwu
Francisobiagwu commented Oct 31, 2019

darkflow_error

I created a virtual environment using conda and I installed darkflow and it worked pretty well. I later exported the environment to try it on another computer to verify that everything works. But conda doesn't install the darkflow even though it exists on the requirement.txt

yolov3
bersbersbers
bersbersbers commented Sep 11, 2019

Platform (like ubuntu 16.04/win10): Windows 10
Python version: 3.7.4, mmdnn==0.2.5

Running scripts: mmconvert -f caffe -df keras -om test

I know that this command is not supposed to run without passing an input file, but the error message is incorrect and should be improved:

mmconvert: error: argument --srcFramework/-f: invalid choice: 'None' (choose from 'caffe', 'caffe2', 'cn

opendatacam
florianporada
florianporada commented Nov 27, 2019

I stumbled upon this repo https://github.com/dataplayer12/homesecurity/ which uses the jetson for CCTV system.
Idea: use a raspberry pi zero with a pi-camera-module could be a simple solution for uses cases like: Hardware inside and camera module outside.

  • more secure since the pi only costs a fraction of the jetson
  • no cable connection between board and camera
  • option to connect more than
307509256
307509256 commented Dec 11, 2017

I find run.py is updated.

-# FLAGS.model = "darkflow/cfg/yolo.cfg" # tensorflow model
-# FLAGS.load = "darkflow/bin/yolo.weights" # tensorflow weights
-FLAGS.pbLoad = "tiny-yolo-voc-traffic.pb" # tensorflow model
-FLAGS.metaLoad = "tiny-yolo-voc-traffic.meta" # tensorflow weights

could you share the file of tiny-yolo-voc-traffic.pb and tiny-yolo-voc-traffic.meta ?
thank you very much!

This repository allows you to get started with training a state-of-the-art Deep Learning model with little to no configuration needed! You provide your labeled dataset and you can start the training right away and monitor it in many different ways like TensorBoard or a custom REST API and GUI. Training with YOLOv3 has never been so easy.

  • Updated Jul 9, 2020
  • Python
vascobarbosa
vascobarbosa commented Apr 25, 2019

Mac OSX 10.14.1 (18B75)

Traceback (most recent call last):
File "yolo_opencv.py", line 98, in
draw_prediction(image, class_ids[i], confidences[i], round(x), round(y), round(x+w), round(y+h))
File "yolo_opencv.py", line 39, in draw_prediction
cv2.rectangle(img, (x,y), (x_plus_w,y_plus_h), color, 2)
TypeError: only length-1 arrays can be converted to Python scalars

Improve this page

Add a description, image, and links to the darknet topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the darknet topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.