How can I give different thresholds to an image
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Joydeb Saha
el 11 de Abr. de 2022
Comentada: Joydeb Saha
el 10 de Mayo de 2022
How can I give different thresholds to an image? If 'cot' is the image matrix I have attached how can i give a threshold of zero, implying all pixels with non-zero values? Then all pixels above 1, and then all those above 5?
0 comentarios
Respuesta aceptada
Walter Roberson
el 11 de Abr. de 2022
first_answer = cot ~= 0;
second_answer = cot > 1;
third_answer = cot > 5;
If you are trying to categorize the pixels by range, then see discretize()
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!