资源简介
资源包括文章、代码、以及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游戏《愤怒的小鸟》
相关资源
- 基于STM32的温度传感器代码
-
Fli
nk流式计算实际生产项目代码 -
查看基于.netfr
amework编写的exe和dll源 - tcpdump 源代码
- STM32板LCD1602的配置代码
- Nachos实验代码
- 新闻APP后台管理
- 基于web的图书管理系统(源代码)1
- OpenGL环境下贴图法画树代码
- 在线教学系统网站开发源代码+视屏讲
- 颜色传感器 stm32代码
- 硬连线控制器的常规CPU设计[BUPT]计算
- stm32f103C8T6 MCP3204程序代码
- 一些神经网络经典模型的源代码
- 深度学习框架-pytorch入门与实践源代码
- 捕鱼达人详细代码
- 数据库课程设计源代码
- 密码学实验全部题目+完整代码:Has
- STM32倒立摆代码
- 拔河游戏verilog代码FPGA
- UNITY代码大全
- 大学生静态个人网站设计(源代码+论
- 室内定位 WIFI Scan 源代码
- 一个英语学习的安卓app词典的源代码
- 资源管理器项目(包含所有源代码
- 旅游网站源代码
- PowerBuilder9.0进销存管理系统.rar
- 控制系统计算机辅助设计源代码 薛定
- bacnet协议栈源代码
- 水质检测—PH、浊度、TDS传感器代码
评论
共有 条评论