How to converting cell to matrix for image based classification?
조회 수: 1 (최근 30일)
이전 댓글 표시
To train my data using SVM classifier, I am using 'fitcecoc' function, the input argument it takes must be matrix or table.
I am trying basic classification using only images not doing any feature extractiion. The feature vector that I created consist of nested cell which I am not able to convert into matrix. Please help
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/725529/image.png)
댓글 수: 2
KALYAN ACHARJYA
2021년 8월 31일
편집: KALYAN ACHARJYA
2021년 8월 31일
Have you tried with cell2mat of train vector, then apply the same?
채택된 답변
Robert U
2021년 9월 1일
Hi Nikhat Ali,
Please have a look into documentation fitcecoc(). The way you call the function is not working since data format and data dimensions is not correct.
"trainvector" must be data type "double" or "single". Plus, the matrix is supposed to be sparse or full, and the length of "trainingLabels" must correspond to the number of observations.
I suppose, neither data type nor number of observations fit.
Kind regards,
Robert
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Classification Ensembles에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!