kunzmi / ImageStackAlignator

Implementation of Google's Handheld Multi-Frame Super-Resolution algorithm (from Pixel 3 and Pixel 4 camera)
GNU General Public License v3.0
392 stars 65 forks source link

Run on ios using C++ #1

Closed foxfortmobile closed 4 years ago

foxfortmobile commented 4 years ago

Hi,

Is it possible to run this code on device in C++ on ios RAW DNG files? Does it have any specific hardware limitations that prevents it from being run on other platform? I don't have GPU since i use an old Macbbook so i could not try the demo.

kunzmi commented 4 years ago

Well, the main (and computationally heavy) parts are implemented in CUDA, with some glue code in C# plus a simple GUI. So that gives you the restriction of having a Nvidia GPU... If you remove the WPF GUI and replace it with some other way of interaction, you could run the glue code with mono on your mac. But you'd still need a GPU, though. So the short answer is: no

foxfortmobile commented 4 years ago

Ok, thanks for the quick reply