How to create database to store values

2 ビュー (過去 30 日間)
Pat
Pat 2012 年 12 月 29 日
コメント済み: AJ 2019 年 11 月 9 日
I have extracted two eatures of an image and have saved it in a variable
A=[f1 f2]%f1,f2 features
now i have 100 images and i want to save it to database,so finally my database will contain values of size 100x2
please help

採用された回答

Sabarinathan Vadivelu
Sabarinathan Vadivelu 2012 年 12 月 29 日
編集済み: Sabarinathan Vadivelu 2012 年 12 月 29 日
for i = 1 : 100 % 100 is number of images
A{i} = [f1 f2]; % make A as a cell
end
save('features.mat','A'); % create database
  10 件のコメント
Srikanth
Srikanth 2014 年 2 月 7 日
I have 1000 images of database and 4 features extracted for each image using graycoprops for glcm ... i wanted to create a mat file.... please could u help me in creating a mat file...
AJ
AJ 2019 年 11 月 9 日
Unable to perform assignment
because the left and right sides
have a different number of
elements.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeConvert Image Type についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by