【图像处理第八章】

第八章


#使用函数bwboundaries和bound2im.
请添加图片描述

代码

clc,clear,close all;
f = [
 0 0 0 0 0 0 0 0 0 0 0 0 0 0;
 0 1 1 1 1 1 1 1 1 1 1 1 1 0;
 0 1 1 1 1 1 1 1 1 1 1 1 1 0;
 0 1 1 0 0 0 0 0 0 0 0 1 1 0;
 0 1 1 0 1 1 1 1 1 1 0 1 1 0;
 0 1 1 0 1 1 1 1 1 1 0 1 1 0;
 0 1 1 0 1 1 0 0 1 1 0 1 1 0;
 0 1 1 0 1 1 0 0 1 1 0 1 1 0;
 0 1 1 0 1 1 1 1 1 1 0 1 1 0;
 0 1 1 0 1 1 1 1 1 1 0 1 1 0;
 0 1 1 0 0 0 0 0 0 0 0 1 1 0;
 0 1 1 1 1 1 1 1 1 1 1 1 1 0;
 0 1 1 1 1 1 1 1 1 1 1 1 1 0;
 0 0 0 0 0 0 0 0 0 0 0 0 0 0
];
B = bwboundaries(f, 'noholes');
numel(B)
b = cat(1, B{:});
[M, N] = size(f);
imgae = bound2im(b, M, N)
[B, L, NR, A] = bwboundaries(f);
numel(B)
numel(B) - NR
bR = cat(1, B{1:2}, B{4});
imageBoundaries = bound2im(bR, M, N);
imageNumveredBoundaries = imageBoundaries.*L
bR = cat(1, B{:});
imageBoundaries = bound2im(bR, M, N);
imageNumberedBoundaries = imageBoundaries.*L
find(A(:,1))
find(A(1,:))
A
full(A)

#弗雷曼链码及其某些变化
请添加图片描述

代码

clc,clear,close all;
f = imread('F:\qq\Digital-Image-Processing-main\Digital-Image-Processing-main\matlab教材示例图片\dipum_images_ch11\Fig1102(a)(noisy_circular_stroke).tif');
figure
subplot(231),imshow(f)
h = fspecial('average', 9);
g = imfilter(f, h, 'replicate');
subplot(232),imshow(g)
gB = im2bw(g, 0.5);
subplot(233),imshow(gB)
B = bwboundaries(gB, 'noholes');
d = cellfun('length', B);
[maxd, k] = max(d);
b = B{k};
[M N] = size(g);
g = bound2im(b, M, N);
subplot(234),imshow(g)
[s, su] = bsubsamp(b, 50);
g2 = bound2im(s, M, N);
subplot(235),imshow(g2)
cn = connectpoly(s(:, 1), s(:, 2));
g3 = bound2im(cn, M, N);
subplot(236),imshow(g3)
c = fchcode(su);
c.x0y0
c.fcc
c.mm
c.diff
c.diffmm

#得到包围一个区域的边界的细胞组合体

clc,clear,close all;
f = imread('F:\qq\Digital-Image-Processing-main\Digital-Image-Processing-main\数字图像处理第三版 教材图片\DIP3E_CH12_Original_Images\DIP3E_Original_Images_CH12\Fig1209(b)(eye template).tif');
g = bwperim(f, 8);
Q = qtdecomp(g, 0, 2);
R = imfill(gF, 'holes') & g;
B = bwboundaries(f, 4, 'noholes');
b = B{1};

#使用函数 im2minperpoly请添加图片描述

请添加图片描述

代码

clc,clear,close all;
f = imread('F:\qq\Digital-Image-Processing-main\Digital-Image-Processing-main\matlab教材示例图片\dipum_images_ch11\Fig1107(a)(mapleleaf).tif');
figure
subplot(321),imshow(f)
B = bwboundaries(f, 4, 'noholes');
b = B{1};
[M, N] = size(f);
bOriginal = bound2im(b, M, N);
subplot(322),imshow(bOriginal)
[X, Y] = im2minperpoly(f, 2);
b2 = connectpoly(X, Y);
bCellsize2 = bound2im(b2, M, N);
subplot(323),imshow(bCellsize2)

[X, Y] = im2minperpoly(f, 3);
b2 = connectpoly(X, Y);
bCellsize2 = bound2im(b2, M, N);
subplot(324),imshow(bCellsize2)

[X, Y] = im2minperpoly(f, 4);
b2 = connectpoly(X, Y);
bCellsize2 = bound2im(b2, M, N);
subplot(325),imshow(bCellsize2)

