how to store images in a database
Mostrar comentarios más antiguos
I have some doubts regarding my project on facial recognition. After capturing image using a camera
- how to store them?
- where should i store them?
- which database should i use?
- how to retrieve and update?
- how to check an image with an existing image?
Those are all my doubts. If I know these concepts I can start my project.
Respuestas (2)
Chris
el 27 de En. de 2011
0 votos
You can literally just use the save command in MATLAB. It has a lot of options including saving as a standard image format such as BMP, JPG or PNG. If you want more information stored with the image you can save each image or group of images in a single monolithic .mat file.
3 comentarios
Walter Roberson
el 27 de En. de 2011
The save() command itself does not allow storage as image formats. There is a saveas() command which saves a complete figure, and there is a print() command which can work on less than a figure.
Chris
el 28 de En. de 2011
My apologies, it is the imwrite command that saves a variable as an image file. The rest stands though, so long as the picture is in an array not a figure, you can save it along with any other variables to a monolithic .mat file using save.
ramesh jallu
el 28 de En. de 2011
Walter Roberson
el 27 de En. de 2011
0 votos
Store the images where-ever you like that has enough room, is fast enough, and that you are authorized to use.
The exact choice of database probably will not matter to you, as the interface to them is fairly similar.
1 comentario
ramesh jallu
el 28 de En. de 2011
Categorías
Más información sobre Semantic Segmentation en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!