91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 196KB
    文件類型: .rar
    金幣: 2
    下載: 1 次
    發(fā)布日期: 2021-05-28
  • 語言: Matlab
  • 標簽: 圖像匹配??

資源簡介

在matlab上實現(xiàn)對兩幅圖像的匹配,主要應用了模板匹配這一比較經(jīng)典的匹配算法,且運行時間較短。

資源截圖

代碼片段和文件信息

function?shunxu=getOrder(temp_shunxu_1temp_shunxu_2temp_shunxu_3temp_shunxu_4)
%根據(jù)輸入的四項參數(shù)的順序,返回一個5位二進制的編碼
%temp_shunxu_i(i=(1234))為四個正數(shù)

if?temp_shunxu_1>=temp_shunxu_2&&temp_shunxu_2>=temp_shunxu_3&&temp_shunxu_3>=temp_shunxu_4%1?2?3?4
????shunxu=dec2bin(05);
elseif?temp_shunxu_1>=temp_shunxu_2&&temp_shunxu_2>=temp_shunxu_4&&temp_shunxu_4>=temp_shunxu_3%1?2?4?3?
????????????????shunxu=dec2bin(15);
elseif?temp_shunxu_1>=temp_shunxu_3&&temp_shunxu_3>=temp_shunxu_2&&temp_shunxu_2>=temp_shunxu_4%1?3?2?4
???????????????shunxu=dec2bin(25);
elseif?temp_shunxu_1>=temp_shunxu_3&&temp_shunxu_3>=temp_shunxu_4&&temp_shunxu_4>=temp_shunxu_2%1?3?4?2
???????????????shunxu=dec2bin(35);
elseif?temp_shunxu_1>=temp_shunxu_4&&temp_shunxu_4>=temp_shunxu_2&&temp_shunxu_2>=temp_shunxu_3%1?4?2?3
???????????????shunxu=dec2bin(45);
elseif?temp_shunxu_1>=temp_shunxu_4&&temp_shunxu_4>=temp_shunxu_3&&temp_shunxu_3>=temp_shunxu_2%1?4?3?2?
???????????????shunxu=dec2bin(55);
elseif?temp_shunxu_2>=temp_shunxu_1&&temp_shunxu_1>=temp_shunxu_3&&temp_shunxu_3>=temp_shunxu_4%2?1?3?4
???????????????shunxu=dec2bin(65);
elseif?temp_shunxu_2>=temp_shunxu_1&&temp_shunxu_1>=temp_shunxu_4&&temp_shunxu_4>=temp_shunxu_3%2?1?4?3
???????????????shunxu=dec2bin(75);
elseif?temp_shunxu_2>=temp_shunxu_3&&temp_shunxu_3>=temp_shunxu_1&&temp_shunxu_1>=temp_shunxu_4%2?3?1?4
???????????????shunxu=dec2bin(85);
elseif?temp_shunxu_2>=temp_shunxu_3&&temp_shunxu_3>=temp_shunxu_4&&temp_shunxu_4>=temp_shunxu_1%2?3?4?1
???????????????shunxu=dec2bin(95);
elseif?temp_shunxu_2>=temp_shunxu_4&&temp_shunxu_4>=temp_shunxu_1&&temp_shunxu_1>=temp_shunxu_3%2?4?1?3
???????????????shunxu=dec2bin(105);
elseif?temp_shunxu_2>=temp_shunxu_4&&temp_shunxu_4>=temp_shunxu_3&&temp_shunxu_3>=temp_shunxu_1%2?4?3?1??
???????????????shunxu=dec2bin(115);
elseif?temp_shunxu_3>=temp_shunxu_1&&temp_shunxu_1>=temp_shunxu_2&&temp_shunxu_2>=temp_shunxu_4%3?1?2?4
???????????????shunxu=dec2bin(125);
elseif?temp_shunxu_3>=temp_shunxu_1&&temp_shunxu_1>=temp_shunxu_4&&temp_shunxu_4>=temp_shunxu_2%3?1?4?2
???????????????shunxu=dec2bin(135);
elseif?temp_shunxu_3>=temp_shunxu_2&&temp_shunxu_2>=temp_shunxu_1&&temp_shunxu_1>=temp_shunxu_4%3?2?1?4
???????????????shunxu=dec2bin(145);
elseif?temp_shunxu_3>=temp_shunxu_2&&temp_shunxu_2>=temp_shunxu_4&&temp_shunxu_4>=temp_shunxu_1%3?2?4?1
???????????????shunxu=dec2bin(155);
elseif?temp_shunxu_3>=temp_shunxu_4&&temp_shunxu_4>=temp_shunxu_1&&temp_shunxu_1>=temp_shunxu_2%3?4?1?2
???????????????shunxu=dec2bin(165);
elseif?temp_shunxu_3>=temp_shunxu_4&&temp_shunxu_4>=temp_shunxu_2&&temp_shunxu_2>=temp_shunxu_1%3?4?2?1
???????????????shunxu=dec2bin(175);
elseif?temp_shunxu_4>=temp_shunxu_1&&temp_shunxu_1>=temp_shunxu_2&&temp_shunxu_2>=temp_shunxu_3%4?1?2?3
???????????????shunxu=dec2bin(185);
elseif?temp_shunxu_4>=temp_shunxu_1&&temp_shunxu_1>=temp_shunxu_3&&temp_shunxu_3>=temp_shunxu_2%4?1?3?2
???????????????shunxu=dec2bin(195);
elseif?temp_

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----

