フィルターのクリア

I have an RGB image and I need to find the area of black pixels in the image

17 ビュー (過去 30 日間)
Pretty much the question, How do I find out the area of black pixels in an image?
  1 件のコメント
DGM
DGM 2022 年 10 月 8 日
You need to convert the image to a logical mask that describes the black regions. In order to do that, you need to define what "black" means in whatever context you're dealing with. There are existing examples of thresholding and color-based segmentation throughout the forum; otherwise, you'll have to provide an example image and a description of the expectations.
Once you have that logical mask, you can use bwarea(), nnz() or perhaps regionprops() to get the area in pixels. It depends if you want to find the total area or the area of each isolated region.

サインインしてコメントする。

採用された回答

Image Analyst
Image Analyst 2022 年 10 月 8 日
Try this:
rgbImage = imread('coloredChips.png');
subplot(2, 1, 1);
imshow(rgbImage);
impixelinfo;
% Find black. Defined as where the gray scale is less than 40.
mask = rgb2gray(rgbImage) < 40;
subplot(2, 1, 2);
imshow(mask);
% Get the area (number of black pixels).
numBlackPixels = nnz(mask)
numBlackPixels = 2568

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeExplore and Edit Images with Image Viewer App についてさらに検索

製品


リリース

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by