⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 view_orientation_image.m

📁 image enhancement matlab code ,can improve the picture quality ,especially for the image with low qu
💻 M
字号:
%------------------------------------------------------------------------
%view_orientation_image
%Displays the orientation image as a quiver plot
%usage:
%view_orientation(o)
%o - orientation image(obtained by fft_enhance_cubs.m or
%orientation_image_rao.m)
%
%Contact:
%   ssc5@eng.buffalo.edu
%   www.eng.buffalo.edu/~ssc5
%------------------------------------------------------------------------
function view_orientation_image(o)
    [h,w]   =   size(o);
    x       =   0:w-1;
    y       =   0:h-1;
    quiver(x,y,cos(o),sin(o)); 
    axis([0 w 0 h]),axis image, axis ij;
%end function view_orieintation_image

⌨️ 快捷键说明

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