does anyone have idea to create image databases in matlab?

1 view (last 30 days)
i need to create an iris image database.where each image has its corresponding parameters stored like name,age, etc. when i input an image it should match the image in database and output the parameters... any idea on how to start?

Accepted Answer

Image Analyst
Image Analyst on 29 Jan 2013
Why not just store the images as separate files in a folder, and all their data in a .mat file. Do you really need an official database (like Oracle or whatever)?
  4 Comments
Jason Ross
Jason Ross on 29 Jan 2013
Since you are thinking "database", you can still design your program to act like it's calling a database and getting a list of results, even if you do it as suggested using a mat file and a collection of files, which sounds sufficient for now. If this program is going to grow to service a larger collection, at some point you'll likely benefit from using a database, and if you design it right, you'll just need to replace your simple implementation with the actual calls to the database.
Of course, if this is a project that will be entirely complete at the end and not grow into something more, then you just stick with the easy implemtnation, get it done, and move on, and not add extra levels of complexity when they are not strictly required. Nothing at all wrong with that.
Image Analyst
Image Analyst on 29 Jan 2013
If the time comes, there is a "Database Toolbox" though I've never tried it.

Sign in to comment.

More Answers (0)

Categories

Find more on Image Processing Toolbox in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!