extract only white pixels from an image
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
How can I extract mean and variance of only white pixels of an image?
0 comentarios
Respuestas (1)
Image Analyst
el 28 de Dic. de 2019
Editada: Image Analyst
el 28 de Dic. de 2019
What value do you consider "white"? Let's say it's 230. Then you can get a binary image
binaryImage = grayImage >= 230;
Now, exactly what does "extract" mean to you? You want to consider all the gray values in the binary image? If so do
maskMean = mean(grayImage(binaryImage));
maskSD = std(grayImage(binaryImage));
maskVar = var(grayImage(binaryImage));
Ver también
Categorías
Más información sobre Convert Image Type en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!