[X, Y] = im2minperpoly(f, 8);
b2 = connectpoly(X, Y);
bCellsize2 = bound2im(b2, M, N);
subplot(326),imshow(bCellsize2)

figure
[X, Y] = im2minperpoly(f, 10);
b2 = connectpoly(X, Y);
bCellsize2 = bound2im(b2, M, N);
subplot(221),imshow(bCellsize2)

[X, Y] = im2minperpoly(f, 16);
b2 = connectpoly(X, Y);
bCellsize2 = bound2im(b2, M, N);
subplot(222),imshow(bCellsize2)

[X, Y] = im2minperpoly(f, 20);
b2 = connectpoly(X, Y);
bCellsize2 = bound2im(b2, M, N);
subplot(223),imshow(bCellsize2)

[X, Y] = im2minperpoly(f, 32);
b2 = connectpoly(X, Y);
bCellsize2 = bound2im(b2, M, N);
subplot(224),imshow(bCellsize2)

#计算区域的骨骼请添加图片描述

代码

clc,clear,close all;
f = imread('F:\qq\Digital-Image-Processing-main\Digital-Image-Processing-main\matlab教材示例图片\dipum_images_ch11\Fig1113(a)(chromo_original).tif');
figure
subplot(231),imshow(f)
h = fspecial('gaussian', 25, 15);
g = tofloat(imfilter(f, h, 'replicate'));
subplot(232),imshow(g)
g = im2bw(g, 1.5*graythresh(g));
subplot(233),imshow(g)
s = bwmorph(g, 'skel', Inf);
subplot(234),imshow(s)
s1 = bwmorph(s, 'spur', 8);
subplot(235),imshow(s1)
s2 = bwmorph(s, 'spur', 7);
subplot(236),imshow(s2)

#傅里叶描绘子
请添加图片描述

代码

clc,clear,close all;
f = imread('F:\qq\Digital-Image-Processing-main\Digital-Image-Processing-main\matlab教材示例图片\dipum_images_ch11\Fig1116(a)(chromo_binary).tif');
figure
subplot(121),imshow(f)
b = bwboundaries(f, 'noholes');
b = b{1};
bim = bound2im(b, size(f, 1), size(f, 2));
subplot(122),imshow(bim)
z = frdescp(b);
s546 = ifrdescp(z, 546);
s546im = bound2im(s546, size(f, 1), size(f, 2));
s110 = ifrdescp(z, 110);
s110im = bound2im(s110, size(f, 1), size(f, 2));
s56 = ifrdescp(z, 56);
s56im = bound2im(s56, size(f, 1), size(f, 2));
s28 = ifrdescp(z, 28);
s28im = bound2im(s28, size(f, 1), size(f, 2));
s14 = ifrdescp(z, 14);
s14im = bound2im(s14, size(f, 1), size(f, 2));
s8 = ifrdescp(z, 8);
s8im = bound2im(s8, size(f, 1), size(f, 2));
figure
subplot(231),imshow(s546im)
subplot(232),imshow(s110im)
subplot(233),imshow(s56im)
subplot(234),imshow(s28im)
subplot(235),imshow(s14im)
subplot(236),imshow(s8im)

#使用函数 cornermetric和cornerprocess寻找灰度图像中的拐角请添加图片描述
代码

clc,clear,close all;
f = imread('F:\qq\Digital-Image-Processing-main\Digital-Image-Processing-main\matlab教材示例图片\dipum_images_ch10\Fig1006(a)(building).tif');
figure
subplot(321),imshow(f)
CH = cornermetric(f, 'Harris');
CH(CH < 0) = 0;
CH = mat2gray(CH);
subplot(323),imshow(imcomplement(CH))
CM = cornermetric(f, 'MinimumEigenvalue');
CM = mat2gray(CM);
subplot(324),imshow(imcomplement(CM))
hH = imhist(CH);
hM = imhist(CM);
TH = percentile2i(hH, 0.9945);
TM = percentile2i(hM, 0.9970);
cpH = cornerprocess(CH, TH, 1);
cpM = cornerprocess(CM, TM, 1);
subplot(325),imshow(cpH)
subplot(326),imshow(cpM)

[xH yH] = find(cpH);
figure, subplot(221),imshow(f)
hold on
plot(yH(:)', xH(:)', 'wo')
[xM yM] = find(cpM);
subplot(222),imshow(f)
hold on
plot(yM(:)', xM(:)', 'wo')

