neuralangelo icon indicating copy to clipboard operation
neuralangelo copied to clipboard

Images instead of videos

Open mowangmodi opened this issue 1 year ago • 4 comments

Can I use the already captured images and obtain JSON files without using videos

mowangmodi avatar Sep 02 '23 03:09 mowangmodi

Also waiting for this. Using images instead of vidoes

sunhoro avatar Sep 02 '23 16:09 sunhoro

Also waiting for this. If i can take 100 pictures of an object from different angles to reconstruct?

xuduo18311199384 avatar Sep 04 '23 10:09 xuduo18311199384

Also interested, but note that you can create a temporary video out of your images without encoding overhead, and then match the downsample rate when processing (set to 1 for the example below).

ffmpeg -framerate 1 -i 'myimages\frame_%05d.png' -c:v copy temp_video.mkv

Note that this requires the images to be named in the scheme frame_<5 digit number>.png, but can be adjusted.

ninjamode avatar Sep 04 '23 19:09 ninjamode

You can already use images, just run the preprocessing steps individually and skip the ffmpeg step.

bcherb2 avatar Sep 18 '23 01:09 bcherb2