-
cuda dct 变换
cuda dct 变换In this whitepaper the Discrete Cosine Transform (DCT) is discussed. The two-dimensional variation of the transform that operates on 8x8 blocks (DCT8x8) is widely used in image and video coding because it exhibits high signal decorrelation rates and can be easily implemented on the majority of contemporary computing architectures. The key feature of the DCT8x8 is that any pair of 8x8 blocks can be processed independently. This makes possible fully parallel implementation of DCT8x8 by definition. Most of CPU-based implementations of DCT8x8 are firmly adjusted for operating using fixed point arithmetic but still appear to be rather costly as soon as blocks are processed in the sequential order by the single ALU. Performing DCT8x8 computation on GPU using NVIDIA CUDA technology gives significant performance boost even compared to a modern CPU. The proposed approach is accompanied with the sample code “DCT8x8” in the NVIDIA CUDA SDK.
- 2022-07-22 04:21:09下载
- 积分:1
-
温度转换器
温度转换器 vb.net
允许用户将在摄氏温度转换为开尔文
- 2023-05-05 11:15:03下载
- 积分:1
-
sqlite源码
sqlite小型嵌入式数据库,方便好用,代码简洁精练,是阅读源码学习的好工具。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。
- 2022-01-24 16:26:44下载
- 积分:1
-
《计算智能》课程考核
计算智能考核题目,用于练习计算智能的题目。绝对适合你们。计算智能考核题目,用于练习计算智能的题目。绝对适合你们。计算智能考核题目,用于练习计算智能的题目。绝对适合你们。
- 2022-07-13 09:56:09下载
- 积分:1
-
NtripClient for Linux
NTRIPClient-Source Code 基于Linux开发环境的NTRIP源码,C语言
- 2023-06-12 16:45:03下载
- 积分:1
-
汽车电子方面的到速雷达
本程序,是汽车电子方面的到速雷达,利用收发同体超声波传感器,来测量车身里障碍物的距离,在1.5米内开始报警,在0.5米内连续报警。次项目能够在-40度到80度范围内不会误报。
- 2022-03-18 13:13:17下载
- 积分:1
-
OPEN GL-经典例子
OPEN GL-经典例子 OPEN GL-经典例子 OPEN GL-经典例子 OPEN GL-经典例子 OPEN GL-经典例子 OPEN GL-经典例子 OPEN GL-经典例子 OPEN GL-经典例子
- 2022-01-26 00:23:44下载
- 积分:1
-
.NET数据导入导出
一个简单的Wiindows窗体程序,练习将数据库中的数据导出到文本文档(.txt)中,将文本文档中的数据导入到数据库中涉及到的内容有:vs连接数据库,文件的读取,SaveFileDialog,OpenFileDialog的使用等内容
- 2022-05-05 08:59:07下载
- 积分:1
-
八皇后问题c语言实现
void show() /* 输出所有皇后的坐标 */
{
int i;
for(i = 0; i < max; i++)
{
printf("(%d,%d) ", i, queen[i]);
}
printf("
");
sum++;
}
int check(int n) /* 检查当前列能否放置皇后 */
{
int i;
for(i = 0; i < n; i++) /* 检查横排和对角线上是否可以放置皇后 */
{
if(queen[i] == queen[n] || abs(queen[i] - queen[n]) == (n - i))
{
return 1;
}
}
return 0;
}
void put(int n) /* 回溯尝试皇后位置,n为横坐标 */
{
int i;
for(i = 0; i < max; i++)
{
&nbs
- 2022-05-09 12:47:00下载
- 积分:1
-
指纹识别源代码
很好的指纹识别文件,便于初学者的使用和学习,大家多多支持,使得能够完善文件。有指纹的获取,二值化,细化,比对等。确实很好
- 2022-10-19 18:45:03下载
- 积分:1