摘要: ## RGB图像的基本操作 【代码】 ```matlab I=imread('D:\lab1\RGB.jpg');%读入图像 Ig=rgb2gray(I);%将RGB图像转化为灰度值图像 threshold=graythresh(Ig); bw=im2bw(Ig,128/256); %利用im2bw 阅读全文
posted @ 2022-04-21 23:40 Weltㅤ 阅读(1753) 评论(0) 推荐(0) 编辑