
matlab
qq_36332685
这个作者很懒,什么都没留下…
展开
-
Matlab的regionprops详解 连通区域
matlab函数_连通区域 1、 matlab函数bwareaopen──删除小面积对象 格式:BW2 = bwareaopen(BW,P,conn) 作用:删除二值图像BW中面积小于P的对象,默认情况下使用8邻域。 算法: (1)Determine the connected components. L = bwlabeln(BW, conn); (2)Compute the转载 2017-11-20 16:47:20 · 4110 阅读 · 0 评论 -
matlab知识点
flipud函数 实现矩阵的上下翻转。如:flipud(A)实现了矩阵A的上下翻转。 解释:其实flipud函数中的最后两个字母ud就是英文中up(上)和down(下)。 例:A = 1 4 2 5 3 6 那么:flipud(A) = 3 6 2 5 1 4 fliplr函数 实现矩阵的左右翻转。如:flipud(A)实现了矩阵A的上下翻转。 解释:其实fliplr函数中原创 2017-11-15 16:32:29 · 697 阅读 · 0 评论 -
MATLAB getframe用法
F =getframe(h,rect) specifies arectangular area from which to copy the pixmap. rect is relativeto the lower left corner of the figure or axes h, in pixelunits. rect is a four-element vector in the转载 2017-11-21 22:48:10 · 886 阅读 · 0 评论 -
MATLAB实现的车牌定位系统
MATLAB实现的车牌定位系统 看完《数字图像处理后》,做的图像识别的入门级项目,代码在: https://github.com/zhoulukuan/Plate-Location ,论文都可以在知网里找到,我就不贴了。具体项目的一些简介可以看github,大致上讲,可以分为颜色检测、区域操作、车牌检测算法和夜晚下的Retinex算法四个环节。 颜色检测 选用颜色检测的好处是在于定位比较转载 2017-11-25 10:25:32 · 2952 阅读 · 0 评论