📄 demo_locstat.m
字号:
%DEMO_LOCSTAT - performing the image enhancement based on local statistics.
% Using NLFILTER function to save memory.
%Copyright by Alex Zuo (zuoxinian@yahoo.com.cn).
clear,clc;
%% Read original SEM images
Isem=imread('testimages/sem.jpg');
%% Caculate the global mean and variance.
f=double(Isem);
M=mean2(f);D=std2(f);
%% Perform the enhancing task.
Bsize=[3 3];
k=[0.4 0.02 0.4];
E=4.0;
tic
fsem_enh=nlfilter(f,Bsize,@mylocstat,M,D,E,k);
t_nlfilter=toc %display time-consuming
Isem_enh=im2uint8(mat2gray(fsem_enh));
%% Visualize the result.
subplot(1,2,1),imshow(Isem),title('SEM Image')
subplot(1,2,2),imshow(Isem_enh),title('Enhanced SEM Image with NLFILTER')
%Save the result for publish.
%imwrite(Isem_enh,'outfiles/sem_enhanced.jpg')
%print(gcf,'-deps','outfiles/sem_locstatenh.eps')
%figure,imshow(Isem)
%print(gcf,'-deps','outfiles/sem.eps')
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -