登录
首页 » Visual C++ » detect_mybayes

detect_mybayes

于 2021-04-11 发布 文件大小:7605KB
0 76
下载积分: 1 下载次数: 128

代码说明:

  vc++ opencv 阴影检测和去除 正确率高(vc++ opencv shadow detection and removal of the correct rate)

文件列表:

detect_mybayes
..............\detect_mybayes
..............\..............\data
..............\..............\....\新建文件夹
..............\..............\....\..........\chr
..............\..............\....\..........\geo
..............\..............\....\..........\lrTex
..............\..............\....\..........\phy
..............\..............\....\..........\srTex
..............\..............\detect_mybayes.aps,17872,2011-12-26
..............\..............\detect_mybayes.cpp,2553,2011-12-26
..............\..............\detect_mybayes.rc,2446,2011-12-26
..............\..............\detect_mybayes.vcxproj,6473,2011-12-26
..............\..............\detect_mybayes.vcxproj.filters,5070,2011-12-26
..............\..............\detect_mybayes.vcxproj.user,143,2011-10-27
..............\..............\mybayes.h,20786,2011-12-26
..............\..............\openFile.h,859,2011-12-26
..............\..............\ReadMe.txt,1602,2011-10-27
..............\..............\remove_shadow
..............\..............\.............\ChromacityShadRem.cpp,3090,2011-12-26
..............\..............\.............\ChromacityShadRem.h,738,2011-12-26
..............\..............\.............\ChromacityShadRemParams.cpp,290,2011-12-26
..............\..............\.............\ChromacityShadRemParams.h,319,2011-12-26
..............\..............\.............\GeometryShadRem.cpp,14499,2011-12-26
..............\..............\.............\GeometryShadRem.h,1820,2011-12-26
..............\..............\.............\GeometryShadRemParams.cpp,865,2011-12-26
..............\..............\.............\GeometryShadRemParams.h,474,2011-12-26
..............\..............\.............\LrTextureShadRem.cpp,14083,2011-12-26
..............\..............\.............\LrTextureShadRem.h,2608,2011-07-27
..............\..............\.............\LrTextureShadRemParams.cpp,987,2011-12-26
..............\..............\.............\LrTextureShadRemParams.h,1500,2011-07-27
..............\..............\.............\PhysicalShadRem.cpp,6951,2011-12-26
..............\..............\.............\PhysicalShadRem.h,2012,2011-07-27
..............\..............\.............\PhysicalShadRemParams.cpp,1087,2011-12-26
..............\..............\.............\PhysicalShadRemParams.h,1169,2011-07-27
..............\..............\.............\SrTextureShadRem.cpp,2931,2011-12-26
..............\..............\.............\SrTextureShadRem.h,1230,2011-12-26
..............\..............\.............\SrTextureShadRemParams.cpp,1341,2011-12-26
..............\..............\.............\SrTextureShadRemParams.h,517,2011-12-26
..............\..............\.............\utils
..............\..............\.............\.....\ConnComp.cpp,949,2011-12-26
..............\..............\.............\.....\ConnComp.h,574,2011-12-26
..............\..............\.............\.....\ConnCompGroup.cpp,2623,2011-12-26
..............\..............\.............\.....\ConnCompGroup.h,670,2011-12-26
..............\..............\.............\.....\GaborFilter.cpp,6169,2011-12-26
..............\..............\.............\.....\GaborFilter.h,928,2011-12-26
..............\..............\.............\.....\GaussianMixtureModel.cpp,18426,2011-12-26
..............\..............\.............\.....\GaussianMixtureModel.h,2398,2011-07-27
..............\..............\remove_shadows.h,2067,2012-05-23
..............\..............\resource.h,393,2011-12-26
..............\..............\stdafx.cpp,219,2011-10-27
..............\..............\stdafx.h,251,2011-12-23
..............\..............\targetver.h,236,2011-10-27
..............\detect_mybayes.sdf,36917248,2011-12-26
..............\detect_mybayes.sln,909,2011-10-27

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • Arm_Isp
    说明:  ISP 界面设计尚未完善其功能,可以下载后完善(ISP interface design has not been perfect its functions can download perfect)
    2006-03-03 16:00:16下载
    积分:1
  • niudunfa
    数值计算法,牛顿法求解非线性方程,适用于VC6.0(Numerical calculation method, Newton' s method for solving nonlinear equations for VC6.0)
    2016-01-25 10:12:41下载
    积分:1
  • 123
    csv文件读取和存储,可用于显示在QT建的表格中(csv file is read and stored, can be used to display the built form QT)
    2020-11-02 19:29:56下载
    积分:1
  • process_attemper
    1、 :编写并调试一个模拟的进程调度程序,采用“最高优先数优先”调度算法对进程进行调度。 “最高优先数优先调度算法的基本思想是把CPU分配给就绪队列中优先数最高的进程。尝试静态优先数与动态优先数两种方法: a) 静态优先数是指优先数在整个进程运行期间不再改变。优先数可以在数据输入时指定,也可以根据到达顺序、运行时间确定。 b) 动态优先数是指进程的优先数在创建进程时可以给定一个初始值,并且可以按一定原则修改优先数。例如进程获得一次CPU后就将其优先数减少1。或者进程等待的时间超过某一时限时增加其优先数的值。 2、 编写并调试一个模拟的进程调度程序,模拟实现多级反馈队列调度算法。 3、 编写并调试一个模拟的进程调度程序,模拟实现最低松弛度优先算法。 4、 程序与报告要求: a) 对上述要求1、2、3,至少要完成一项,鼓励尝试多种算法。 b) 输出结果要尽量详细清晰,能够反映调度后队列变化,PCB内部变化。 c) 可以选择在Windows或Linux环境下编写、运行程序 d) 鼓励使用不同的开发工具在不同平台环境上进行开发比较。 e) 在实验报告中,一方面可以对实验结果进行分析,一方面可以对各种算法进行比较,分析它们的优劣,说明各种算法适用于哪些情况下的调度。 (1 : Prepare a simulation and debugging process scheduling procedures, "Priority number of the highest priority" to the process of scheduling algorithms for scheduling. "Highest priority priority scheduling algorithm for the basic idea is to place the CPU allocated to the priority queue highest process. Taste Examination several static and dynamic priority priority number two methods : a) static priority number is priority number in operation during the entire process will not change. priority number in the designated input data, can be reached under the order, running time determine. b) dynamic priority number refers to several priorities for the process of the creation process can be given an initial value, and according to the principle of amending certain priority number.)
    2007-07-04 12:57:51下载
    积分:1
  • ztblsdisplaysimulation
    通过GLSTUDIO设计 飞机屏显仿真界面,并用国外VAPS制作的仿真界面进行对比。(GLSTUDIO simulation of the flight through the OSD interface, and use of foreign VAPS simulation interface for making comparisons.)
    2020-09-15 20:37:56下载
    积分:1
  • atmega8ledtest
    测试程序ATMEGA8LED的灯亮和灯灭(Test ATMEGA8LED lights turn on and off)
    2013-10-16 20:51:13下载
    积分:1
  • femcode
    fem code with matlab
    2010-04-22 02:19:26下载
    积分:1
  • BlueTest
    界面使用C#开发,底层使用C++开发的无线电脑锁软件。采用蓝牙通信协议控制。(Interface using C# development, the underlying wireless computer lock software use C++ developed. Bluetooth communication protocol control.)
    2012-06-07 14:58:10下载
    积分:1
  • UDF控制柔性振动膜的动网格问题
    动网格,DEFINE_CG_MOTION,DEFINE_GRID_MOTION,很好的模板(dynamic mesh good template)
    2017-09-12 22:05:56下载
    积分:1
  • kongjianfenxishili
    mapgis二次开发空间分析员程序代码可供二次开发人员参考(MAPGIS secondary development of space analyst program code for the secondary development of reference)
    2007-11-27 00:28:55下载
    积分:1
  • 696518资源总数
  • 104271会员总数
  • 57今日下载