亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? fm_guifun.m

?? Fourier-Mellin算法
?? M
?? 第 1 頁 / 共 2 頁
字號:
                        data.input2 = rotsclIm;     data.input2_windowed = window2d(size(rotsclIm,1),size(rotsclIm,2),data.windowType).*rotsclIm;
                    elseif (size_rs(1)==size_in1(1))&(size_rs(2)==size_in1(2))   % then no need to crop anything
                        data.input2 = rotsclIm;     data.input2_windowed = window2d(size(rotsclIm,1),size(rotsclIm,2),data.windowType).*rotsclIm;
                        data.input1 = in1ref;   data.input1_windowed = window2d(size(in1ref,1),size(in1ref,2),data.windowType).*in1ref;                    
                    else
                        disp('fm_guifun.m (290ish): AUTOCROP does not currently work on these types of images (ie, certain rectangle shapes)........')   
                    end
                end
                
            end                
        end
        
        set(gcbf,'CurrentAxes',findobj(gcbf,'Tag','Axes2'));
        data.h2 =  findobj(gcbf,'Tag','Axes2');
        
        cla;
        set(gcbf,'Userdata',data);
        
        updateImage(1,0);
        updateImage(2,0); 
        data = get(gcbf,'Userdata'); 
        
        vel1 = size(data.input1_windowed);      
        vel2 = size(data.input2_windowed);      
        
        set(findobj(gcbf,'Tag','Ref_im_c'),'String',[data.filename1 ',   ' int2str(vel1(1)) ' x ' int2str(vel1(2))],'ForegroundColor','k'); 
        set(findobj(gcbf,'Tag','Sens_im_c'),'String',[data.filename2 ',   ' int2str(vel2(1)) ' x ' int2str(vel2(2))],'ForegroundColor','k'); 
        set(gcbf,'Userdata',data);
        
        dispTag('Sens_im','k');
        dispText('','b');
        
    else
        disp('Cannot rotate/scale a non-existent image')
    end
    
    if data.performanceLevel==1
        set(findobj(gcbf,'Tag','Pushbutton1'),'String',['REGISTER (' num2str(data.performanceLevel) 'peak)']);
    else
        set(findobj(gcbf,'Tag','Pushbutton1'),'String',['REGISTER (' num2str(data.performanceLevel) 'peaks)']);
    end
    set(gcbf,'Userdata',data); 
    
    
case('dispText')
    data = get(gcbf,'Userdata');
    val = get(findobj(gcbf,'Tag','cb_dispText'),'Value');
    if val==1 
        data.dispText = 1;
    else
        data.dispText = 0;
    end
    set(gcbf,'Userdata',data);    
    
case('register')    
    data = get(gcbf,'Userdata');
    set(findobj(gcbf,'Tag','Pushbutton1'),'String','please wait...');  
    
    if ((size(data.input2reference,1)>0)&(size(data.input2reference,1)>0)&(size(data.input1,1)>0)&(size(data.input1,2)>0))
        [data.registered,data.input1registered,data.input2registered,reg_output,data.pc_rs,data.pc_trans] = fourier_mellin(data);
        
        regImDims = size(data.registered);      
        data.regInfo = reg_output;
        set(findobj(gcbf,'Tag','TransOut'),'String',[num2str(data.regInfo.translation(1)) 'x' num2str(data.regInfo.translation(2))],'ForegroundColor','k'); 
        set(findobj(gcbf,'Tag','RotOut'),'String',num2str(data.regInfo.rotation),'ForegroundColor','k'); 
        set(findobj(gcbf,'Tag','ScaleOut'),'String',num2str(data.regInfo.scale),'ForegroundColor','k'); 
        set(findobj(gcbf,'Tag','TransPeakOut'),'String',num2str(data.regInfo.trans_peak),'ForegroundColor','k'); 
        set(findobj(gcbf,'Tag','RSPeakOut'),'String',num2str(data.regInfo.rs_peak),'ForegroundColor','k'); 
        
        set(gcbf,'CurrentAxes',findobj(gcbf,'Tag','Axes3'));
        data.h2 =  findobj(gcbf,'Tag','Axes3');
    end
    if data.performanceLevel==1
        set(findobj(gcbf,'Tag','Pushbutton1'),'String',['REGISTER (' num2str(data.performanceLevel) 'peak)']);
    else
        set(findobj(gcbf,'Tag','Pushbutton1'),'String',['REGISTER (' num2str(data.performanceLevel) 'peaks)']);
    end
    
    set(gcbf,'Userdata',data);    	
    dispText('','b');
    
