how i can load tiff image from database?
显示 更早的评论
hi, ihave an tiff image database and want to load image one by one ,then feature extraction loaded iamge and save result. how can i load image? thanks alot
回答(3 个)
Grufff
2013-6-22
0 个投票
If you search google for "load tiff image into Matlab" the very first hit leads you to this page, from the Mathworks documentation:
That explains the imread command, and how to use it to load tiff images.
Image Analyst
2013-6-22
0 个投票
What does "database" mean to you? Just a folder with a collection of images, or a real database, like from Oracle or somebody? If it's just a bunch of images, you can use imread() or the TIFF class reader. See tiff in the help facility.
For feature extraction, see the Image Segmentation Tutorial in my File Exchange: Image Analyst's awesome File Exchange
sodeh
2013-6-23
编辑:Walter Roberson
2015-6-2
2 个评论
Image Analyst
2013-6-24
Um, you forgot to tell us the error!!!
Walter Roberson
2015-6-2
files = dir( fullfile(folder_name, '*.tif'));
类别
在 帮助中心 和 File Exchange 中查找有关 Convert Image Type 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!