필터 지우기
필터 지우기

how to find euclidean distance

조회 수: 1 (최근 30일)
maha lakshmi
maha lakshmi 2013년 2월 27일
I have calculated 1080 features for the image using 2d-dual tree discrete wavelet transform(the features include energy, entropy,standard deviation,mean).How to use all these features and calculate euclidean distance. I have 1000 images in my database please give some idea or suggestion about it.

답변 (1개)

Jan
Jan 2013년 2월 27일
The Euclidean distance can be calculated between two vectors. Do you want to treat the 1080 features as elements of a vector? This would work, but treating all elements equally might be a bad idea: Is the mean and the entropy really equivalent for the wanted distance?
x1 = rand(1, 1080);
x2 = rand(1, 1080);
dist = sqrt(sum((x1-x2).^2));

카테고리

Help CenterFile Exchange에서 AI for Signals and Images에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by