Borrar filtros
Borrar filtros

How to save SURF feature value?

1 visualización (últimos 30 días)
S.A
S.A el 23 de Abr. de 2018
Comentada: chetna kaushal el 2 de Ag. de 2019
I have extracted feature from a single image using SURF feature extraction method. The extracted features are in matrix of 64 column and i have made a matrix to single value i.e adding matrix values. But my problem is, the particular single value which i have obtained by using sum function keeps altering every time when I run the code. Once if the value is 32.0676 next time when i run the same code it will be 29.0778 or something other value. I have attached the code for it and the image.
  1 comentario
chetna kaushal
chetna kaushal el 2 de Ag. de 2019
hy,
the extracted features are in a 64 column but value is different for each image. say 322*64, 593*64, 233*64. How did you come up to a single value? and how to feed them for testing in classification.

Iniciar sesión para comentar.

Respuesta aceptada

KALYAN ACHARJYA
KALYAN ACHARJYA el 23 de Abr. de 2018
Editada: KALYAN ACHARJYA el 23 de Abr. de 2018
Because in your code following random column vector generation is there, every time it generates different column vector, therefore "sumoffeatures" value changes
columnvector = rand(1,64)
  3 comentarios
KALYAN ACHARJYA
KALYAN ACHARJYA el 23 de Abr. de 2018
Editada: KALYAN ACHARJYA el 23 de Abr. de 2018

Just fixed the column vector, add one following line-

rng(1);
columnvector = rand(1,64)
S.A
S.A el 23 de Abr. de 2018
Thank you. It works

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Get Started with MATLAB en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by