当前位置: 首页 > wzjs >正文

古玩网站源码wordpress 一键 样式

古玩网站源码,wordpress 一键 样式,深圳公司注册官网,哪个网站可以做结婚证目录 Blob分析的基本思想: Blob分析主要流程: Blob分析 分割: Binary Threshold 分割: Histogram 分割: 动态阈值 全局阈值与动态局部阈值的比较 形态学处理 连通区域 connetion 形态学算子 特征提取 提取特征 常用相关算子 区域特征&#…

目录

Blob分析的基本思想:

Blob分析主要流程:

Blob分析

分割: Binary Threshold

分割: Histogram

分割: 动态阈值

全局阈值与动态局部阈值的比较

形态学处理

连通区域 connetion

形态学算子

特征提取

提取特征 常用相关算子

区域特征: rectangularity


Blob分析的基本思想:

图像中相关联物体(前景)的像素可以通过其灰度值来标

Blob分析主要流程:

获取图像、分割图像、提取特征
一个简单的例子(非常理想的情况)
read_image (Image, ’particle’)
threshold (Image, BrightPixels, 120, 255)
connection (BrightPixels, Particles)
area_center (Particles, Area, Row, Column)

Blob分析

threshold 定义
threshold 算子 速度最快使用频率最高的分 割算法 如果目标体与背景之间存在灰度差,则 threshold 首先被 使用 如果环境稳定,阈值可在离线状态下一次确定

分割: Binary Threshold

自动地全局阈值的方法
多次平滑直方图
寻找峰值
峰谷作为阈值
bin_threshold (Image, Region)

分割: Histogram

自动地全局阈值的方法
统计直方图
寻找出现频率最高的灰度值
把比最高灰度值小一定灰阶值的灰度值作为阈值
gray_histo (Image, Image, AbsoluteHisto,
RelativeHisto)
PeakGray := sort_index(AbsoluteHisto)[255]
threshold (Image, Region, 0, PeakGray-25)

分割: 动态阈值

动态阈值分割
很多情况下由于背景不均一,无
法确定全局阈值
目标体经常表现为比背景局部亮
一些或暗一些
需要通过其邻域找到一个合适的
阈值进行分割
如何确定其邻域?
可以通过一些平滑滤波算子来确
定邻域,例如 mean_image
binomial_filter
动态阈值分割,其中S为平滑后的输入图像
 
x y R g x y s x y t

全局阈值与动态局部阈值的比较

动态局部阈值
通过均值滤波确定邻域
滤波器mask尺寸大于字符笔画的宽度
选择所有比其邻域暗的像素
mean_image (Image, ImageMean, 21, 21)
dyn_threshold (Image, ImageMean,
Region, 15, 'dark')
watersheds_threshold 函数
方法
使用传统的 watersheds 算法
通过阈值合并盆地 :
W
B 1
B 2
max( W B 1 , W B 2 ) Threshold

形态学处理

分割之后,往往需要对区域做进一步处理才能满足要求
常用形态学相关算子
connection, select_shape, opening_circle, closing_circle,
opening_rectangle1, closing_rectangle1, difference,
intersection, union1, shaps_trans, fill_up
高级算子
boundary, skeleton

连通区域 connetion

阈值分割后,需要提取目标物体,为了提取目标物体不得不先找到连通区域
提取连通域的关键是领域搜索的类型
所有的案例中 8 领域法是默认的

形态学算子

任意的结构元素
任意尺寸的结构元素
非常有效的处理
巨大的算子集合 : 44 个算子
经典算子
Erosion, dilation, opening, closing
高级算子
top-hat, bottom-hat, hit-or-miss, boundary
特殊算子
Fitting, pruning, thickening, thinning, skeleton
定义
Operator
union1 : Union of all regions in one variable
union2 : Unify all regions in the second parameter with each region in the first
parameter
Usage
Generate regions by combining primitive shapes
Combine segmentation results
Definition
Operator
intersection : Intersect each region of the first parameter with the union of
all regions of the second parameter
Usage
Generate regions by combining primitive shape
Use as a result those points where two methods return pixels
Operator
difference : Subtract from all regions of the first parameter the union of all
regions of the second parameter
Usage
Generate regions by combining primitive shape
Use as a result those points where one method but not the other one returns
pixels
Operator
complement : Calculate the complement of each input region
Usage
Use as a result those pixels which are not part of the segmentation
Note: with set_system the behavior can be controlled
'clip_region' on: the difference with the maximum image size is calculated
'clip_region' off: only the smart complement is applied

特征提取

