I am developing an application through EmguCV and Visual Studio Express 2010 in Win8.1x64. when I create a new project (Windows C # application), it automatically selects x86 as the target platform, and there is no other choice. When I try to read the image using the code below, I get an error. I know that he makes this error when the target platform is not selected or when it does not look like the operating system, but I do not know how to change the target platform to x64 in this case!
Image<Gray, byte> OrginalImage = new Image<Gray, byte>(Openfile.FileName);
[System.BadImageFormatException] = {"An attempt was made to load programs with the wrong format. (Exception from HRESULT: 0x8007000B)"}
source share