pjreddie / darknet

Convolutional Neural Networks
http://pjreddie.com/darknet/
Other
25.71k stars 21.32k forks source link

YOLO V2 with Kinect v2 and Tensorflow #88

Open Abduoit opened 7 years ago

Abduoit commented 7 years ago

Hi,

I am using YOLO v2 for object recognition, when I run the following code

./darknet detector demo cfg/voc.data cfg/tiny-yolo-voc.cfg tiny-yolo-voc.weights

I get video stream from the webcam, but I want to get the video stream from the camera Kinect v2. The Yolo V2 get the video stream from cap = cvCaptureFromCAM(cam_index); in the file demo.c in darknet and the kinect v2 get the rgb videos stream from the libfreenect2::Frame *rgb = frames[libfreenect2::Frame::Color];//BGRA format in libfreenct2

I want to use kinect v2 and Yolo v2 for object detection !!!!! Any one can give me help ??

loretoparisi commented 7 years ago

@Abduoit I think a good starting point is to use darkflow. Here there is an implementation of the darknet with tensorflow. I have also added full support for server processing of video files.

TrinhNC commented 7 years ago

@Abduoit Hi Abduoit, have you found any solutions? I'm facing the same problem.