Cuda实现Radon变换

本文探讨了如何利用CUDA技术实现Radon变换。通过详细阐述算法,并提供类似于C语言的编程方式,展示了如何在CUDA中设置block和thread,每个block包含numAngles(如181个)线程来执行变换,提升计算效率。
摘要由CSDN通过智能技术生成

有关radon变换的算法的详情,写在这里:http://blog.csdn.net/celte/article/details/9826505

用Cuda实现radon变换,可以类似C语言程序操作。。。

这里可以简单的使用一个block,每个block包含numAngles个thread(在下面的代码中是181个thread)

#include <stdio.h>
#include "math.h"
#include "cuda_runtime.h"
#include "device_launch_parameters.h"

   
__global__ static void radon_cuda_core(float *gpuOutput,float *gpuInput,float *gpuAngles,int M,int N,int xOrgin,int yOrgin,int numAngles,int rFirst,int rSize)
{
	const int tid=threadIdx.x;	
	float angle=gpuAngles[tid];
	float *pOutput=gpuOutput+tid*rSize;		
	float sine=sin(angle);
	float cosine=cos(angle);
	int m,n;
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值