필터 지우기
필터 지우기

How to start coding for a content based image retrieval system using color?

조회 수: 1 (최근 30일)
i have an images folder. how to calculate the histograms of all images in the folder and compare it with the query image(image selected by the user) and display all the similar images?

채택된 답변

Walter Roberson
Walter Roberson 2013년 3월 29일
  댓글 수: 2
Ruhi
Ruhi 2013년 3월 30일
For comparison of the query image histogram with the histograms of all images, how to store all the histograms in a feature vector folder?
Walter Roberson
Walter Roberson 2013년 3월 30일
fv_folder = 'feature_vectors';
for K = 1 : 10
histogram = hist(.....);
filename = sprintf('hist_%03d.mat', K);
save( fullfile(fv_folder, filename), 'histogram')
end

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

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by