?????文件???????3384??2007-09-18?10:08??用MATLAB對兩幅圖片進行圖像匹配程序運用了兩種匹配算法1.基于灰度值的模板匹配2.模板匹配的改進算法\afterCut.jpg

?????文件???????3723??2007-09-17?10:38??用MATLAB對兩幅圖片進行圖像匹配程序運用了兩種匹配算法1.基于灰度值的模板匹配2.模板匹配的改進算法\getOrder.asv

?????文件???????3597??2007-09-18?09:15??用MATLAB對兩幅圖片進行圖像匹配程序運用了兩種匹配算法1.基于灰度值的模板匹配2.模板匹配的改進算法\getOrder.m

?????文件???????1122??2007-09-17?22:19??用MATLAB對兩幅圖片進行圖像匹配程序運用了兩種匹配算法1.基于灰度值的模板匹配2.模板匹配的改進算法\gettezheng.asv

?????文件???????1182??2007-09-18?18:05??用MATLAB對兩幅圖片進行圖像匹配程序運用了兩種匹配算法1.基于灰度值的模板匹配2.模板匹配的改進算法\gettezheng.m

?????文件???????8364??2007-09-18?10:03??用MATLAB對兩幅圖片進行圖像匹配程序運用了兩種匹配算法1.基于灰度值的模板匹配2.模板匹配的改進算法\P1010813.JPG

?????文件????????559??2007-09-20?07:44??用MATLAB對兩幅圖片進行圖像匹配程序運用了兩種匹配算法1.基于灰度值的模板匹配2.模板匹配的改進算法\Read?me.txt

?????文件???????1342??2007-09-20?07:41??用MATLAB對兩幅圖片進行圖像匹配程序運用了兩種匹配算法1.基于灰度值的模板匹配2.模板匹配的改進算法\testpipei_1.m

?????文件???????2071??2007-09-20?07:24??用MATLAB對兩幅圖片進行圖像匹配程序運用了兩種匹配算法1.基于灰度值的模板匹配2.模板匹配的改進算法\testpipei_2.asv

?????文件???????2127??2007-09-20?07:25??用MATLAB對兩幅圖片進行圖像匹配程序運用了兩種匹配算法1.基于灰度值的模板匹配2.模板匹配的改進算法\testpipei_2.m

?????文件??????11143??2007-09-18?18:20??用MATLAB對兩幅圖片進行圖像匹配程序運用了兩種匹配算法1.基于灰度值的模板匹配2.模板匹配的改進算法\three.asv

?????文件???????6875??2007-09-19?21:58??用MATLAB對兩幅圖片進行圖像匹配程序運用了兩種匹配算法1.基于灰度值的模板匹配2.模板匹配的改進算法\three.fig

?????文件??????11203??2007-09-18?18:52??用MATLAB對兩幅圖片進行圖像匹配程序運用了兩種匹配算法1.基于灰度值的模板匹配2.模板匹配的改進算法\three.m

?????文件?????297472??2007-09-24?22:26??用MATLAB對兩幅圖片進行圖像匹配程序運用了兩種匹配算法1.基于灰度值的模板匹配2.模板匹配的改進算法\面向?qū)ο笳n程設計報告.doc

?????目錄??????????0??2009-04-30?23:19??用MATLAB對兩幅圖片進行圖像匹配程序運用了兩種匹配算法1.基于灰度值的模板匹配2.模板匹配的改進算法

?????文件???????3543??2009-02-01?16:19??使用幫助:新手必看.htm

?????文件????????183??2009-02-02?09:47??Matlab中文論壇--助努力的人完成畢業(yè)設計.url

-----------?---------??----------?-----??----

???????????????357890????????????????????17


評論

共有 條評論