cpH = cornerprocess(CH, TH, 5);
cpM = cornerprocess(CM, TM, 5);
[xH yH] = find(cpH);
subplot(223),imshow(f)
hold on
plot(yH(:)', xH(:)', 'wo')
[xM yM] = find(cpM);
subplot(224),imshow(f)
hold on
plot(yM(:)', xM(:)', 'wo')

#使用函数regionprops
请添加图片描述

代码

clc,clear,close all;
B = imread('F:\qq\Digital-Image-Processing-main\Digital-Image-Processing-main\matlab教材示例图片\dipum_images_ch11\Fig1123(a)(Original_Padded_to_568_by_568).tif');
B = bwlabel(B);
D = regionprops(B, 'area', 'boundingbox');
A = [D.Area];
NR = numel(A);
V = cat(1, D.BoundingBox);

#统计纹理的测度
请添加图片描述

代码

clc,clear,close all;
f1 = imread('F:\qq\Digital-Image-Processing-main\Digital-Image-Processing-main\matlab教材示例图片\dipum_images_ch11\Fig1119(a)(superconductor-with-window).tif');
f2 = imread('F:\qq\Digital-Image-Processing-main\Digital-Image-Processing-main\matlab教材示例图片\dipum_images_ch11\Fig1119(b)(cholesterol-with-window).tif');
f3 = imread('F:\qq\Digital-Image-Processing-main\Digital-Image-Processing-main\matlab教材示例图片\dipum_images_ch11\Fig1119(c)(microporcessor-with-window).tif');
figure
subplot(231),imshow(f1)
subplot(232),imshow(f2)
subplot(233),imshow(f3)
f1 = imhist(f1);
f2 = imhist(f2);
f3 = imhist(f3);
subplot(234),plot(f1)
subplot(235),plot(f2)
subplot(236),plot(f3)
t = statxture(f1)

#基于共生矩阵的纹理描绘子
请添加图片描述

代码

clc,clear,close all;
f2 = imread('F:\qq\Digital-Image-Processing-main\Digital-Image-Processing-main\数字图像处理第三版 教材图片\DIP3E_CH11_Original_Images\DIP3E_CH11_Original_Images\Fig1130(a)(uniform_noise).tif');
G2 = graycomatrix(f2, 'NumLevels', 256);
G2n = G2/sum(G2(:));
stats2 = graycoprops(G2, 'all');
maxProbability2 = max(G2n(:));
contrast2 = stats2.Contrast;
corr2 = stats2.Correlation;
energy2 = stats2.Homogeneity;
hom2 = stats2.Homogeneity;
for I = 1:size(G2n, 1);
    sumcols(I) = sum(-G2n(I, 1:end).*log2(G2n(I, 1:end)...
        +eps));
