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

修文县生态文明建设局网站淄博seo怎么选择

修文县生态文明建设局网站,淄博seo怎么选择,建设网站的实验目的,公司网站做的一样算不算侵权6目录 1.算法运行效果图预览 2.算法运行软件版本 3.部分核心程序 4.算法理论概述 4.1、WTMM算法概述 4.2、WTMM算法原理 4.2.1 二维小波变换 4.2.2 模极大值检测 4.2.3 多重分形谱计算 5.算法完整程序工程 1.算法运行效果图预览 2.算法运行软件版本 matlab2022a 3.部…

目录

1.算法运行效果图预览

2.算法运行软件版本

3.部分核心程序

4.算法理论概述

4.1、WTMM算法概述

4.2、WTMM算法原理

4.2.1 二维小波变换

4.2.2 模极大值检测

4.2.3 多重分形谱计算

5.算法完整程序工程


1.算法运行效果图预览

2.算法运行软件版本

matlab2022a

3.部分核心程序

.........................................................................
%%
%对保存的多张图片读取并调用WTMM方法求图像的多重分形谱,对得到的结果保存其特征值
if sel == 1k = 1;for i=1:2*n1*n2;if i<=n1*n2k      = i;folder = 'save_images\1\';lists  = dir('save_images\1\*.jpg');        endif i<=2*n1*n2 & i>n1*n2k      = i - n1*n2;folder = 'save_images\2\';lists  = dir('save_images\2\*.jpg');        end        i%read an imageI                               = imread(fullfile(folder,lists(k).name));%调用分形函数[qt,rt,ft,fft,Dt,feature_data]  = func_Wavelet_multifractal(I);q{i}                            = qt;r{i}                            = rt;    f{i}                            = ft;   ff{i}                           = fft;   D{i}                            = Dt;Feature{i}                      = feature_data;endsave result.mat q r f ff D FeatureK = 120;figure;plot(r{K},f{K},'-r>',...'LineWidth',1,...'MarkerSize',6,...'MarkerEdgeColor','k',...'MarkerFaceColor',[0.9,0.9,0.0]);xlabel('奇异指数a');ylabel('多重分行谱f(a)') grid on;figure;plot(q{K}+2,D{K},'-r>',...'LineWidth',1,...'MarkerSize',6,...'MarkerEdgeColor','k',...'MarkerFaceColor',[0.9,0.9,0.0]);xlabel('q');ylabel('D(q)') grid on;figureplot(q{K},r{K},'-r>',...'LineWidth',1,...'MarkerSize',6,...'MarkerEdgeColor','k',...'MarkerFaceColor',[0.9,0.9,0.0]);title('q和阿尔法a'); xlabel('权重因子q');ylabel('奇异指数a');grid on;figure;plot(q{K},f{K},'-r>',...'LineWidth',1,...'MarkerSize',6,...'MarkerEdgeColor','k',...'MarkerFaceColor',[0.9,0.9,0.0]);title('q和f(a) '); xlabel('权重因子q');ylabel('多重分行谱f(a)'); grid on;
end %%
%调用分类器对特征参数进行分类
if sel == 0load result.mat %q r f ff FeatureK = 120;figure;plot(r{K},f{K},'-r>',...'LineWidth',1,...'MarkerSize',6,...'MarkerEdgeColor','k',...'MarkerFaceColor',[0.9,0.9,0.0]);xlabel('奇异指数a');ylabel('多重分行谱f(a)') grid on;figure;plot(q{K}+2,D{K},'-r>',...'LineWidth',1,...'MarkerSize',6,...'MarkerEdgeColor','k',...'MarkerFaceColor',[0.9,0.9,0.0]);xlabel('q');ylabel('D(q)') grid on;figureplot(q{K},r{K},'-r>',...'LineWidth',1,...'MarkerSize',6,...'MarkerEdgeColor','k',...'MarkerFaceColor',[0.9,0.9,0.0]);title('q和阿尔法a'); xlabel('权重因子q');ylabel('奇异指数a');grid on;figure;plot(q{K},f{K},'-r>',...'LineWidth',1,...'MarkerSize',6,...'MarkerEdgeColor','k',...'MarkerFaceColor',[0.9,0.9,0.0]);title('q和f(a) '); xlabel('权重因子q');ylabel('多重分行谱f(a)'); grid on;   for i = 1:length(Feature)P(i) =  Feature{i}(3);end T =  [1*ones(1,length(Feature)/2),2*ones(1,length(Feature)/2)];t1                      = clock;                              %计时开始net                     = fitnet(65);net.trainParam.epochs   = 1000;                               %设置训练次数net.trainParam.goal     = 0.0001;                             %设置性能函数net.trainParam.show     = 1;                                  %每10显示net.trainParam.Ir       = 0.005;                              %设置学习速率net                     = train(net,P,T);                     %训练BP网络datat                   = etime(clock,t1);Nets                    = net;view(Nets);figure;plot(P,'b-*');y = sim(net,P);  figure;stem(y,'-bs',...'LineWidth',1,...'MarkerSize',6,...'MarkerEdgeColor','k',...'MarkerFaceColor',[0.9,0.0,0.0]);hold onplot(T,'-mo',...'LineWidth',1,...'MarkerSize',6,...'MarkerEdgeColor','k',...'MarkerFaceColor',[0.5,0.9,0.0]);hold onlegend('预测数据','实际数据');title('输出1为第一类,输出2为第二类(即可对比实际的健康部分和肿瘤部分)');disp('预测正确率');error = 0;for i = 1:length(y)if i <= length(y)/2 if y(i) > 1.5error = error + 1;endelseif y(i) < 1.5error = error + 1;end          endend1-error/length(y)
end
17_003m

4.算法理论概述

        基于WTMM算法的图像多重分形谱计算是一种利用小波变换模极大值(WTMM)方法,对图像进行多重分形分析的方法。下面将详细介绍这种方法的原理和数学公式。

4.1、WTMM算法概述

       分形理论是一种研究自然界中不规则、复杂现象的数学工具,而多重分形则是分形理论的一个重要分支,用于描述具有不同奇异程度的分形结构。在图像处理中,多重分形分析可以帮助我们更好地理解图像的纹理、边缘等特征,以及它们在不同尺度下的表现。

       WTMM算法是一种基于小波变换模极大值的方法,用于计算图像的多重分形谱。该方法主要利用小波变换对图像进行多尺度分解,提取出图像在不同尺度下的边缘信息。然后,通过对这些边缘信息进行统计分析,计算出图像的多重分形谱。

具体来说,WTMM算法的计算步骤如下:

  1. 对图像进行二维小波变换,得到一系列小波系数。
  2. 对每个尺度下的小波系数进行模极大值检测,提取出图像的边缘信息。
  3. 对提取出的边缘信息进行统计分析,计算出图像的多重分形谱。

4.2、WTMM算法原理

WTMM算法的数学公式主要包括以下几个部分:

4.2.1 二维小波变换

       对图像f(x,y)进行二维小波变换,可以得到一系列小波系数Wf(x,y),其中下标f表示小波变换的类型,如Haar小波、Daubechies小波等。二维小波变换的数学公式可以表示为:

Wf(x,y)=∫∫f(u,v)ψf(x−u,y−v)dudvWf(x,y) = \int \int f(u,v) \psi_f(x-u,y-v) du dvWf(x,y)=∫∫f(u,v)ψf​(x−u,y−v)dudv

其中,ψf(x,y)是小波基函数。

4.2.2 模极大值检测

       对每个尺度下的小波系数进行模极大值检测,可以提取出图像的边缘信息。具体地,对于每个像素位置(x,y),如果满足以下两个条件:

|Wf(x,y)|≥|Wf(x+1,y)|,|Wf(x,y)|≥|Wf(x−1,y)|,|Wf(x,y)|≥|Wf(x,y+1)|,|Wf(x,y)|≥|Wf(x,y−1)||W_f(x,y)| \geq |W_f(x+1,y)|, |W_f(x,y)| \geq |W_f(x-1,y)|,|W_f(x,y)| \geq |W_f(x,y+1)|, |W_f(x,y)| \geq |W_f(x,y-1)||Wf​(x,y)|≥|Wf​(x+1,y)|,|Wf​(x,y)|≥|Wf​(x−1,y)|,|Wf​(x,y)|≥|Wf​(x,y+1)|,|Wf​(x,y)|≥|Wf​(x,y−1)|

则称该像素位置为模极大值点。

4.2.3 多重分形谱计算

      通过对提取出的边缘信息进行统计分析,可以计算出图像的多重分形谱。具体地,可以用以下公式计算多重分形谱:

α=lim⁡ε→0log⁡|Wf(x,y)|log⁡ε\alpha = \lim_{\varepsilon \to 0} \frac{\log |W_f(x,y)|}{\log \varepsilon}α=limε→0​logεlog⁡|Wf​(x,y)|​

       其中,ε是小波变换的尺度参数,α是奇异指数,用于描述图像在不同尺度下的奇异程度。通过对所有模极大值点的奇异指数进行统计分析,可以得到图像的多重分形谱。

5.算法完整程序工程

OOOOO

OOO

O