特征描述了区域的特有属性
区域特征 ( 形状特征 ) 描述了区域的几何特征,这些特征不依赖
于灰度值
用途:
分割后,通过特征提取选择出所需的目标物体
区域分类 , 比如 OCR
测量
质量检测

提取特征 常用相关算子

area_center, smallest_rectangle1, smallest_rectangle2,
compactness, eccentricity, elliptic_axis, area_center_gray,
intensity, min_max_gray
Region Feature: Moments
区域特征 : 更多特征
smallest_circle :
Convexity( 凸状性 ) : 区域面积和凸形外轮廓的比例
Contlength( 长度 ) : 区域边界长度
Compactness( 紧密度 ) :

区域特征: rectangularity

除了圆形和椭圆形外,长方形是一种典型的形状
典型的形状特征比如比如 roundness, circularity, 或者 compactness 不适用于
选择长方形
输入区域
等价长方形
difference
select_shape( Regions : SelectedRegions : Features , Operation , Min , Max : )
read_image(Image,'monkey')
threshold(Image,S1,160,255) connection(S1,S2)
select_shape(S2,Eyes,['area','anisometry'],'and',[500,1.0],[50000,1.7])
disp_region(Eyes,WindowHandle)

文章转载自:

http://vwok4RsM.ppfxg.cn
http://WTL6qSBs.ppfxg.cn
http://xv2ml9cA.ppfxg.cn
http://rKfMyqZB.ppfxg.cn
http://bCQoKIUN.ppfxg.cn
http://YKCpAGrg.ppfxg.cn
http://axWyKQML.ppfxg.cn
http://qSrHPFyR.ppfxg.cn
http://CUisVqHV.ppfxg.cn
http://dIAyr0Ek.ppfxg.cn
http://wvdZ88Cf.ppfxg.cn
http://BDidGGmu.ppfxg.cn
http://Bx7iiHyP.ppfxg.cn
http://BDD9EMnW.ppfxg.cn
http://bntyHLLc.ppfxg.cn
http://6bnYpHPe.ppfxg.cn
http://trrOjd8s.ppfxg.cn
http://Xda6P4yj.ppfxg.cn
http://CWuBHtRg.ppfxg.cn
http://HTfeD22w.ppfxg.cn
http://ADDfCmVa.ppfxg.cn
http://OiRkKlSw.ppfxg.cn
http://EX5WDBlq.ppfxg.cn
http://t8IXiGOU.ppfxg.cn
http://dtW80Cvl.ppfxg.cn
http://w9ZcLxvA.ppfxg.cn
http://LqweWZkI.ppfxg.cn
http://GdbKPgBh.ppfxg.cn
http://2Wwj7Wbi.ppfxg.cn
http://LfYUZKh4.ppfxg.cn
http://www.dtcms.com/wzjs/602481.html

相关文章:

  • 国外做游戏评测的视频网站有哪些西部数码网站管理助手 绑定域名
  • 网站工程和网络工程有什么区别企业查查app下载
  • 可以建公司网站网站品牌建设
  • 怎么用手机制作手机网站中国114建材网
  • 东莞网站建设企业网站制作公司中
  • 做ppt做好的网站为什么两学一做进不去网站
  • 竹子建站加盟咨询深圳东门属于哪个区
  • 网站主页与导航栏的设计做数学题好的网站
  • 惠州酒店网站建设森普网站建设
  • 在线教育网站开发实例互联网保险的发展
  • 广州制作网站哪家专业营销策划咨询公司
  • 新闻发布系统网站模板百度域名查询
  • 电脑系统做的好的网站好公众号怎么制作合集
  • 哪个网站有淘宝做图的素材wordpress 4.0 安装
  • 建设音乐网站功能定位网站建设分金手指专业二七
  • 使用模板怎么建站wordpress模板网站模板
  • 公司网站如何建立2023二级建造师报名官网入口
  • 福州网站微信公众号建设电子商务网站步骤
  • 软件开发可以做网站么网站提供的服务
  • 如何做信用网站截图怎么制作一份自己的简历
  • 上海专业的网站建设公司哪家好动漫网站策划书
  • 推荐聊城做网站公司做网站费用怎么记账
  • 商城网站怎么做内链seo教程网
  • 中国建设银行网站会员可以改名网站建设的可用性
  • 网站开发好后要做什么在线培训系统搭建方案
  • 交易网站制度建设百度搜索引擎广告位的投放
  • 百度云电脑版网站入口济南智能网站建设电话
  • 网站设计详细设计找施工员在哪个网站上找
  • 广州专业的网站开发公司wordpress音乐代码
  • 东莞市专注网站建设平台西安市做网站公司有哪些