How to create a database of feature vectors for images?
조회 수: 3 (최근 30일)
이전 댓글 표시
I have a database of around 4 classes each consistent of around 50 images.I created a features vector on matlab to extract the features i need from each image.My question is how to create the database of vectors for all the images to then train them per class .
댓글 수: 0
답변 (1개)
KSSV
2017년 6월 19일
N = 50 ; % number of fimages
C = 4 ; % number of classes
%%loop for each image
iwant = cell(N,C) ;
for i = 1:N
%%Extract the features of images,
iwant{i,1} = rand(10) ;
iwant{i,2} = rand(5) ;
iwant{i,3} = rand(6) ;
iwant{i,4} = rand(11) ;
end
%%Rows corresponds to each image, and columns correspon to each class of the respective image
댓글 수: 5
KSSV
2017년 6월 19일
If vec1,vec2, vec3 and vec4 are your feature vectors for image 1. Use: iwant{i,1} = vec1 ; iwant{i,2} = vec2 ; iwant{i,3} = vec3 ; iwant{i,4} = vec4; end
참고 항목
카테고리
Help Center 및 File Exchange에서 Denoising and Compression에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!