showfiltered.m

来自「加州大学伯克利分校的一个车俩识别程序, 用matlab实现」· M 代码 · 共 28 行

M
28
字号
function showFiltered(fim,th, fig, mask)% showFiltered(fim,th, fig, mask)  % fim   steerFilteredImage (theta, G2^2, H2^2)% th    (opt) threshold on energy=sqrt(G2^2+H2^2)% fig   (opt) fignum% mask  (opt) a bitmask to slect (in addition to th) what to show    energy = sqrt(fim(:,:,2)+fim(:,:,3));  if(nargin<2)    th = median(energy(:))*4;  end  if(nargin>=3)    figure(fig)  end  if(nargin<4)    mask=1;  end  colormap(jet);  phase = abs(atan2(fim(:,:,3),fim(:,:,2)));  subplot(1,3,1);  imagesc(energy); axis image; colorbar; title('energy');  mask = (mask).*(energy>th);  subplot(1,3,2);  imagesc(phase.*mask); axis image; colorbar; title('Phase');    subplot(1,3,3);  imagesc((fim(:,:,1)+pi/2+1.0).*mask);  axis image;  colorbar; title('Theta');

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?