登录
首页 » Visual C++ » CUDA_image-denoising

CUDA_image-denoising

于 2014-09-15 发布 文件大小:5201KB
0 238
下载积分: 1 下载次数: 41

代码说明:

  用CUDA并行处理方法改写的图像降噪算法,包括KNN,NLM,以及改进的NLM方法。配置环境适合VS2010+CUDA5.0,对使用CUDA的同学来说是很好的教材。(Image denoising algorithms including KNN,NLM and refined NLM run on CUDA, useful demo for who learns CUDA based parallel programming.)

文件列表:

imageDenoising
..............\bmploader.cpp,2538,2013-07-03
..............\data

..............\....\ref_knn.ppm,391734,2012-09-13
..............\....\ref_nlm.ppm,391734,2012-09-13
..............\....\ref_nlm2.ppm,391734,2012-09-13
..............\....\ref_passthru.ppm,391734,2012-09-13
..............\doc



..............\imageDenoising.cpp,16281,2013-07-03
..............\imageDenoising.cu,2535,2013-07-03
..............\imageDenoising.h,2080,2013-07-03
..............\imageDenoising_copy_kernel.cuh,780,2013-07-03
..............\imageDenoising_knn_kernel.cuh,5048,2013-07-03
..............\imageDenoising_nlm2_kernel.cuh,7248,2013-07-03
..............\imageDenoising_nlm_kernel.cuh,5725,2013-07-03
..............\imageDenoising_vs2010.sdf,8474624,2013-07-03
..............\imageDenoising_vs2010.sln,1255,2012-09-13
..............\imageDenoising_vs2010.vcxproj,14357,2013-06-02
..............\imageDenoising_vs2010.vcxproj.user,143,2013-06-02
..............\ipch
..............\....\imagedenoising_vs2010-b1aad446
..............\....\..............................\a020fcb3.ipch,1966080,2013-07-03
..............\Win32
..............\.....\Debug
..............\.....\.....\imageDenoising.cu.cache,1198,2013-07-03
..............\.....\.....\imageDenoising.cu.deps,19772,2013-07-03
..............\.....\.....\imageDenoising.lastbuildstate,89,2013-07-03
..............\.....\.....\imageDenoising.unsuccessfulbuild,0,2013-07-03
..............\.....\.....\imageDenoising_copy_kernel.cuh.cache,1224,2013-07-03
..............\.....\.....\imageDenoising_knn_kernel.cuh.cache,1222,2013-07-03
..............\.....\.....\imageDenoising_nlm2_kernel.cuh.cache,1224,2013-07-03
..............\.....\.....\imageDenoising_nlm_kernel.cuh.cache,1222,2013-07-03
..............\.....\.....\imageDenoising_vs2010.log,14963,2013-07-03
..............\x64
..............\...\Debug
..............\...\.....\imageDenoising.cu.cache,1200,2013-07-03
..............\...\.....\imageDenoising.cu.deps,19772,2013-07-03
..............\...\.....\imageDenoising.lastbuildstate,87,2013-07-03
..............\...\.....\imageDenoising.unsuccessfulbuild,0,2013-07-03
..............\...\.....\imageDenoising_copy_kernel.cuh.cache,1226,2013-07-03
..............\...\.....\imageDenoising_knn_kernel.cuh.cache,1224,2013-07-03
..............\...\.....\imageDenoising_nlm2_kernel.cuh.cache,1226,2013-07-03
..............\...\.....\imageDenoising_nlm_kernel.cuh.cache,1224,2013-07-03
..............\...\.....\imageDenoising_vs2010.log,15007,2013-07-03

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • yun7.1
    重要的纹理分割分类基础程序,可以进行更深入的探讨和优化,应用于遥感影像中。(Important basis for classification of texture segmentation procedure can be carried out more in-depth exploration and optimization, application of remote sensing images.)
    2007-07-13 15:01:34下载
    积分:1
  • ippiman
    图像处理的IPP库使用手册,包括每个函数的使用说明,以及参数的意义。(IPP library of image processing using the manual, including instructions for each function, as well as the significance of the parameters.)
    2013-01-10 20:23:06下载
    积分:1
  • Lsm_match
    最小二乘图像影像匹配方法,一个很详细的源码例程,有过程有结果,希望对初学者有帮助。高斯解方程,以及最小二乘匹配,里面都很详细。(Squares image image matching method, a very detailed source code routines, the outcome of the process, I hope to help beginners. Gaussian solution of equations, and least squares matching, which is very detailed.)
    2013-07-18 16:52:41下载
    积分:1
  • quanjingtupinheyuchuli
    一种有效的全景图拼合预处理算法.适用于图像的拼接。是论文!(An effective pre-processing algorithm together panorama. Splicing applied to images. Is a thesis!)
    2008-04-15 16:42:03下载
    积分:1
  • graph
    对圆形,正方形,长方形等几何图形进行计算面积,周长等运算(Circular, square, rectangular and other geometric shapes are calculated area, perimeter of operation)
    2016-06-29 22:12:46下载
    积分:1
  • SiftGPU-V370
    说明:  使用gpu、cpu并行进行sift算子计算匹配,能够在原来的基础上加速处理,但对显卡要求较高,具体环境配置使用方法可以参照mannual(SiftGPU is an implementation of SIFT [1] for GPU. SiftGPU processes pixels parallely to build Gaussian pyramids and detect DoG Keypoints. Based on GPU list generation[3], SiftGPU then uses a GPU/CPU mixed method to efficiently build compact keypoint lists. Finally keypoints are processed parallely to get their orientations and descriptors. SiftGPU is inspired by Andrea Vedaldi s sift++[2] and Sudipta N Sinha et al s GPU-SIFT[4] . Many parameters of sift++ ( for example, number of octaves, number of DOG levels, edge threshold, etc) are also available in SiftGPU. The shader programs are dynamically generated according to the parameters that user specified. SiftGPU also includes a GPU exhaustive/guided sift matcher SiftMatchGPU. It basically multiplies the descriptor matrix on GPU and find closest feature matches on GPU. Both GLSL and CUDA implementations are provided. )
    2011-02-23 10:20:27下载
    积分:1
  • Defect-detection
    基于灰度图像进行傅立叶变换后的二值化处理(Binarization based on the Fourier transform after the gray image processing)
    2014-12-21 13:56:05下载
    积分:1
  • CAGD_NURBS
    施法中新版《计算几何与计算机图形学》,书中所带光盘,包含书中源码和其团队开发的软件,能够实现曲线曲面拟合和编辑(The new cast of Computational Geometry and Computer Graphics , the book brought the disc that contains the source code in the book and his team developed software enables curve and surface fitting and edit)
    2016-02-15 09:40:33下载
    积分:1
  • source
    数字图像处理,C语言,功能是打开一幅位图,实现几何变换。(Digital image processing, C language function is to open a bitmap, to achieve geometric transform.)
    2010-01-12 15:05:48下载
    积分:1
  • demo
    对BMP文件进行图像处理,包括:边缘检测、频域变换、几何变换、图像变换校正、灰度变换、图像编码、平滑和匹配(BMP files for image processing, comprising: an edge detection, a frequency domain transformation, geometric transformation, image transformation correction gradation conversion, image coding, and matching the smooth)
    2014-01-12 10:17:03下载
    积分:1
  • 696518资源总数
  • 104384会员总数
  • 26今日下载