Borrar filtros
Borrar filtros

creating database in matlab

3 visualizaciones (últimos 30 días)
sweta arya
sweta arya el 7 de Ag. de 2015
Comentada: sweta arya el 11 de Ag. de 2015
I want to create a database of images,containing various fields like image name,brightness value of image and colorfulness of image etc.after filling the values in database ,i want to retrieve specific images based on brightness & colorfulness features of image.how can i do this?

Respuesta aceptada

Walter Roberson
Walter Roberson el 7 de Ag. de 2015
Use a struct array, one entry per file.
When it comes time to search on (say) brightness, then
all_brightness = [YourStruct.brightness];
bright_match = all_brightness >= min_to_match & all_brightness <= max_to_match;
matching_entries = YourStruct(bright_match);
Now matching_entries is the subset that match on brightness. You can process them further. For example,
fprintf('The %d images that match are:\n', length(matching_entries));
disp({matching_entries.filename});
  7 comentarios
sweta arya
sweta arya el 11 de Ag. de 2015
Thank you
sweta arya
sweta arya el 11 de Ag. de 2015
from where i can collect images (of poor,average & high quality) for my analysis?

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by