MatLab学习作业之数字图像处理下(台大郭彦甫)

Practice
一:Write a program to convert the image rice.png into a binary image using a threshold
• Do NOT use im2bw()
• Try different threshold values to see if you program works
%设定阈值使得rice图片成为黑白图,使用for循环自己设定阈值
I=imread(‘rice.png’);
level=mean(mean(I));%本次使用平均数作为阈值
BW=ones(256,256);预先创立矩阵加快运算速度
for i=1:size(I,1)
for j=1:size(I,2)
if I(i,j)>=level
BW(i,j)=255;
else
BW(i,j)=0
end
end
end
subplot(1,2,1); imshow(I);
subplot (1,2,2); imshow(bw);
二:Plot the histogram of grain size(画出米大小的分布直方图)
• Identify all the grains in the image by painting them in red(将所有的米标定为red)
clear all
clc
close all
I=imread(‘rice.png’);
BG=imopen(I, strel(‘disk’, 15));%得到背景background
I2=imsubtract(I, BG); level=graythresh(I2);%得到减去之后的和阈值
BW=im2bw(I2, level);%转化为黑白图
[labeled, numObjects]=bwlabel(BW, 8);%得到米数并进行标定
imhist()%在这不太会了,不知道如何得到米大小的分布的直方图&&

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值