• 大小: 192KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-26
  • 语言: C/C++
  • 标签: c语言  源码  optical  flow  

资源简介

光流场计算 c语言 源码 optical flow

资源截图

代码片段和文件信息

// Copyright (c) 2008 Daniel Cabrini Hauagge
// 
// Permission is hereby granted free of charge to any person
// obtaining a copy of this software and associated documentation
// files (the “Software“) to deal in the Software without
// restriction including without limitation the rights to use
// copy modify merge publish distribute sublicense and/or sell
// copies of the Software and to permit persons to whom the
// Software is furnished to do so subject to the following
// conditions:
// 
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
// 
// THE SOFTWARE IS PROVIDED “AS IS“ WITHOUT WARRANTY OF ANY KIND
// EXPRESS OR IMPLIED INCLUDING BUT NOT LIMITED TO THE WARRANTIES
// OF MERCHANTABILITY FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
// HOLDERS BE LIABLE FOR ANY CLAIM DAMAGES OR OTHER LIABILITY
// WHETHER IN AN ACTION OF CONTRACT TORT OR OTHERWISE ARISING
// FROM OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
// OTHER DEALINGS IN THE SOFTWARE.


#include “MathUtils.hpp“

//Round a / b to nearest higher integer value
int 
iDivUp(int a int b)
{
    return (a % b != 0) ? (a / b + 1) : (a / b);
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       6148  2008-07-10 14:01  CUDABOF\CUDABOF\.DS_Store

     文件     262568  2008-05-06 21:56  CUDABOF\CUDABOF\data\blob_01_01.tiff

     文件     262568  2008-05-06 21:57  CUDABOF\CUDABOF\data\blob_01_02.tiff

     文件     262568  2008-05-06 21:57  CUDABOF\CUDABOF\data\blob_01_03.tiff

     文件      16714  2008-04-25 16:11  CUDABOF\CUDABOF\data\mc_02_01.tiff

     文件      16714  2008-04-25 16:11  CUDABOF\CUDABOF\data\mc_02_02.tiff

     文件      16714  2008-04-25 16:11  CUDABOF\CUDABOF\data\mc_02_03.tiff

     文件      16722  2008-04-24 00:08  CUDABOF\CUDABOF\data\moving_circle_01.tiff

     文件      16722  2008-04-24 00:08  CUDABOF\CUDABOF\data\moving_circle_02.tiff

     文件      16722  2008-04-24 00:10  CUDABOF\CUDABOF\data\moving_circle_03.tiff

     文件       3063  2008-07-03 18:30  CUDABOF\CUDABOF\Makefile

     文件       1340  2008-07-10 13:49  CUDABOF\CUDABOF\README

     文件       2526  2008-07-03 18:30  CUDABOF\CUDABOF\test02_spatialDerivs.cpp

     文件       2420  2008-07-03 18:30  CUDABOF\CUDABOF\test03_gaussianPyramid.cpp

     文件       8458  2008-07-03 18:30  CUDABOF\CUDABOF\test04_opticalFlow.cpp

     文件       2269  2009-09-28 17:17  CUDABOF\CUDABOF\test01_kernel.cu

     文件       3089  2009-09-28 17:18  CUDABOF\CUDABOF\GaussianPyramidKernel.cu

     文件      21002  2009-09-28 17:20  CUDABOF\CUDABOF\BayesianOpticalFlowKernels.cu

     文件       8307  2009-09-28 17:32  CUDABOF\CUDABOF\OpticalFlow.cpp

     文件       1285  2009-09-28 17:32  CUDABOF\CUDABOF\MathUtils.cpp

     文件       1690  2009-09-28 17:37  CUDABOF\CUDABOF\test01.cpp

     文件       1470  2009-09-28 17:37  CUDABOF\CUDABOF\test01_kernel.hpp

     文件       2368  2009-09-28 17:37  CUDABOF\CUDABOF\Pyramid.hpp

     文件       3177  2009-09-28 17:37  CUDABOF\CUDABOF\OpticalFlow.hpp

     文件       4111  2009-09-28 17:37  CUDABOF\CUDABOF\MemoryUtils.hpp

     文件       1294  2009-09-28 17:37  CUDABOF\CUDABOF\MathUtils.hpp

     文件       1439  2009-09-28 17:37  CUDABOF\CUDABOF\GaussianPyramidKernel.hpp

     文件       2697  2009-09-28 17:37  CUDABOF\CUDABOF\BayesianOpticalFlowKernels.hpp

     文件       3087  2009-09-28 17:37  CUDABOF\CUDABOF\Array.hpp

     文件       1575  2009-09-28 21:46  CUDABOF\CUDABOF\CUDABOF.hpp

............此处省略12个文件信息

评论

共有 条评论