VLOGroup / dvs-reconstruction

This repository provides software to our publication "Real-Time Intensity-Image Reconstruction for Event Cameras Using Manifold Regularisation", BMVC 2016
GNU Lesser General Public License v3.0
54 stars 18 forks source link

does the dvs-reconstruction code need normal images as well, or the code just works with event data. #15

Open sameerpurwar opened 1 year ago

sameerpurwar commented 1 year ago

Hi, I am starting to look into neuromorphic computing and needed to know that -> Whether the code work with the images form normal camera, or only need event data to reconstruct the intensity images.

-> I have the dat files containing event data . How and where should I put the files to run the code ?

-> Do I need libcaer library, if I am not using the camera.

P.S. Sorry for posting this here, and if the question sounds silly, I am just starting.

With regards, Sameer Purwar

reini1305 commented 1 year ago

Hi! The code is written such that it always compiles in support for a camera, so libcaer is needed (for the GUI, offline reconstruction could be compiled alone and without libcaer)

You may put the .dat files anywhere, just open the right file in the online reconstruction GUI or pass the argument to offline reconstruction.

Not sure what you mean wit using "normal" images? You can provide an initialization image, but then it is just events.

sameerpurwar commented 1 year ago

Hi! The code is written such that it always compiles in support for a camera, so libcaer is needed (for the GUI, offline reconstruction could be compiled alone and without libcaer)

You may put the .dat files anywhere, just open the right file in the online reconstruction GUI or pass the argument to offline reconstruction.

Not sure what you mean wit using "normal" images? You can provide an initialization image, but then it is just events.

Thanks.