4

如标题所述:我正在尝试在 Visual C# 2010 Professional(试用版)中使用 Tamas Szalay 的 FFTW 的 C# 端口,当我尝试使用二维变换时出现上述错误。(当我切换到 dft_c2r_2d() 时问题仍然存在)。其他函数(特别是 fftw.malloc())工作正常。

细节:

unsafe void FFTFind(IntPtr Scan0, int stride, int width, int height, Rectangle roi)
{
    IntPtr ComplexImage = fftw.malloc(width * height * 16);
    double[] pComplexImage = new double[width * height * 2];
    byte* pScan0 = (byte*)Scan0.ToPointer();

    Console.WriteLine("3");

    for (int y = 0; y < height; y++)
    {
        for (int x = 0; x < width; x++)
        {
            pComplexImage[x * y * 2] = pScan0[y * stride + x * 4];
            //pComplexImage[x * y * 2] = pScan0[y * stride + x];
        }
    }

    Console.WriteLine("3.05");

    Marshal.Copy(pComplexImage, 0, ComplexImage, width * height * 2);

    Console.WriteLine("Starting FFTFind");

    FFTFindKernel(ComplexImage, stride, width, height, roi);
}

unsafe void FFTFindKernel(IntPtr imageIn, int stride, int width, int height, Rectangle roi)
{
    Console.WriteLine("3.1");
    IntPtr hScan0 = (IntPtr) GCHandle.Alloc(imageIn, GCHandleType.Pinned);
    Console.WriteLine("3.3");
    IntPtr FourierPlan;

    Console.WriteLine("3.5");
    int start = System.Environment.TickCount;
    Console.WriteLine("3.7");
    FourierPlan = fftw.dft_r2c_2d(width, height, hScan0, hScan0, 0);
    Console.WriteLine("4");
    fftw.execute(FourierPlan);
    Console.WriteLine("Time: {0} ms", (System.Environment.TickCount - start));
}

控制台最多打印“3.7”。尝试运行FourierPlan = ...会导致程序崩溃并弹出一个消息框:

vshost.exe has stopped working.

禁用 Visual Studio 主机进程只会将“vshost.exe”替换为“FFTFind”。

可能相关:我在 x64 环境(Windows Server Standard)中运行它,但 dll 和程序是 x86。这之前在 Visual C# 2010 Express 中导致了一个问题,该问题通过切换到专业试用版然后手动将配置目标从“x86”更改为“任何 CPU”来解决。

更新:运行提供的测试代码工作正常。

4

1 回答 1

0

事实证明,计划函数不能采用“虚拟”指针——它们指向的数组必须被初始化。回想起来,这应该很明显......

于 2012-02-09T00:16:29.710 回答