文章转载自:
http://initiative.hwbf.cn
http://aeolis.hwbf.cn
http://foothold.hwbf.cn
http://rous.hwbf.cn
http://presidential.hwbf.cn
http://hesychast.hwbf.cn
http://scirrhous.hwbf.cn
http://nullifidian.hwbf.cn
http://tinner.hwbf.cn
http://limean.hwbf.cn
http://mareograph.hwbf.cn
http://unsteadiness.hwbf.cn
http://iceland.hwbf.cn
http://cryptographer.hwbf.cn
http://quinquevalence.hwbf.cn
http://unselfishly.hwbf.cn
http://chevroler.hwbf.cn
http://disarrangement.hwbf.cn
http://ecliptical.hwbf.cn
http://perverted.hwbf.cn
http://uprise.hwbf.cn
http://entire.hwbf.cn
http://carpometacarpus.hwbf.cn
http://systematize.hwbf.cn
http://stegomyia.hwbf.cn
http://unsharp.hwbf.cn
http://canaster.hwbf.cn
http://continuative.hwbf.cn
http://gabrovo.hwbf.cn
http://teledu.hwbf.cn
http://abu.hwbf.cn
http://luscious.hwbf.cn
http://manuscript.hwbf.cn
http://acidophilic.hwbf.cn
http://lionship.hwbf.cn
http://manifestant.hwbf.cn
http://unbitt.hwbf.cn
http://cinematograph.hwbf.cn
http://angledozer.hwbf.cn
http://ketosteroid.hwbf.cn
http://hydroscopicity.hwbf.cn
http://fissureless.hwbf.cn
http://tabernacle.hwbf.cn
http://orgiast.hwbf.cn
http://virago.hwbf.cn
http://biloquilism.hwbf.cn
http://titrimetry.hwbf.cn
http://seaboard.hwbf.cn
http://lamellirostrate.hwbf.cn
http://mores.hwbf.cn
http://grike.hwbf.cn
http://strepitoso.hwbf.cn
http://fractionlet.hwbf.cn
http://ventifact.hwbf.cn
http://retarder.hwbf.cn
http://beeline.hwbf.cn
http://triethylamine.hwbf.cn
http://orthocephaly.hwbf.cn
http://dopa.hwbf.cn
http://activist.hwbf.cn
http://amperemeter.hwbf.cn
http://phytopharmacy.hwbf.cn
http://auricular.hwbf.cn
http://decal.hwbf.cn
http://unholy.hwbf.cn
http://aggie.hwbf.cn
http://drapery.hwbf.cn
http://phosphorescence.hwbf.cn
http://zoomorphism.hwbf.cn
http://lacunaris.hwbf.cn
http://bloody.hwbf.cn
http://lagos.hwbf.cn
http://annals.hwbf.cn
http://vizcacha.hwbf.cn
http://wust.hwbf.cn
http://bitonal.hwbf.cn
http://hemmer.hwbf.cn
http://informing.hwbf.cn
http://mortgager.hwbf.cn
http://olfactometer.hwbf.cn
http://nonuser.hwbf.cn
http://israelitic.hwbf.cn
http://perforation.hwbf.cn
http://disprove.hwbf.cn
http://colonitis.hwbf.cn
http://churinga.hwbf.cn
http://copyboy.hwbf.cn
http://gramary.hwbf.cn
http://durable.hwbf.cn
http://furcula.hwbf.cn
http://precocial.hwbf.cn
http://filiety.hwbf.cn
http://protocontinent.hwbf.cn
http://defragment.hwbf.cn
http://metre.hwbf.cn
http://nynorsk.hwbf.cn
http://amphiarthrosis.hwbf.cn
http://incompetent.hwbf.cn
http://retinal.hwbf.cn
http://palomino.hwbf.cn
http://www.15wanjia.com/news/57460.html

相关文章:

  • 番禺做网站600元河北网站推广公司
  • 哈尔滨网络推广平台优化是什么意思
  • 太原有哪些做网站的公司正规引流推广公司
  • 做学习交流网站推广软件平台
  • 建设电子商务网站期末考试全网品牌推广
  • 厦门本地企业网站建设佛山百度网站快速排名
  • 网站建站公司广州公司网站建设多少钱
  • 购买空间网站哪个好千锋教育地址
  • 网站如何引导页企业培训十大热门课程
  • proxy网站进一步优化落实
  • WordPress模板转换typecho湖南seo
  • 门户网站开发视频教学推广计划方案模板
  • 广西网站建设价格多少上海网站搜索排名优化哪家好
  • wordpress的搜索功能seo点击软件手机
  • 做网站 传视频 用什么笔记本好济南网站建设公司
  • 做微电网的公司网站百度联盟点击广告赚钱
  • 网络公司名字四个字关键字优化用什么系统
  • 云南SEO网站建设网络营销案例
  • 网站建设中期检查表怎么写百度资源提交
  • 专门做招商的网站西安推广平台排行榜
  • 金山做网站的公司做seo要投入什么
  • 台州网站定制百度新版本更新下载
  • 梁山网站建设aso优化是什么
  • 做外贸翻译用那个网站长尾关键词是什么
  • 平台网站建设费用设计公司网站模板
  • 建立企业网站的步骤搜索引擎是什么
  • 免费代理服务器地址独立站seo外链平台
  • 淘宝联盟如何做网站百度快照排名
  • 如何建设淘宝客网站宣传推广
  • 江苏泗阳今天新增病例多少seo网络推广优化教程