New algorithm unlocks high-resolution insights for computer vision
1–10 of 23 posts
Re: New algorithm unlocks high-resolution insights for computer vision
#2Re: New algorithm unlocks high-resolution insights for computer vision
#3Re: New algorithm unlocks high-resolution insights for computer vision
#4They reproject the input images and run the low-res network multiple times. Then they use an approach similar to NeRF to merge the knowledge from those reprojected images into a super-resolution result.
So in a way, this is quite similar to how modern Pixel phones can take a burst of frames and merge them into a final image that has a higher resolution than the sensor. Except that they run useful AI processing in between and then do the super-resolution merge on the results.
Re: New algorithm unlocks high-resolution insights for computer vision
#5Apparently, the issue is that some vision algorithms only output a low-res representation and that needs to be upsampled to match the original?
Re: New algorithm unlocks high-resolution insights for computer vision
#6It's not that clear why they are downsampling and then upsampling again. Why not do all the work at the original resolution? Apparently, the issue is that some vision algorithms only output a low-res representation and that needs to be upsampled to match the original?
For NNs, This is pretty much a compute efficiency thing. Working on the original resolution directly is more compute intensive.
Re: New algorithm unlocks high-resolution insights for computer vision
#7What an amazing idea :) They reproject the input images and run the low-res network multiple times. Then they use an approach similar to NeRF to merge the knowledge from those reprojected images into a super-resolution result. So in a way, this is quite similar to how modern Pixel phones can take a burst of frames and merge them into a final image that has a higher resolution than the sensor. Except that they run use…
Re: New algorithm unlocks high-resolution insights for computer vision
#8It's not that clear why they are downsampling and then upsampling again. Why not do all the work at the original resolution? Apparently, the issue is that some vision algorithms only output a low-res representation and that needs to be upsampled to match the original?
Re: New algorithm unlocks high-resolution insights for computer vision
#9Re: New algorithm unlocks high-resolution insights for computer vision
#10What an amazing idea :) They reproject the input images and run the low-res network multiple times. Then they use an approach similar to NeRF to merge the knowledge from those reprojected images into a super-resolution result. So in a way, this is quite similar to how modern Pixel phones can take a burst of frames and merge them into a final image that has a higher resolution than the sensor. Except that they run use…
Very interesting, I am curious how do people reach that train of thought to a successful idea. So many great algorithms based on small twists.