0

我正在尝试将灰度图像转换为具有两个阈值的二进制图像:

  • img = 灰度图像
  • b = 输出二值图像
  • 如果 (img > t1) 或 (img < t2) 那么 b = 1
  • 否则 b = 0
t1 = 200;
t2 = 100;
src = imread('an rgb image');
img = reg2gray(src);
b1 = imbinarize(img, t1);
b2 = imbinarize(img, -t2);
b = imadd(b1,b2);

但这段代码不起作用。有没有办法同时设置多个阈值?

4

2 回答 2

3

使用逻辑矩阵。

b=(img>t1) | (img<t2);
于 2020-09-11T15:58:25.927 回答
1

可以将条件语句应用于数组。当条件为真时,初始化数组的值设置为 1,数组的其余单元格设置为 0。

二值化图像

RGB_Image = imread("RGB_Image.png");
Grayscale_Image = rgb2gray(RGB_Image);

imshow(Grayscale_Image);
Threshold_1 = 220;
Threshold_2 = 100;

Binary_Image = ((Grayscale_Image > Threshold_1) | (Grayscale_Image < Threshold_2));

subplot(1,2,1); imshow(RGB_Image);
title("RGB Image");
subplot(1,2,2); imshow(Binary_Image);
title("Binary Image");
于 2020-09-11T16:15:55.113 回答