필터 지우기
필터 지우기

Creating Feature vector in .mat file

조회 수: 1 (최근 30일)
Neha  Singh
Neha Singh 2017년 6월 18일
댓글: munipraveena rela 2021년 3월 30일
I wanted to create a feature vector for training dataset and wanted to store all feature as rows in the.mat file. The .mat file must be in the form
I am able to extract Feature of 1 image and store it in excel file or .mat file but not able to extract all image feature and store it in .mat file. Can anyone knows this?
  댓글 수: 4
dpb
dpb 2017년 6월 18일
Don't expect folks to go somewhere else...post the info here or use stackoverflow, your choice.
Neha singh
Neha singh 2017년 6월 19일
편집: Neha singh 2017년 6월 19일
Hi @KSSV, All the dimension of the images are same. So here is my sample code .
I am able to get
xpecting somthing to do like

댓글을 달려면 로그인하십시오.

채택된 답변

dpb
dpb 2017년 6월 19일
graycoprops returns a structure containing the requested statistics in fields of each name; hence you got what you requested in the .mat file.
To convert that structure to an array of contiguous features, use
features=struct2array(stats);
if all the features returned are commensurately-sized arrays (and I don't know if that is true or not; I don't have Image Processing TB to test). If not, you'd have to take the variously-shaped/sized arrays in the various structure names and convert them individually to linear vectors to concatenate by row.
In your code above, even when you're concatenating the structs into mydataGLCM, you've got the initialization of creating the empty container variable INSIDE the loop so you end up with only the last one as that throws away all the previous.
PS: Why do you continue to make it so difficult to try to help by pasting essentially nearly illegible images owing to their size plus one can't do anything with the code without typing everything in again. Copy and paste text and code so folks here have a chance (and then be sure to format it so it's legible using the {}Code button where needed.
  댓글 수: 7
munipraveena rela
munipraveena rela 2021년 3월 30일
mydataGLCM = [mydataGLCM; feat(:)];
stores data in row wise
munipraveena rela
munipraveena rela 2021년 3월 30일
mydataGLCM = [mydataGLCM; feat]

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

fadi ssuhimat
fadi ssuhimat 2020년 2월 11일
did you get the right answer... I have same problem now?

카테고리

Help CenterFile Exchange에서 Images에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by