case('setPerformanceLevel')
    data = get(gcbf,'Userdata');
    data.performanceLevel = floor(get(findobj(gcbf,'Tag','performLevel'),'Value'));
    if data.performanceLevel==1
        set(findobj(gcbf,'Tag','Pushbutton1'),'String',['REGISTER (' num2str(data.performanceLevel) 'peak)']);
    else
        set(findobj(gcbf,'Tag','Pushbutton1'),'String',['REGISTER (' num2str(data.performanceLevel) 'peaks)']);
    end
    set(gcbf,'Userdata',data);    	
    
    
    % invoke help window
case('help')
    data	= get(gcbf,'Userdata');
    
    dispText('','b');
    global FM_PATH;
    web(['file:///' FM_PATH 'help/help_fm.html']);
    
    % BELOW IS THE SELECTIONS FOR THE ANALYSIS WINDOW    
case('input1Select')   
    data = get(gcbf,'Userdata');  
    set(findobj(gcbf,'Tag','Pushbutton1'),'String','please wait...'); 
    sel = get(findobj(gcbf,'Tag','input1analysis'),'Value');
    
    if (sel==1)   % input image 'Input|Magnitude Spectrum|Phase Spectrum|Log-Polar'
        mx = data.input1;
    elseif (sel==2)
        mx = data.input1_windowed;
    elseif(sel==3)  % magnitude spectrum
        mx = data.input1_magSpec;
    elseif(sel==4)  % phase spectrum
        mx = angle(data.input1_freq);
    elseif(sel==5)  % log-polar
        mx = data.input1_freq_lp;
    elseif(sel==6)  % windowed log-polar
        mx = data.windowed_input1_freq_lp;
    elseif(sel==7)   % invariant
        mx = data.logmagspec_lp_ms1;
    else
        disp('input1Select: Should never get here')
    end
    
    set(gcbf,'CurrentAxes',findobj(gcbf,'Tag','Axes1'));    % move to the correct axes
    
    cla;       % clear the image corresponding to these axes
    imagesc(mx);   % display image
    axis image;   % fit axis box tightly around image
    axis ij;      % puts MATLAB into its "matrix" axes mode.  The coordinate system origin is at the upper left corner.  The i axis is vertical and is numbered from top to bottom.  The j axis is horizontal and is numbered from left to right.
    axis off;   % turns off labelling
    colormap('gray');    % not sure where 'm' is coming from
    vel = size(data.input1);
    set(findobj(gcbf,'Tag','Ref_im_c'),'String',[data.filename1 ',   ' int2str(vel(1)) ' x ' int2str(vel(2))],'ForegroundColor','k');     
    
    if data.performanceLevel==1
        set(findobj(gcbf,'Tag','Pushbutton1'),'String',['REGISTER (' num2str(data.performanceLevel) 'peak)']);
    else
        set(findobj(gcbf,'Tag','Pushbutton1'),'String',['REGISTER (' num2str(data.performanceLevel) 'peaks)']);
    end
    
    set(gcbf,'Userdata',data);    	
    
