neuralangelo
neuralangelo copied to clipboard
Images instead of videos
Can I use the already captured images and obtain JSON files without using videos
Also waiting for this. Using images instead of vidoes
Also waiting for this. If i can take 100 pictures of an object from different angles to reconstruct?
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.
You can already use images, just run the preprocessing steps individually and skip the ffmpeg step.