博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
纹理分析
阅读量:7200 次
发布时间:2019-06-29

本文共 1773 字,大约阅读时间需要 5 分钟。

目录

纹理分析

纹理(Texture)

局部不规则而宏观有规律。

  1. 纹理基元
  2. 纹理基元的排列组合

统计法(Statistical approches)

利用纹理在空间上的灰度分布特性,从纹理图像中计算出一些在某个区域内或区域间边界处保持相对平稳的特征值,以此特征值来表示区域内的一致性以及区域间的相异性。

灰度分布统计

\(z\) : a random variable denoting intensity

\(p(z_i), i = 0,1,2,...,L - 1\) : the corresponding histogram 第 \(i\) 个灰度值 \(z_i\) 出现的频度

  • the \(p\)s have values in the range [0,1]
  • sum equals 1

\(L\) : the number of distinct intensity levels 图像的灰度级

the \(n\)th moment of \(z\) about the mean:

\[ \mu_n(z) = \sum_{i=0}^{L - 1}(z_i - m)^n p(z_i)\\ \mu_0 = 1\\ \mu_1 = 0 \]

  1. 均值(mean value of \(z\), the average intensity) : \(m = \sum_{i=0}^{L-1} z_{i} p(z_i)\)
  2. 标准差(the variance) : \(\sigma^2 = \mu_2(z)\)
    • important in texture description
    • a measure of intensity contrast
    • establish descriptors of relative smoothness
  3. 平滑度(normalized) : \(R(z) = 1 - \frac{1}{1 + \sigma^2(z)}\)
  4. 三阶矩(the third moment) : \(\mu_3= \sum_{i=0}^{L - 1} p^2(z_i)\)
    • a measure of the skewness of the histogram
  5. 一致性(uniformity) : \(U = \sum_{i=0}^{L - 1} p^2(z_i)\)
    • maximum for an image which all intensity levels are equal (maximally uniform), and decreases from there
  6. 熵(average entropy) : \(e(z) = - \sum_{i=0}^{L - 1} p(z_i) \log_{2} p(z_i)\)
    • a measure of variability
    • 0 for a constant image
clear;close all; %清除MATLAB所有变量

灰度共生矩阵(Co-occurrence matrix)

\(\mathcal{Q}\) : an operator that defines the position of two pixels relative to each other

\(f\) : an image

\(L\) : possible intensity levels

\(G\) : a matrix whose element \(g_{ij}\) is the number of times that pixel pairs with intensities \(z_i\) and \(z_j\) occur in \(f\) in the position specified by \(Q\), where \(i \leq i, j \leq L\).

  • gray-level (or intensity) co-occurrence matrix
  • G : co-oocurrence matrix

自相关函数

结构法(Structural methods)

转载于:https://www.cnblogs.com/KresnikShi/p/10656738.html

你可能感兴趣的文章
【Oracle Database】Oracle RAC(二):DNS
查看>>
React Component 与事件绑定
查看>>
连载21:软件体系设计新方向:数学抽象、设计模式、系统架构与方案设计(简化版)(袁晓河著)...
查看>>
MariaDB-MMM高可用群集
查看>>
微信报名系统究竟有什么优势?
查看>>
4-思科防火墙:访问控制列表:基本ACL
查看>>
基于GNS3思科路由器实现的静态路由
查看>>
关于shareinstall“不准”的几个问题解答
查看>>
SpringMVC框架搭建环境
查看>>
Redis缓存穿透、缓存雪崩、redis并发问题分析
查看>>
CNPM 的基础部署方法介绍
查看>>
重磅 | Sentinel 发布0.2.0,异步调用支持、热点参数限流等成产品新亮点
查看>>
一个新手程序员 2019 的九大尴尬瞬间
查看>>
浅谈:如何创建并管理ESXi网络
查看>>
【作业】将2台交换机分别连接2台PC机,设置不同vlan,实现不同vlan之间互通
查看>>
Hadoop集群从180到1500,携程大数据实践之路
查看>>
轻量级java web实践-8(框架源码-6)
查看>>
加一度简答SEM竞价推广中遇到的4大难题
查看>>
死磕 java并发包之AtomicStampedReference源码分析(ABA问题详解)
查看>>
数据结构——链表
查看>>