case('input2Select')
    data = get(gcbf,'Userdata');   
    set(findobj(gcbf,'Tag','Pushbutton1'),'String','please wait...'); 
    sel = get(findobj(gcbf,'Tag','input2analysis'),'Value');
    
    if (sel==1)   % input image 'Input|Magnitude Spectrum|Phase Spectrum|Log-Polar|Invariant'
        mx = data.input2;
    elseif(sel==2)
        mx = data.input2_windowed;
    elseif(sel==3)  % magnitude spectrum
        mx = data.input2_magSpec;
    elseif(sel==4)  % phase spectrum
        mx = angle(data.input2_freq);
    elseif(sel==5)  % log-polar
        mx = data.input2_freq_lp;
    elseif(sel==6)  % windowed log-polar
        mx = data.windowed_input2_freq_lp;
    elseif(sel==7)   % invariant
        mx = data.logmagspec_lp_ms2;
    else
        disp('input2Select: Should never get here')
    end
    
    set(gcbf,'CurrentAxes',findobj(gcbf,'Tag','Axes2'));    % move to the correct axes
    
    cla;       % clear the image corresponding to these axes
    imagesc(mx);   % display image
    axis image;   % fit axis box tightly around image
    axis ij;      % puts MATLAB into its "matrix" axes mode.  The coordinate system origin is at the upper left corner.  The i axis is vertical and is numbered from top to bottom.  The j axis is horizontal and is numbered from left to right.
    axis off;   % turns off labelling
    colormap('gray');    % not sure where 'm' is coming from
    if data.performanceLevel==1
        set(findobj(gcbf,'Tag','Pushbutton1'),'String',['REGISTER (' num2str(data.performanceLevel) 'peak)']);
    else
        set(findobj(gcbf,'Tag','Pushbutton1'),'String',['REGISTER (' num2str(data.performanceLevel) 'peaks)']);
    end
    
    set(gcbf,'Userdata',data);    	
    
case('regSelect')    
    data = get(gcbf,'Userdata');   
    sel = get(findobj(gcbf,'Tag','reganalysis'),'Value');
    
    if (sel==1)   % regiistered image 'Registered|Registered Image 2|Log-Polar PC|Spatial PC'
        mx = data.registered;
    elseif(sel==2)
        mx = data.input1registered;
    elseif(sel==3)  % magnitude spectrum
        mx = data.input2registered;
    elseif(sel==4)  % phase spectrum
        mx = data.pc_rs;
    elseif(sel==5)  % log-polar
        mx = data.pc_trans;
    else
        disp('input2Select: Should never get here')
    end
    
    set(gcbf,'CurrentAxes',findobj(gcbf,'Tag','Axes3'));    % move to the correct axes
    
    cla;       % clear the image corresponding to these axes
    imagesc(mx);   % display image
    axis image;   % fit axis box tightly around image
    axis ij;      % puts MATLAB into its "matrix" axes mode.  The coordinate system origin is at the upper left corner.  The i axis is vertical and is numbered from top to bottom.  The j axis is horizontal and is numbered from left to right.
    axis off;   % turns off labelling
    %    colormap(m);    % not sure where 'm' is coming from

    
    set(gcbf,'Userdata',data);    	
    %  dispTag('Ref_im','k');
    %  dispText('','b');
    
otherwise
    disp(['fm_guifun.m: trying to call non-existent switch...',action])
end

% ------------------------------------------------------------------------------------
% *************************** auxilliary functions

function dispText(txt,colr);

set(findobj(gcbf,'Tag','MessText'),'String',txt,'ForegroundColor',colr); 

% ------------------------------------------------------------------------------------
function vr=vrat(ktery);

idx = get(findobj(gcbf,'Tag',ktery),'value');
val = get(findobj(gcbf,'Tag',ktery),'String');
vr=str2num(val(idx));


% ------------------------------------------------------------------------------------
function ramek(kde,barva);

set(findobj(gcbf,'Tag',kde),'XColor',barva);
set(findobj(gcbf,'Tag',kde),'YColor',barva);
set(findobj(gcbf,'Tag',kde),'ZColor',barva);

% ------------------------------------------------------------------------------------
function dispTag(txt,colr);

set(findobj(gcbf,'Tag',txt),'ForegroundColor',colr); 

% ------------------------------------------------------------------------------------
function updateImage(im,LP_ONLY)
% USAGE: updateImage(im,LP_ONLY)        A.I.Wilmer, 2002
%
% function to update magnitude spectra, log-polar plots etc of image 'im'
% LP_ONLY : only update the log-polar plot and stuff dependent on it

data = get(gcbf,'Userdata');  

if (im==1)                  % then update image 1 information
    if (~LP_ONLY)       % if log-polar setting is changed then don't need to do the next couple of lines
        data.input1_freq = fftshift(fft2(data.input1_windowed));
        data.input1_magSpec = hipass_filter(size(data.input1_freq,1),size(data.input1_freq,2)).*abs(data.input1_freq);  
