资源简介
最小生成树匹配,运行效果好,时间短
代码片段和文件信息
/*
* 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];
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2016-12-22 15:47 A Non-Local Cost Aggregation Method for Stereo Matching\
目录 0 2016-01-22 14:50 A Non-Local Cost Aggregation Method for Stereo Matching\.vs\
目录 0 2016-01-22 14:50 A Non-Local Cost Aggregation Method for Stereo Matching\.vs\qx_nonlocal_cost_aggregation\
目录 0 2016-01-22 14:50 A Non-Local Cost Aggregation Method for Stereo Matching\.vs\qx_nonlocal_cost_aggregation\v14\
文件 29696 2016-01-22 15:03 A Non-Local Cost Aggregation Method for Stereo Matching\.vs\qx_nonlocal_cost_aggregation\v14\.suo
目录 0 2015-12-04 18:24 A Non-Local Cost Aggregation Method for Stereo Matching\cones\
文件 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
目录 0 2016-12-20 15:43 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\
文件 5106 2016-12-20 15:43 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\cl.command.1.tlog
文件 103946 2016-12-20 15:43 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\CL.read.1.tlog
文件 4272 2016-12-20 15:43 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\CL.write.1.tlog
文件 17758 2016-12-20 15:43 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\ctmf.obj
文件 154445 2016-12-20 15:43 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-12-20 15:43 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\li
文件 2 2016-12-20 15:43 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\li
文件 2 2016-12-20 15:43 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\li
文件 2 2016-12-20 15:43 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\li
文件 3592 2016-12-20 15:43 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\li
文件 7436 2016-12-20 15:43 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\li
文件 1756 2016-12-20 15:43 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\li
文件 229925 2016-12-20 15:43 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\qx_basic.obj
文件 194215 2016-12-20 15:43 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\qx_mst_kruskals_image.obj
目录 0 2016-01-22 15:57 A Non-Local Cost Aggregation Method for Stereo Matching\Debug\qx_nonlo.7BE6E10D.tlog\
文件 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
............此处省略147个文件信息
- 上一篇:人月神话(英文原版).pdf
- 下一篇:金坤林(着)--如何撰写、发表SCI期刊论文
评论
共有 条评论