Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
I have quantized hsv into 8×3×3 combinations,so I want to find what is number of pixels per each bin how do I do it
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
h
0 comentarios
Respuestas (3)
Image Analyst
el 13 de En. de 2018
If you have taken the 3-D histogram, then you have the values. If you really "have quantized hsv into 8×3×3 combinations" then how can you not have that variable??? What happened to it? Did you clear it for some reason? If so, why?
10 comentarios
Image Analyst
el 16 de En. de 2018
Sorry, it should be h,s,v=1,2,3
hImage = hsvImage(:, :, 1);
sImage = hsvImage(:, :, 2);
vImage = hsvImage(:, :, 3);
teja jayavarapu
el 13 de En. de 2018
1 comentario
Image Analyst
el 14 de En. de 2018
Same way I already showed you. The code does not care where rgbImage came from: imread() or indexing a block of a larger image. The code works the same regardless of where rgbImage originated.
La pregunta está cerrada.
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!