%        data.input1_magSpec = log10(abs(data.input1_freq));  
    end
    data.input1_freq_lp = imlogpolar(data.input1_magSpec,data.logpolarScaleRes,data.logpolarAngleRes,data.LogInterp);
    data.windowed_input1_freq_lp = repmat(window1d(size(data.input1_freq_lp,1),data.windowType),1,size(data.input1_freq_lp,2)).*data.input1_freq_lp;
    data.logmagspec_lp_ms1 = hipass_filter(size(data.input1_freq_lp,1),size(data.input1_freq_lp,2)).*abs(fftshift(fft2(data.input1_freq_lp)));    
elseif (im==2)           % update image 2 plots
    if (~LP_ONLY)    % if log-polar setting is changed then don't need to do the next couple of lines
        data.input2_freq = fftshift(fft2(data.input2_windowed));
        data.input2_magSpec = hipass_filter(size(data.input2_freq,1),size(data.input2_freq,2)).*abs(data.input2_freq);  
%        data.input2_magSpec = log10(abs(data.input2_freq));  
    end
    data.input2_freq_lp = imlogpolar(data.input2_magSpec,data.logpolarScaleRes,data.logpolarAngleRes,data.LogInterp);
    data.windowed_input2_freq_lp = repmat(window1d(size(data.input2_freq_lp,1),data.windowType),1,size(data.input2_freq_lp,2)).*data.input2_freq_lp;
    data.logmagspec_lp_ms2 = hipass_filter(size(data.input2_freq_lp,1),size(data.input2_freq_lp,2)).*abs(fftshift(fft2(data.input2_freq_lp)));    
else
    disp('updateImage(): incorrect image number used.')
