extracting pixel values from image

2 次查看(过去 30 天)
Hello,
I have to get the value of pure black pixel in images which hva colorbar
i have converted the range of pixels using function of thresholding and divided the image accorging.
how can i get value of highest and min value(how pure the black color is?)
like waht is the highrst value of pixels ie highest value of black color in each image?

采纳的回答

Jose Jeremias Caballero
编辑:Jose Jeremias Caballero 2020-1-29
a=imread('binary2.jpg');
imshow(a);
minimum=min(min(a)),
[row,column]=find(a==minimum);
hold on,
plot(column,row,'*'),
hold off,
minimum =
uint8
88
  2 个评论
Smruti Khobragade
Smruti Khobragade 2020-1-29
sir i want mininum in the range 0-1 as shown in colorbar
like first pic will have pure black value as 0.8 secind image which vakue low black color will have output according to colorbar as 0.2 something

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Image Segmentation and Analysis 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by