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

搜索资源列表

  1. Hand-Detect 手势识别,使用OpenCV的haar 分类器

    1下载:
  2. 手势识别,使用OpenCV的haar 分类器。训练因为对各个环境不同,请大家自己下载或者自己训练样本。-Hand Recognition and Tracking using OpenCV. It uses Haar Classifier. Because Haar features are different, I did not include the .xml file, please download it online or train it yourself.
  3. 所属分类:OpenCV

    • 发布日期:2017-03-02
    • 文件大小:22484783
    • 提供者:赛义
  1. mouthdetection

    0下载:
  2. 此程式碼可以用來偵測人類嘴巴,使用opencv和visualc++2005去實作.-This code can be used to detect the human mouth, using opencv and visual c++ 2005 to implement
  3. 所属分类:OpenCV

    • 发布日期:2017-05-09
    • 文件大小:2509218
    • 提供者:cheng yun-ting
  1. OpenCV-coutours

    0下载:
  2. 这是一个用opencv编写的 用来检测物体轮廓的代码-This is a written with the opencv code used to detect the contour
  3. 所属分类:OpenCV

    • 发布日期:2017-05-14
    • 文件大小:3918635
    • 提供者:夏樾
  1. juxingjiance

    2下载:
  2. opencv矩形检测,采用金字塔方法,可以对多幅图同时检测。-opencv rectangle detection, using the pyramid method, can simultaneously detect pieces of map.
  3. 所属分类:OpenCV

    • 发布日期:2014-02-07
    • 文件大小:1520
    • 提供者:贾建辉
  1. chelianggengzongjiance

    0下载:
  2. 该程序利用OPENCV来获取视频帧,检测运动车辆和并跟踪,还带有AVI文件,效果很好,希望对大家有用-The procedure used to obtain the video frame OPENCV to detect and track moving vehicles, and also with the AVI files are very good, we want to be useful
  3. 所属分类:OpenCV

    • 发布日期:2017-05-13
    • 文件大小:3167546
    • 提供者:amao
  1. oopen

    0下载:
  2. 检测人体基于opencv,视频文件命名为show949_xvid.avi-body detect opencv
  3. 所属分类:OpenCV

    • 发布日期:2017-04-09
    • 文件大小:1721243
    • 提供者:shulin111
  1. blocktrack

    0下载:
  2. 该代码是基于opencv的运动检测代码,其主要思想是通过团块检测运动目标,然后跟踪识别运动目标。-The code is based on motion detection opencv code, the main idea is to detect moving objects by mass, and then track the moving target identification.
  3. 所属分类:OpenCV

    • 发布日期:2017-04-09
    • 文件大小:2053642
    • 提供者:陈汤
  1. OpenCV-PeopleDetect

    0下载:
  2. OpenCV people detect
  3. 所属分类:OpenCV

    • 发布日期:2017-03-24
    • 文件大小:356544
    • 提供者:xikao
  1. Corner_Detect

    0下载:
  2. 這是以 VC2008 為開發環境,用 OpenCV 語法寫的偵測物體角點 Corner Detect 的程式。-This is the VC2008 as the development environment, using the syntax written in OpenCV corner detection of objects Corner Detect program.
  3. 所属分类:OpenCV

    • 发布日期:2017-04-09
    • 文件大小:1464334
    • 提供者:王大帥
  1. harris-detect

    0下载:
  2. 基于openCV的Harris角点检测。开发环境vs2008-harris detector based on openCV.
  3. 所属分类:OpenCV

    • 发布日期:2017-05-18
    • 文件大小:5621251
    • 提供者:高永强
  1. FaceDetection3

    0下载:
  2. 用OPENCV 实现人脸的检测 ,可以是从摄像头输入,也可以是视频文件输入,还可以对图片检测。-OPENCV achieved with face detection, which can be imported from camera, video files can be imported, images can also detect.
  3. 所属分类:OpenCV

    • 发布日期:2017-05-14
    • 文件大小:3859149
    • 提供者:胡宗亮
  1. ground_detect

    0下载:
  2. 基于OpenCv的背景检测,先要建立背景模型,检测在背景下的物体。(用的是均值方差的方法建立背景模型)-Background detection based OpenCv to first build the background model to detect objects in the background. (Using a mean-variance method to establish the background model)
  3. 所属分类:OpenCV

    • 发布日期:2017-05-09
    • 文件大小:2255638
    • 提供者:nsp
  1. cvtiga

    0下载:
  2. OpenCV code + FLTK GUI for detect and mark line, box, or circle on any your browse picture-OpenCV code + FLTK GUI for detect and mark line, box, or circle on any your browse picture..
  3. 所属分类:OpenCV

    • 发布日期:2017-05-17
    • 文件大小:5007360
    • 提供者:hypotetian
  1. OPENCV-jiance-yudong-xitong-guiji

    0下载:
  2. 使用OPENCV检测运动系统的轨迹等参数-using openCV detect motion
  3. 所属分类:OpenCV

    • 发布日期:2017-05-16
    • 文件大小:4209124
    • 提供者:yizifeng
  1. RemoveBlackConnectedComponents

    0下载:
  2. 使用opencv去掉二值化图像中黑色面积较小的连通域。 程序中语句 tmparea = fabs(cvContourArea(contour)) 可以得到当前连通域的面积,当此面积小于阈值时对其填充为白色。 rect = cvBoundingRect(contour,0) 得到的是框住连通域的最小矩形,对矩形中的黑色部分将其填充为白色,但是这样的话,连通域6和4两个连通域被填充成了白色的矩形,这显然不符合我们的要求,这样就要判断此连通域是黑色联通域还是白色连通域,采用的方法是测试矩
  3. 所属分类:OpenCV

    • 发布日期:2017-03-26
    • 文件大小:1229
    • 提供者:
  1. svm-detect-paper

    0下载:
  2. svm分类检测算法研究,用到opencv相关库,是论文来的,希望能够对所需者有用-svm detect paper
  3. 所属分类:OpenCV

    • 发布日期:2017-04-02
    • 文件大小:533432
    • 提供者:毛渝南
  1. cvCornerHarris

    0下载:
  2. openCV cvCornerHarris function implementation. detect Harris edges. You may need to set different parameters according to your implementation.
  3. 所属分类:OpenCV

    • 发布日期:2017-03-29
    • 文件大小:1176
    • 提供者:Yang
  1. Detect-differences-in-frames

    0下载:
  2. Detect difference betwen two frames, for motion detection in Opencv
  3. 所属分类:OpenCV

    • 发布日期:2017-03-29
    • 文件大小:1543
    • 提供者:sergio
  1. opencv-face-master

    0下载:
  2. 这是一个基于opencv的人脸检测代码,可以在视频上检测到人脸(This is a opencv based face detection code, you can detect the face in the video)
  3. 所属分类:OpenCV

    • 发布日期:2017-12-26
    • 文件大小:2202624
    • 提供者:Dylanin1999
  1. python-opencv镜头直线检测

    1下载:
  2. 通过二值化2、边缘检测、霍夫变换检测摄像头拍摄到的直线。(Binarization 2, edge detection, and Hough transform detect the line taken by the camera.)
  3. 所属分类:OpenCV

    • 发布日期:2020-12-24
    • 文件大小:1024
    • 提供者:raintonight
« 12 3 4 5 6 7 8 9 10 »
搜珍网 www.dssz.com