资源简介
资源包括文章、代码、以及PPT,PPT能够帮助理解文章的主题思想,刚读的话挺有用的。

代码片段和文件信息
/*
* ctmf.c - Constant-time median filtering
* Copyright (C) 2006 Simon Perreault
*
* Reference: S. Perreault and P. Hébert “Median Filtering in Constant Time“
* IEEE Transactions on Image Processing September 2007.
*
* This program has been obtained from http://nomis80.org/ctmf.html. No patent
* covers this program although it is subject to the following license:
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation either version 3 of the License or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not see .
*
* Contact:
* Laboratoire de vision et systèmes numériques
* Pavillon Adrien-Pouliot
* Université Laval
* Sainte-Foy Québec Canada
* G1K 7P4
*
* perreaul@gel.ulaval.ca
*/
/* Standard C includes */
#include
#include
#include
#include
#define __MMX__
/* Type declarations */
#ifdef _MSC_VER
#include setsd.h>
typedef UINT8 uint8_t;
typedef UINT16 uint16_t;
typedef UINT32 uint32_t;
#pragma warning( disable: 4799 )
#else
#include
#endif
/* Intrinsic declarations */
#if defined(__SSE2__) || defined(__MMX__)
#if defined(__SSE2__)
#include
#elif defined(__MMX__)
#include
#endif
#if defined(__GNUC__)
#include
#elif defined(_MSC_VER)
#include
#endif
#elif defined(__ALTIVEC__)
#include
#elif defined(__AVX__)
#include
#endif
/* Compiler peculiarities */
#if defined(__GNUC__)
#include
#define inline __inline__
#define align(x) __attribute__ ((aligned (x)))
#elif defined(_MSC_VER)
#define inline __inline
#define align(x) __declspec(align(x))
#else
#define inline
#define align(x)
#endif
#ifndef MIN
#define MIN(ab) ((a) > (b) ? (b) : (a))
#endif
#ifndef MAX
#define MAX(ab) ((a) < (b) ? (b) : (a))
#endif
/**
* This structure represents a two-tier histogram. The first tier (known as the
* “coarse“ level) is 4 bit wide and the second tier (known as the “fine“ level)
* is 8 bit wide. Pixels inserted in the fine level also get inserted into the
* coarse bucket designated by the 4 MSBs of the fine bucket value.
*
* The structure is aligned on 16 bytes which is a prerequisite for SIMD
* instructions. Each bucket is 16 bit wide which means that extra care must be
* taken to prevent overflow.
*/
typedef struct align(16)
{
uint16_t coarse[16];
uint16_t fine[16][16];
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 767936 2018-12-10 17:08 A Non-Local Cost Aggregation Method for Stereo Matching.pptx
..A..H. 29696 2016-01-22 15:03 A Non-Local Cost Aggregation Method for Stereo Matching\.vs\qx_nonlocal_cost_aggregation\v14\.suo
文件 168765 2012-05-09 19:53 A Non-Local Cost Aggregation Method for Stereo Matching\cones\disparity.pgm
文件 506288 2012-05-09 18:03 A Non-Local Cost Aggregation Method for Stereo Matching\cones\left.ppm
文件 506288 2012-05-09 18:03 A Non-Local Cost Aggregation Method for Stereo Matching\cones\right.ppm
文件 27648 2012-05-09 19:51 A Non-Local Cost Aggregation Method for Stereo Matching\cones\Thumbs.db
文件 16948 2016-01-21 17:35 A Non-Local Cost Aggregation Method for Stereo Matching\ctmf.c
文件 265 2012-02-22 22:21 A Non-Local Cost Aggregation Method for Stereo Matching\ctmf.h
文件 5862 2016-01-22 15:07 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\cl.command.1.tlog
文件 108754 2016-01-22 15:07 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\CL.read.1.tlog
文件 5190 2016-01-22 15:07 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\CL.write.1.tlog
文件 17490 2016-01-22 15:07 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\ctmf.obj
文件 46946 2016-01-22 15:07 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\example.obj
文件 331814 2012-05-09 18:02 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\left.ppm
文件 2 2016-01-22 15:07 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\li
文件 2 2016-01-22 15:07 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\li
文件 2 2016-01-22 15:07 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\li
文件 2 2016-01-22 15:07 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\li
文件 2 2016-01-22 15:07 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\li
文件 2 2016-01-22 15:07 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\li
文件 3648 2016-01-22 15:07 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\li
文件 6712 2016-01-22 15:07 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\li
文件 2640 2016-01-22 15:07 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\li
文件 580 2016-01-22 15:07 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\mt.command.1.tlog
文件 542 2016-01-22 15:07 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\mt.read.1.tlog
文件 542 2016-01-22 15:07 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\mt.write.1.tlog
文件 116334 2016-01-22 15:07 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\qx_basic.obj
文件 88487 2016-01-22 15:07 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\qx_mst_kruskals_image.obj
文件 5736 2016-01-22 14:52 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\qx_nonlo.7BE6E10D.tlog\CL.command.1.tlog
文件 132244 2016-01-22 14:52 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\qx_nonlo.7BE6E10D.tlog\CL.read.1.tlog
............此处省略166个文件信息
- 上一篇:神经网络office插件NNX
- 下一篇:scratch游戏《愤怒的小鸟》
相关资源
- bp神经网络源代码,可直接运行
- 随机森林R语言代码
- 计算机图形学 边填充算法实现代码
- 直流无刷电机方波驱动 stm32 例程代码
- 仿知乎界面小程序源代码
- 贪吃蛇源代码.fla
- 周立功开发板ProASIC3实验-syn_FIFO代码
- IMX385驱动代码.zip
- dotnet 写字板 实验 源代码 不好请要不
- 图像二维小波变换的实现源代码
- 八三编码器设计 VHDL代码 简单,包附
- linux应用层的华容道游戏源代码
- 交通咨询模拟系统完整代码
- http请求状态代码
- 数值分析所有实验代码
- 网上拍卖系统完整源代码
- 音乐代码转换软件 单片机编程时用
- CSMA/CD等动画演示加源代码
- silicon lab公司的收音IC SI47XX全套开发工
- 用51单片机实现G代码翻译
- 合同管理系统的源代码(附数据库)
- 用VC 编写的仿QQ聊天室程序源代码
- web班级网站设计代码
- 38k单片机红外发送代码、keil
- STM32F103 串口程序(完整版)
- 网络唤醒代码
- VPC3_DPV1源代码,Profibus
- PB做的托盘程序(最小化后在左下角显
- RSA算法源码
- ubuntu9.10 可加载内核模块和字符设备驱
评论
共有 条评论