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

搜索资源列表

  1. cvHull

    0下载:
  2. 基于OpenCV的最小凸包外接矩形程序,其中黄色的点为外接矩形的中心点-OpenCV package based on minimum convex bounding rectangle procedure, in which yellow rectangle center point for the external
  3. 所属分类:OpenCV

    • 发布日期:2017-03-26
    • 文件大小:1053
    • 提供者:Swai
  1. binaire

    0下载:
  2. a program of minimum area rectangle of an image
  3. 所属分类:OpenCV

    • 发布日期:2017-04-03
    • 文件大小:478298
    • 提供者:wassim
  1. Space_Filter

    0下载:
  2. Opencv写的空间滤波包括最大最小中值滤波等等,借鉴数字图像处理matlab版page117 的函数,几何平均,算术平均,调和平均,反调和平局,中值,中点等-Opencv write spatial filtering, including maximum and minimum median filtering, etc., drawing on digital image processing matlab version page117 function, geometric mean,
  3. 所属分类:OpenCV

    • 发布日期:2017-03-27
    • 文件大小:87393
    • 提供者:shlkl99
  1. minarea

    0下载:
  2. 这个程序演示了如何发现的最小外接盒或圆形的一个点集使用功能:minAreaRect()minEnclosingCircle()。-This program demonstrates finding the minimum enclosing box or circle of a set of points using functions: minAreaRect() minEnclosingCircle().
  3. 所属分类:OpenCV

    • 发布日期:2016-01-24
    • 文件大小:1024
    • 提供者:
  1. HW1

    0下载:
  2. 细胞图像分析 输出要求: 1. 该图像中的细胞数量; 2. 最大细胞的面积、周长(以像素为单位)方向该中心置; 3. 3. 最小细胞的面积、周长(以像素为单位)方向该中心置; 最小细胞的面积、周长(以像素为单位)方向该中心置; 最小细胞的面积、周长(以像素为单位)方向该中心置; 4. 4. 所有细胞的平均面积(以像素为单位);-Cell image analysis output requirements: 1.1 the number of cells in the i
  3. 所属分类:OpenCV

    • 发布日期:2017-11-19
    • 文件大小:858162
    • 提供者:sherry Ye
  1. Filter

    0下载:
  2. 用C++语言写的图像过滤,实现了中值过滤、最大值最小值过滤、均值过滤等,扩展性较好,能实现不同通道-With C++ language image filtering, to achieve a median filtering, maximum minimum filtering, mean filtering, scalability, better able to achieve different channels
  3. 所属分类:OpenCV

    • 发布日期:2017-04-01
    • 文件大小:102396
    • 提供者:Juangshen
  1. DrawRectangle

    0下载:
  2. VS2010中opencv实现自己画有角度的矩形,并用最小外接矩形算法,求矩形的几何信息,中心点,长宽,角度等-VS2010 in opencv realize their painting angled rectangle and use the minimum bounding rectangle algorithm, seeking a rectangular geometry, center, length and width, angle and so on. .
  3. 所属分类:OpenCV

    • 发布日期:2017-05-26
    • 文件大小:8720001
    • 提供者:邹普
  1. Medianblur-opencv

    0下载:
  2. 中值滤波选择每个邻域像素的中值输出; -截尾均值滤波是指去掉百分率为 的最小值和最大值;定义域滤波中沿着边界的数字是像素的距离;值域就是去掉值域外的像素值。-Median filter to select each neighborhood pixel values ​ ​ in the output - trimmed mean filter is the minimum and maximum percentage of the removed domain filte
  3. 所属分类:OpenCV

    • 发布日期:2017-05-17
    • 文件大小:4911354
    • 提供者:many
  1. MinEntropy

    0下载:
  2. 首先在0~180度方向上投影,计算每个角度上的投影图像的熵值,最小熵值对应的角度即为图像的光照无关角,然后获取图像的光照无关投影图像-光照无关图。-First, from 0 to 180 degrees in the direction of the projection, calculate the entropy of the projected image on every angle, the angle corresponding to the minimum entropy val
  3. 所属分类:OpenCV

    • 发布日期:2017-05-27
    • 文件大小:9663289
    • 提供者:陈文明
  1. Space_Filter

    0下载:
  2. OpenCV、空域滤波器(中值,均值,最大最小值...)-This code is designed for space filter and it is derived Digital Image Processing Matlab edition in page117 it has ArithmeticM_Filter for Arithmetic Mean Filtering GeometricM_Filter for Geometric Mean Filtering H
  3. 所属分类:OpenCV

    • 发布日期:2017-04-29
    • 文件大小:172092
    • 提供者:atie
  1. aaa

    0下载:
  2. 用于运动目标的检测,对目标进行二值化并提取目标的最小外接矩形,从而获取相关数据-The image data of consecutive frames graying binary and intercept the target minimum bounding rectangle to obtain the target
  3. 所属分类:OpenCV

    • 发布日期:2017-04-12
    • 文件大小:1251
    • 提供者:张子龙
  1. FindContour

    0下载:
  2. 找最小封闭轮廓图像,可以通过opencv中的函数来实现。-To find the minimum closed contour images, can be done by the function in the opencv.
  3. 所属分类:OpenCV

    • 发布日期:2017-04-30
    • 文件大小:217341
    • 提供者:
  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. canny

    0下载:
  2. Canny 的目标是找到一个最优的边缘检测算法,最优边缘检测的含义是: 好的检测- 算法能够尽可能多地标识出图像中的实际边缘。 好的定位- 标识出的边缘要尽可能与实际图像中的实际边缘尽可能接近。 最小响应- 图像中的边缘只能标识一次,并且可能存在的图像噪声不应标识为边缘。-Canny goal is to find an optimal edge detection algorithm, the optimal edge detection means: Good test- a
  3. 所属分类:OpenCV

    • 发布日期:2017-04-30
    • 文件大小:12649
    • 提供者:ZHENGJINGRANG
  1. ienu

    0下载:
  2. MATLAB实现0,618法近似计算函数的最小值(MATLAB approximate calculation function of the minimum 0618 method)
  3. 所属分类:OpenCV

    • 发布日期:2017-12-28
    • 文件大小:16384
    • 提供者:uuwon
搜珍网 www.dssz.com