darkest pixel in image

5 次查看(过去 30 天)
nagini
nagini 2013-2-26
i want to get the darkest pixel in an image. the histogram represents the tonal distributions. the pixels that are darkest of all will be at the first line in histogram. how to get the pixels values that are in the darkest gray levels from an histogram. Please anybody help me.

采纳的回答

ChristianW
ChristianW 2013-2-26
X = rand(100);
[C,I] = min(X(:));

更多回答(1 个)

Tijmen
Tijmen 2013-2-26
If you only have a gray-value image, then the following command will suffice:
darkestPixelValue = min(image(:));
If you have a color image, you first need to convert it to gray-values:
imageGray = im2gray(image);
darkestPixelValue = min(imageGray(:));
If you also would like to find the indices of the pixels in the image, you can use the following command:
[rowVal, colVal] = find(image == darkestPixelValue);
This returns an array of row- and column values corresponding to points at which the pixels are darkest.
  1 个评论
Image Analyst
Image Analyst 2013-2-26
Right, just remember not to use "image" as the name of your variable. Call it rgbImage or something so you don't blow away the built in image() function.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Image Processing Toolbox 的更多信息

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by