CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 图形图象 OpenCV 搜索资源 - AS.c

搜索资源列表

  1. emgu-cv-2.3.0

    1下载:
  2. Emgu CV is a cross platform .Net wrapper to the Intel OpenCV image processing library. Allowing OpenCV functions to be called from .NET compatible languages such as C#, VB, VC++, IronPython etc. The wrapper can be compiled in Mono and run on Linux
  3. 所属分类:OpenCV

    • 发布日期:2017-10-30
    • 文件大小:43771904
    • 提供者:wing
  1. C_sharp

    0下载:
  2. 包括C#处理图像的一些基本功能,如二值化,灰度化,行程编码,压缩编码,区域增长,直方图等-Including C# some basic image processing functions, such as binary, gray, length encoding, compression, region growing, histogram, etc.
  3. 所属分类:OpenCV

    • 发布日期:2017-03-29
    • 文件大小:183737
    • 提供者:chen
  1. normxcorr2_mex_ALL

    1下载:
  2. 归一化互相关高速计算模块OpenCV工程,Daniel Eaton已将其生成Matlat Mex文件,比Matlab内建的normxcorr2()效率要高-Normalized cross-correlation of high-speed calculation module, Daniel Eaton have been wrapped the C++ code from OpenCV project and making it available as a MATLAB MEX-file,
  3. 所属分类:OpenCV

    • 发布日期:2017-03-22
    • 文件大小:584414
    • 提供者:MORGAN
  1. ORDER_LOGOS_VIDEO

    0下载:
  2. Using EmguCV (one of the powerful C# wrapper of OpenCV) this code locate logos onto webcam frames and save as avi video.
  3. 所属分类:OpenCV

    • 发布日期:2017-03-26
    • 文件大小:471770
    • 提供者:yamanalp
  1. mySift

    1下载:
  2. sift的C++版,在sift上找出鲁棒性最强的几个特征点,然后以这个点为圆心,以自适应性的尺度为半径画圆,这个非常适合运用于数字水印领域,适用于抵抗数字水印的几何攻击-sift the C++ version of the robustness of the sift to find the strongest on the number of feature points, and then to this point as the center of the scale of self-a
  3. 所属分类:OpenCV

    • 发布日期:2017-05-30
    • 文件大小:13123807
    • 提供者:房英明
  1. lucas-kanade

    0下载:
  2. 在图像中寻找同名像点,基于C++和opencv-Find the same name as the point in the pictur
  3. 所属分类:OpenCV

    • 发布日期:2017-04-09
    • 文件大小:1446868
    • 提供者:sun
  1. OpenCV-base

    0下载:
  2.  OpenCV提供的视觉处理算法非常丰富,并且它部分以C语言编写,加上其开源的特性,处理得当,不需要添加新的外部支持也可以完整的编译链接生成执行程序,所以很多人用它来做算法的移植,OpenCV的代码经过适当改写可以正常的运行在DSP系统和单片机系统中,目前这种移植在大学中经常作为相关专业本科生毕业设计或者研究生课题的选题。-OpenCV vision processing algorithms provide very rich, and it part of the C language, w
  3. 所属分类:OpenCV

    • 发布日期:2017-06-01
    • 文件大小:14002937
    • 提供者:liushiyi
  1. JMyron0025

    0下载:
  2. t’s a relatively easy thing for computers to “see” video, but “computer vision” goes a step further, applying a wide range of techniques by which computers can begin to understand and process the content of a video input. These techniques tend toward
  3. 所属分类:OpenCV

    • 发布日期:2017-03-31
    • 文件大小:208640
    • 提供者:Isuru
  1. LearningOpenCV_Code

    0下载:
  2. 《学习opencv》这本书的相应章节的源码,由于是1.0的版本,里面的代码都不是用C++实现的,而是用的类。只能作为入门,与类有关的还是还是上网看一些新鲜的吧~-Learning opencv " source of the corresponding chapter of this book, because it is version 1.0, code inside is not C++ achieve, but with class. Only as an entry with
  3. 所属分类:OpenCV

    • 发布日期:2017-11-15
    • 文件大小:21177344
    • 提供者:吴立彬
  1. EX1

    0下载:
  2.   1.用OpenCV实现打开一幅彩色图像,显示出来;   2.将其转换为灰度图并保存为文件;   3.将其二值化并保存为文件(二值化阈值最好用滚动条交互式输入,图像二 值化效果能实时变化更好,可参考OpenCV的sample程序edge.c)-1 using OpenCV open a color image display 2 converted to grayscale and saved as a file 3 the second value and save
  3. 所属分类:OpenCV

    • 发布日期:2017-11-16
    • 文件大小:1924525
    • 提供者:戴佳毅
  1. onling_tracker

    0下载:
  2. 采用在线学习跟踪方式,对物体进行跟踪,代码用c++编写,库用的Opencv库,程序中包括了3个.h,3个.cpp,一个.main程序。-We have added two new state-of-the-art object tracking algorithms to OpenCV which can robustly track images patches across a video sequence and learn online (i.e., on-the-fly) as the
  3. 所属分类:OpenCV

    • 发布日期:2017-11-07
    • 文件大小:16510782
    • 提供者:liyulong
  1. MeanShift-Kalman-tracking-algorithm

    0下载:
  2. 结合kalman滤波的meanshift跟踪算法,meanshift算法是一种经典的均值漂移跟踪算法,采用颜色直方图作为跟踪特征,具有很高的稳定性和鲁棒性,kalman滤波是一种线性滤波预测算法。在meanshift算法中引入kalman滤波,可以提高算法的稳定性,同时提高算法执行效率。代码中除了avi格式视频读取采用opencv库函数外,核心算法均为纯C++实现,注释详细,很容易理解,同时具有很高的参考价值。 -Meanshift kalman filtering combined track
  3. 所属分类:OpenCV

    • 发布日期:2017-03-26
    • 文件大小:14885
    • 提供者:roc
  1. mexopencv-master

    0下载:
  2. Collection and a development kit of MATLAB MEX functions for OpenCV library The package provides MATLAB MEX functions that interface a hundred of OpenCV APIs. Also the package contains C++ class that converts between MATLAB s native data type a
  3. 所属分类:OpenCV

    • 发布日期:2017-04-09
    • 文件大小:1727617
    • 提供者:samuraiguy81
  1. zhifangtu

    0下载:
  2. 用c++实现的直方图的计算和显示,以及直方图均衡化,其中计算直方图和均衡化使用c++代码实现,非调用OPENCV函数。-Achieved with c++ histogram calculated and displayed, as well as histogram equalization, histogram and equalization calculations which use c++ code, non-call OPENCV function.
  3. 所属分类:OpenCV

    • 发布日期:2017-05-25
    • 文件大小:8299034
    • 提供者:苟富
  1. guidedfilter

    0下载:
  2. kaiming he的guided image filtering的c++代码,利用VS2010+OPENCV2.4.4实现,效果和公布的MATLAB代码相同。-C++ code for KaiMing He s guided image filtering, the result as same as matlab code which publish in the web, project is code via VS2010+OPENCV2.4.4.
  3. 所属分类:OpenCV

    • 发布日期:2014-02-08
    • 文件大小:4342002
    • 提供者:jj
  1. FaceRecognition_CNN(olivettifaces)

    2下载:
  2. 智能图像/视频处理中,复杂背景环境(比如室外环境、机场、车站等)下,人脸识别的第一步是人脸的检测。它的精确度直接影响到后期识别的结果。不过,领域内的科学家们基本上很难有足够的精力和时间开发优化的C++代码,使其用于商业用途,而一般都是只在Matlab中进行模拟。 本文的目的是提供一个我开发的SSE优化的,C++库,用于人脸检测,你可以马上把它用于你的视频监控系统中。文章中的分类器的训练数据来自与我的 webcam图像,它们被采集于不同时间,不同光照,不同背景环境下,它几乎可以实时地检测
  3. 所属分类:OpenCV

    • 发布日期:2017-06-02
    • 文件大小:15348854
    • 提供者:周文活
  1. HarrisCorner

    3下载:
  2. 对输入的一张彩色图像,自己写代码实现Harris Corner 检测算法: 1. 不能直接调用OpenCV 里面与Harris 角点检测相关的一些函数; 2. 只能用C/C++,不能用其他语言; 3. GUI 只能用自带的HighGUI,不能用QT 或其他的; 4. 平台可以用Windows, Linux, MacOS; 5. 显示中间的处理结果及最终的检测结果,包括最大特征值图,最小特征值图,R 图(可以考虑彩色 展示),原图上叠加检测结果等,并将这些中间结果都输出成图
  3. 所属分类:OpenCV

    • 发布日期:2016-11-30
    • 文件大小:504832
    • 提供者:qian
  1. 61IC_H4848

    0下载:
  2. 以设计一个实时的人体检测与跟踪系统为目的, 从实际出发, 以O p en C V 为工具... 在满足了识别要求的前提下, 大大提高了识别的速度, 再一次提升了系统的实时性基于opencv的人体动作的识别,可以对视频中的人体动作进行分类处-Next in order to design a real-time human detection and tracking system for the purpose of proceeding reality to O p en CV as a t
  3. 所属分类:OpenCV

    • 发布日期:2017-05-03
    • 文件大小:631068
    • 提供者:刘云鹤
  1. abnormal_detection

    0下载:
  2. 由c++和opencv,利用运动人体外接矩形的长宽比来检测人体异常行为的发货谁能,如摔倒和下蹲- Using the human body to connect the rectangular aspect ratio to detect abnormal behavior of the human body who can ship, such as fall and squatting
  3. 所属分类:OpenCV

    • 发布日期:2017-05-19
    • 文件大小:5534799
    • 提供者:毛线
  1. HOGCompute

    0下载:
  2. 根据2005年Dalal提出HOG特征计算原理,自己编写了HOG特征提取算法,此特征可以用于目标检测中,包括行人检测,采用编程语言为C++,采用视觉库为opencv(According to the principle of HOG feature calculation proposed by Dalal in 2005, HOG feature extraction algorithm has been compiled. This feature can be used in object
  3. 所属分类:OpenCV

    • 发布日期:2017-12-25
    • 文件大小:7741440
    • 提供者:zouwit
« 12 »
搜珍网 www.dssz.com