end
entropy2 = sum(sumcols);
offsets = [zeros(50,1) (1:50)'];
G2 = graycomatrix(f2,'Offset',offsets);
stats2 = graycoprops(G2, 'Correlation');
figure
subplot(132),plot([stats2.Correlation]);
xlabel('Horizontal Offset')
ylabel('Correlation')

f1 = imread('F:\qq\Digital-Image-Processing-main\Digital-Image-Processing-main\数字图像处理第三版 教材图片\DIP3E_CH11_Original_Images\DIP3E_CH11_Original_Images\Fig1130(b)(sinusoidal).tif');
G2 = graycomatrix(f1, 'NumLevels', 256);
G2n = G2/sum(G2(:));
stats2 = graycoprops(G2, 'all');
maxProbability2 = max(G2n(:));
contrast2 = stats2.Contrast;
corr2 = stats2.Correlation;
energy2 = stats2.Homogeneity;
hom2 = stats2.Homogeneity;
for I = 1:size(G2n, 1);
    sumcols(I) = sum(-G2n(I, 1:end).*log2(G2n(I, 1:end)...
        +eps));
end
entropy2 = sum(sumcols);
offsets = [zeros(50,1) (1:50)'];
G2 = graycomatrix(f1,'Offset',offsets);
stats2 = graycoprops(G2, 'Correlation');
subplot(131),plot([stats2.Correlation]);
xlabel('Horizontal Offset')
ylabel('Correlation')

f3 = imread('F:\qq\Digital-Image-Processing-main\Digital-Image-Processing-main\数字图像处理第三版 教材图片\DIP3E_CH11_Original_Images\DIP3E_CH11_Original_Images\Fig1130(c)(cktboard_section).tif');
G2 = graycomatrix(f3, 'NumLevels', 256);
G2n = G2/sum(G2(:));
stats2 = graycoprops(G2, 'all');
maxProbability2 = max(G2n(:));
contrast2 = stats2.Contrast;
corr2 = stats2.Correlation;
energy2 = stats2.Homogeneity;
hom2 = stats2.Homogeneity;
for I = 1:size(G2n, 1);
    sumcols(I) = sum(-G2n(I, 1:end).*log2(G2n(I, 1:end)...
        +eps));
end
entropy2 = sum(sumcols);
offsets = [zeros(50,1) (1:50)'];
G2 = graycomatrix(f3,'Offset',offsets);
stats2 = graycoprops(G2, 'Correlation');
subplot(133),plot([stats2.Correlation]);
xlabel('Horizontal Offset')
ylabel('Correlation')

figure
subplot(311),imshow(f1)
subplot(312),imshow(f2)
subplot(313),imshow(f3)

#计算频谱纹理请添加图片描述
代码

clc,clear,close all;
f1 = imread('F:\qq\Digital-Image-Processing-main\Digital-Image-Processing-main\matlab教材示例图片\dipum_images_ch11\Fig1121(a)(random_matches).tif');
f2 = imread('F:\qq\Digital-Image-Processing-main\Digital-Image-Processing-main\matlab教材示例图片\dipum_images_ch11\Fig1121(b)(ordered_matches).tif');
f1_fft = fftshift(fft2(f1));
f2_fft = fftshift(fft2(f2));
figure
subplot(221),imshow(f1)
subplot(222),imshow(f2)
subplot(223),imshow(im2uint8(mat2gray(log(1+double(abs(f1_fft))))),[])
subplot(224),imshow(im2uint8(mat2gray(log(1+double(abs(f2_fft))))),[])
[srad, sang, S] = specxture(f1);
figure
subplot(221),plot(srad)
subplot(222),plot(sang)
[srad, sang, S] = specxture(f2);
subplot(223),plot(srad)
subplot(224),plot(sang)

#不变矩
请添加图片描述

代码

clc,clear,close all;
f = imread('F:\qq\Digital-Image-Processing-main\Digital-Image-Processing-main\matlab教材示例图片\dipum_images_ch11\Fig1123(a)(Original_Padded_to_568_by_568).tif');
fp = padarray(f, [84 84], 'both');
figure
subplot(231),imshow(fp)
ftrans = zeros(568, 568, 'uint8');
% ftrans(151:550,151:550) = f;
subplot(232),imshow(ftrans)
fhs = f(1:2:end, 1:2:end);
fhsp = padarray(fhs, [184 184], 'both');
subplot(233),imshow(fhsp)
fm = fliplr(f);
fmp = padarray(fm, [84 84], 'both');
subplot(234),imshow(fmp)
fr45 = imrotate(f, 45, 'bilinear');
fr90 = imrotate(f, 90, 'bilinear');
fr90p = padarray(fr90, [84 84], 'both');
subplot(235),imshow(fr45)
subplot(236),imshow(fr90p)
phi = invmoments(f);
format short e
phi
format short
phinorm = -sign(phi).*(log10(abs(phi)))

#使用主分量请添加图片描述

代码

clc,clear,close all;
f1 = imread('F:\qq\Digital-Image-Processing-main\Digital-Image-Processing-main\matlab教材示例图片\dipum_images_ch11\Fig1125(a)(WashingtonDC_Band1_512).tif');
f2 = imread('F:\qq\Digital-Image-Processing-main\Digital-Image-Processing-main\matlab教材示例图片\dipum_images_ch11\Fig1125(b)(WashingtonDC_Band2_512).tif');
f3 = imread('F:\qq\Digital-Image-Processing-main\Digital-Image-Processing-main\matlab教材示例图片\dipum_images_ch11\Fig1125(c)(WashingtonDC_Band3_512).tif');
f4 = imread('F:\qq\Digital-Image-Processing-main\Digital-Image-Processing-main\matlab教材示例图片\dipum_images_ch11\Fig1125(d)(WashingtonDC_Band4_512).tif');
f5 = imread('F:\qq\Digital-Image-Processing-main\Digital-Image-Processing-main\matlab教材示例图片\dipum_images_ch11\Fig1125(e)(WashingtonDC_Band5_512).tif');
f6 = imread('F:\qq\Digital-Image-Processing-main\Digital-Image-Processing-main\matlab教材示例图片\dipum_images_ch11\Fig1125(f)(WashingtonDC_Band6_512).tif');
figure
subplot(321),imshow(f1)
subplot(322),imshow(f2)
subplot(323),imshow(f3)
subplot(324),imshow(f4)
subplot(325),imshow(f5)
subplot(326),imshow(f6)

S = cat(3,f1,f2,f3,f4,f5,f6);
X = imstack2vectors(S);
P = principalcomps(X,6);
g1 = P.Y(:,1);
g1 = reshape(g1,512,512);
g2 = P.Y(:,2);
g2 = reshape(g2,512,512);
g3 = P.Y(:,3);
g3 = reshape(g3,512,512);
g4 = P.Y(:,4);
g4 = reshape(g4,512,512);
g5 = P.Y(:,5);
g5 = reshape(g5,512,512);
g6 = P.Y(:,6);
g6 = reshape(g6,512,512);
figure
subplot(321),imshow(g1,[])
subplot(322),imshow(g2,[])
subplot(323),imshow(g3,[])
subplot(324),imshow(g4,[])
subplot(325),imshow(g5,[])
subplot(326),imshow(g6,[])
d = diag(P.Cy);
P = principalcomps(X,2);
h1 = P.X(:,1);
h1 = mat2gray(reshape(h1,512,512));
D1 = tofloat(f1) - h1;

h2 = P.X(:,2);
h2 = mat2gray(reshape(h2,512,512));
D2 = tofloat(f2) - h2;

h3 = P.X(:,3);
h3 = mat2gray(reshape(h3,512,512));
D3 = tofloat(f2) - h3;

h4 = P.X(:,4);
h4 = mat2gray(reshape(h4,512,512));
D4 = tofloat(f4) - h4;

h5 = P.X(:,5);
h5 = mat2gray(reshape(h5,512,512));
D5 = tofloat(f5) - h5;

h6 = P.X(:,6);
h6 = mat2gray(reshape(h6,512,512));
D6 = tofloat(f6) - h6;
figure
subplot(321),imshow(D1,[])
subplot(322),imshow(D2,[])
subplot(323),imshow(D3,[])
subplot(324),imshow(D4,[])
subplot(325),imshow(D5,[])
subplot(326),imshow(D6,[])
P.ems
figure
subplot(121),imshow(abs(D1 - tofloat(f1)))
subplot(122),imshow(abs(D6 - tofloat(f6)))

#使用主分量调整物体请添加图片描述

代码

clc,clear,close all;
f = im2bw(imread('H:\desktop\dipum-master\DIPUM2E_International_Original_Book_Images\DIPUM2E_International_Original_Book_Images\DIPUM2E_International_Ed_CH11_Images\Fig1134(a).tif'));
[x1 x2] = find(f);
X = [x1 x2];
P = principalcomps(X, 2);
A = P.A;
Y = (A*(X'))';
miny1 = min(Y(:,1));
miny2 = min(Y(:,2));
y1 = round(Y(:,1) - miny1 + min(x1));
y2 = round(Y(:,2) - miny2 + min(x2));
idx = sub2ind(size(f),y1,y2);
fout = false(size(f));
fout(idx) = 1;
fout = imclose(fout, ones(3));
fout = rot90(fout,2);
figure
subplot(231),imshow(f)
subplot(234),imshow(fout)

f = im2bw(imread('H:\desktop\dipum-master\DIPUM2E_International_Original_Book_Images\DIPUM2E_International_Original_Book_Images\DIPUM2E_International_Ed_CH11_Images\Fig1134(b).tif'));
[x1 x2] = find(f);
X = [x1 x2];
P = principalcomps(X, 2);
A = P.A;
Y = (A*(X'))';
miny1 = min(Y(:,1));
miny2 = min(Y(:,2));
y1 = round(Y(:,1) - miny1 + min(x1));
y2 = round(Y(:,2) - miny2 + min(x2));
idx = sub2ind(size(f),y1,y2);
fout = false(size(f));
fout(idx) = 1;
fout = imclose(fout, ones(3));
fout = rot90(fout,2);
subplot(232),imshow(f)
subplot(235),imshow(fout)

f = im2bw(imread('H:\desktop\dipum-master\DIPUM2E_International_Original_Book_Images\DIPUM2E_International_Original_Book_Images\DIPUM2E_International_Ed_CH11_Images\Fig1134(c).tif'));
[x1 x2] = find(f);
X = [x1 x2];
P = principalcomps(X, 2);
A = P.A;
Y = (A*(X'))';
miny1 = min(Y(:,1));
miny2 = min(Y(:,2));
y1 = round(Y(:,1) - miny1 + min(x1));
y2 = round(Y(:,2) - miny2 + min(x2));
idx = sub2ind(size(f),y1,y2);
fout = false(size(f));
fout(idx) = 1;
fout = imclose(fout, ones(3));
fout = rot90(fout,2);
subplot(233),imshow(f)
subplot(236),imshow(fout)
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值