0

我有一个 240x20 像素的图像。我已经计算了一个最佳阈值来找到图像中的噪声。在观察到图像的特定区域后,x 方向上包含从 20 到 70 的噪声。

现在我想在该特定区域应用阈值。是否有任何简单的方法。

4

1 回答 1

2

如果我正确理解您的问题,这可能会奏效(仅在八度音阶中测试):

bw = im2bw(I(y1:y2, x1:x2, :), threshold);
% y1 = start row
% y2 = end row
% x1 = start column
% x2 = end row
% the last column is for color images, so you address all color channels
% bw is an extract from the image I with the threshold applied
于 2012-06-13T11:05:32.327 回答