comparing the values

i have extracted features of 8 images
A=115.9607 118.7609 118.7595 118.7681 118.3420 118.1658 118.0285 118.0862
and one query image from same dataset
query=118.7595
now i want to compare these two values A,query ,if the query value is present in A,i want to display the query image ,i used euc distance ,i get error ,please help

답변 (1개)

Andrei Bobrov
Andrei Bobrov 2012년 2월 15일

0 개 추천

eg: imageCells - cell array contains 8 images (double array)
t = {'descend','ascend'}
imageCells = arrayfun(@(i1)sort(rand(200,200,3),randi(3),t{randi(2)}),1:8,'un',0)
A=[115.9607 118.7609 118.7595 118.7681 118.3420 118.1658 118.0285 118.0862];
query=118.7595;
t = abs(A - query) < 100*eps;
if any(t), imshow(imageCells{t}); end

댓글 수: 3

FIR
FIR 2012년 2월 15일
Andrei can u please tell what imagecell is ,i did not understand
FIR
FIR 2012년 2월 15일
plz can u tell how to form it
Andrei Bobrov
Andrei Bobrov 2012년 2월 16일
corrected

이 질문은 마감되었습니다.

질문:

FIR
2012년 2월 15일

마감:

2021년 8월 20일

Community Treasure Hunt

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

Start Hunting!

Translated by