end
set(gcbf,'Userdata',data); 

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
99vv1com这只有精品| 国产农村妇女精品| 2023国产一二三区日本精品2022| 国产精品欧美经典| 日本不卡视频在线观看| 91影院在线观看| 精品久久久久久久久久久院品网| 亚洲欧洲综合另类在线| 国产**成人网毛片九色 | 亚洲国产乱码最新视频| 国产一区二区三区| 6080午夜不卡| 亚洲午夜在线观看视频在线| 国产在线日韩欧美| 欧美一区二区视频在线观看2020 | 精品国产一区二区三区四区四 | 三级影片在线观看欧美日韩一区二区 | 欧美精品在线视频| 亚洲狼人国产精品| 不卡一区中文字幕| 日本一区二区三区国色天香| 久久99精品国产麻豆婷婷| 欧美日韩国产另类一区| 亚洲黄色小视频| 91丨九色丨国产丨porny| 中文字幕免费一区| 成人午夜激情片| 国产精品伦一区二区三级视频| 激情成人综合网| 日韩三级伦理片妻子的秘密按摩| 天天色天天操综合| 欧美日韩不卡在线| 天天色天天爱天天射综合| 884aa四虎影成人精品一区| 亚洲不卡一区二区三区| 欧美日韩国产一区二区三区地区| 午夜精品视频在线观看| 91精品国产一区二区三区蜜臀| 亚洲国产综合人成综合网站| 欧美日本高清视频在线观看| 日韩二区三区四区| 日韩欧美国产不卡| 国产一区三区三区| 国产精品乱码人人做人人爱| av电影一区二区| 老司机午夜精品99久久| 久久男人中文字幕资源站| 国内精品久久久久影院色| 欧美精品一区二区三区一线天视频| 国产精品中文字幕一区二区三区| 国产午夜亚洲精品理论片色戒| 国产成人自拍网| 亚洲天堂久久久久久久| 欧美丝袜自拍制服另类| 日日夜夜免费精品| 久久免费的精品国产v∧| 懂色av一区二区三区蜜臀| 18成人在线观看| 精品视频一区 二区 三区| 麻豆专区一区二区三区四区五区| 国产亚洲婷婷免费| 91久久精品一区二区| 奇米影视在线99精品| 国产欧美日韩精品一区| 在线视频一区二区三区| 美女网站色91| 国产精品国产三级国产普通话蜜臀| 色欧美88888久久久久久影院| 午夜视黄欧洲亚洲| 久久久久久电影| 欧美日韩一区高清| 国产高清视频一区| 亚洲va天堂va国产va久| 国产亚洲精品7777| 91精品午夜视频| 99re这里都是精品| 久久超碰97中文字幕| 亚洲天堂成人网| 26uuu国产一区二区三区| 色94色欧美sute亚洲线路一久| 久久国产剧场电影| 一区二区三区在线观看视频| 日韩视频免费观看高清完整版在线观看 | 亚洲精品免费播放| 26uuu国产电影一区二区| 在线亚洲高清视频| 成人精品免费视频| 麻豆91在线观看| 亚洲在线观看免费| 中文字幕精品三区| 欧美成人video| 欧美三级日本三级少妇99| 成人一区二区三区视频在线观看| 蜜桃精品在线观看| 亚洲第一成年网| 亚洲视频免费在线观看| ww久久中文字幕| 欧美久久婷婷综合色| 色呦呦日韩精品| 成人精品视频.| 国产不卡免费视频| 国产精一区二区三区| 奇米精品一区二区三区在线观看一| 有坂深雪av一区二区精品| 国产精品久久精品日日| 国产亚洲精品久| 久久午夜色播影院免费高清| 日韩一区二区麻豆国产| 欧美日韩国产高清一区二区 | 一区二区视频免费在线观看| 亚洲国产精品成人综合色在线婷婷 | 国内精品伊人久久久久av一坑| 日韩黄色片在线观看| 亚洲一区二三区| 一区二区三区四区五区视频在线观看 | 性做久久久久久免费观看| 一区二区三区四区在线播放| 亚洲综合无码一区二区| 亚洲高清在线视频| 婷婷成人激情在线网| 视频在线观看一区| 欧美a一区二区| 久久99精品国产麻豆不卡| 国产在线不卡一区| 国产91丝袜在线播放九色| 成人国产精品视频| 91麻豆免费观看| 欧美日韩一区二区三区不卡| 欧美日韩黄视频| 欧美成人国产一区二区| 久久久久久久综合日本| 欧美国产97人人爽人人喊| 自拍偷拍亚洲欧美日韩| 亚洲综合男人的天堂| 日本成人中文字幕| 国产一区91精品张津瑜| www.日韩在线| 欧美日韩精品福利| 欧美精品一区二区久久婷婷| 日本一区二区三区视频视频| 亚洲人成精品久久久久久| 日日夜夜一区二区| 国产高清在线精品| 在线视频一区二区三区| 欧美变态tickling挠脚心| 国产清纯在线一区二区www| 亚洲精品国产成人久久av盗摄| 肉肉av福利一精品导航| 国产精品一区三区| 欧美午夜免费电影| 久久综合九色综合久久久精品综合 | 亚洲精品一区二区三区香蕉| 国产精品国产三级国产普通话99 | 欧美久久免费观看| 久久精品男人的天堂| 亚洲午夜精品一区二区三区他趣| 精品一区二区三区在线观看| 99久久久精品| 精品国产亚洲在线| 亚洲成人精品在线观看| 国产精品1区2区| 欧美精选午夜久久久乱码6080| 中文字幕av一区二区三区免费看| 亚洲一区二区三区四区中文字幕| 韩日精品视频一区| 欧美性欧美巨大黑白大战| 2023国产精品| 亚洲mv大片欧洲mv大片精品| 成人黄色小视频在线观看| 91精品久久久久久久99蜜桃 | 狠狠色丁香久久婷婷综| 欧美吞精做爰啪啪高潮| 国产欧美1区2区3区| 日本成人中文字幕| 欧美午夜不卡在线观看免费| 中文字幕免费在线观看视频一区| 美女久久久精品| 欧美三日本三级三级在线播放| 欧美高清在线精品一区| 久久成人精品无人区| 欧美日韩三级一区| 亚洲精品国久久99热| 粉嫩嫩av羞羞动漫久久久 | 欧美久久婷婷综合色| 亚洲伦理在线精品| www.亚洲色图.com| 国产日韩精品一区二区浪潮av | 精品国产亚洲一区二区三区在线观看 | 国产99久久久国产精品潘金| 欧美一区二区三区视频免费播放| 一区二区欧美在线观看| www.日韩精品| 亚洲欧洲av在线| 成人激情av网| 中文字幕日韩一区二区| 成人永久免费视频| 欧美激情一区二区三区| 国产精品亚洲视频| 欧美国产乱子伦| eeuss国产一区二区三区|