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

The system cannot find the file specified #19

Open roberto0013 opened 3 years ago

roberto0013 commented 3 years ago

Hello! First of all I want to say great work, very thorough. If you ever get an explanaition to why the eigen value "division" is implemented in the way described in the report, I am interested to know the reasoning.

But now to my question. I have never worked with either C# or CUDA, so perhaps this is a beginners mistake. I have installed CUDA 10.2 and if I open the project in VS2019 and try to build, I get 2 succesful and one skipped is that the way it should be? If I try to run it after I've built the solution, I get an error message that says "Unable to start program ...\PEFStudioDX\Kernels the system cannot find the file specified.".

kunzmi commented 3 years ago

Hi,

I'm just guessing but it seems that CUDA did not properly install the VS2019 integration why the project with the kernels cannot load (the project "Kernels" in the solution explorer should be greyed out then). This is not a big issue as I checked in all kernels ready compiled as PTX in the repository, so no direct need to recompile them. The second error sounds like that you try to start the Kernels project as "main application" which of course doesn't succeed. Try to set the project "PEFStudioDX" as start project, then VS2019 will run the actual application.

Hope that helps, Michael

roberto0013 commented 3 years ago

Thanks for the quick answer, it worked when I changed start project to PEFStudioDX.