extracting pixel values from image
2 ビュー (過去 30 日間)
古いコメントを表示
Smruti Khobragade
2020 年 1 月 29 日
コメント済み: Smruti Khobragade
2020 年 1 月 29 日
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?
0 件のコメント
採用された回答
Jose Jeremias Caballero
2020 年 1 月 29 日
編集済み: 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
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Orange についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!