6

Nvidia Performance Primitives (NPP)提供了nppiFilter将用户提供的图像与用户提供的内核进行卷积的功能。对于一维卷积核,nppiFilter可以正常工作。但是,nppiFilter正在为 2D 内核生成垃圾图像。

我使用典型的 Lena 图像作为输入: 在此处输入图像描述


这是我对一卷积核的实验,它产生了良好的输出。

#include <npp.h> // provided in CUDA SDK
#include <ImagesCPU.h> // these image libraries are also in CUDA SDK
#include <ImagesNPP.h>
#include <ImageIO.h>

void test_nppiFilter()
{
    npp::ImageCPU_8u_C1 oHostSrc;
    npp::loadImage("Lena.pgm", oHostSrc);
    npp::ImageNPP_8u_C1 oDeviceSrc(oHostSrc); // malloc and memcpy to GPU 
    NppiSize kernelSize = {3, 1}; // dimensions of convolution kernel (filter)
    NppiSize oSizeROI = {oHostSrc.width() - kernelSize.width + 1, oHostSrc.height() - kernelSize.height + 1};
    npp::ImageNPP_8u_C1 oDeviceDst(oSizeROI.width, oSizeROI.height); // allocate device image of appropriately reduced size
    npp::ImageCPU_8u_C1 oHostDst(oDeviceDst.size());
    NppiPoint oAnchor = {2, 1}; // found that oAnchor = {2,1} or {3,1} works for kernel [-1 0 1] 
    NppStatus eStatusNPP;

    Npp32s hostKernel[3] = {-1, 0, 1}; // convolving with this should do edge detection
    Npp32s* deviceKernel;
    size_t deviceKernelPitch;
    cudaMallocPitch((void**)&deviceKernel, &deviceKernelPitch, kernelSize.width*sizeof(Npp32s), kernelSize.height*sizeof(Npp32s));
    cudaMemcpy2D(deviceKernel, deviceKernelPitch, hostKernel,
                     sizeof(Npp32s)*kernelSize.width, // sPitch
                     sizeof(Npp32s)*kernelSize.width, // width
                     kernelSize.height, // height
                     cudaMemcpyHostToDevice);
    Npp32s divisor = 1; // no scaling

    eStatusNPP = nppiFilter_8u_C1R(oDeviceSrc.data(), oDeviceSrc.pitch(),
                                          oDeviceDst.data(), oDeviceDst.pitch(),
                                          oSizeROI, deviceKernel, kernelSize, oAnchor, divisor);

    cout << "NppiFilter error status " << eStatusNPP << endl; // prints 0 (no errors)
    oDeviceDst.copyTo(oHostDst.data(), oHostDst.pitch()); // memcpy to host
    saveImage("Lena_filter_1d.pgm", oHostDst); 
}

带有内核的上述代码的输出[-1 0 1]——它看起来像一个合理的渐变图像: 在此处输入图像描述


但是,nppiFilter如果我使用2D卷积核,则会输出垃圾图像。以下是我从上面的代码更改为使用 2D 内核运行的内容[-1 0 1; -1 0 1; -1 0 1]

NppiSize kernelSize = {3, 3};
Npp32s hostKernel[9] = {-1, 0, 1, -1, 0, 1, -1, 0, 1};
NppiPoint oAnchor = {2, 2}; // note: using anchor {1,1} or {0,0} causes error -24 (NPP_TEXTURE_BIND_ERROR)
saveImage("Lena_filter_2d.pgm", oHostDst);

下面是使用 2D 内核的输出图像[-1 0 1; -1 0 1; -1 0 1]

我究竟做错了什么?

在此处输入图像描述

这篇 StackOverflow 帖子描述了一个类似的问题,如用户 Steenstrup 的图片所示:http: //1ordrup.dk/kasper/image/Lena_boxFilter5.jpg


最后的几点说明:

  • 使用 2D 内核,对于某些锚值(例如NppiPoint oAnchor = {0, 0}or {1, 1}),我得到 error -24NPP_TEXTURE_BIND_ERROR根据NPP User Guide转换为。这篇 StackOverflow 帖子中简要提到了这个问题。
  • 这段代码非常冗长。这不是主要问题,但有人对如何使这段代码更简洁有任何建议吗?
4

1 回答 1

3

您正在为内核数组使用 2D 内存分配器。内核数组是密集的一维数组,而不是像典型的 NPP 图像那样的二维跨步数组。

只需用大小为 kernelWidth*kernelHeight*sizeof(Npp32s) 的简单 cuda malloc 替换 2D CUDA malloc 并执行普通的 CUDA memcopy 而不是 memcopy 2D。

//1D instead of 2D
cudaMalloc((void**)&deviceKernel, kernelSize.width * kernelSize.height * sizeof(Npp32s));
cudaMemcpy(deviceKernel, hostKernel, kernelSize.width * kernelSize.height * sizeof(Npp32s), cudaMemcpyHostToDevice);

顺便说一句,“比例因子”为 1 并不意味着没有比例。使用因子 2^(-ScaleFactor) 进行缩放。

于 2012-10-15T23:15:02.457 回答