pjreddie / darknet

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

Using darknet with RGB-D images #1764

Open milagorecki opened 5 years ago

milagorecki commented 5 years ago

Hi,

I would like to train an object detector on RGB-D images and therefore extend YOLO/darknet to accept 4-channel images for this purpose. So far I struggle to load 4-channel images and feed them into the network. Main Idea: Stack the images so that the network receives 4-channel-images (R,G,B,D) as input as opposed to extracting features of RGB and D separately and fusing them later in the network.

If useful, this is what the top of my Makefile looks like:

GPU=1 CUDNN=1 OPENCV=1 OPENMP=0 DEBUG=0

If anyone has already extended darknet to include depth or has any tips, what I could/should try, I would be really grateful! :)

EmileTestUser commented 3 years ago

Hi @milagorecki ,

I am in need of a 4-channel yolo implementation as well. Could you get any solution for this?

Greetings

ShivamPatel-meng commented 3 years ago

Hi @EmileTestUser,

I am also looking for an RGB-depth Yolo darknet implementation. Can anyone help me on how to edit make file?

thanks