Borrar filtros
Borrar filtros

How to form a feature vector?

3 visualizaciones (últimos 30 días)
Sidra Aleem
Sidra Aleem el 30 de Mzo. de 2017
Comentada: KSSV el 30 de Mzo. de 2017
Hello everyone I am doing a project "identification of person using retina". I have extracted my features (Bifurcation Points and end Points). Now I have to make a feature vector. This feature vector should have the distance and angles between four nearest features of every feature point. Please guide me about some methods through which I can do it. I am not asking for the code. I am only asking for some methods to do it. Below is the image of what I have done so far.

Respuesta aceptada

KSSV
KSSV el 30 de Mzo. de 2017
As you have the positions (x,y) in your hand. You can use knnsearch to get the desired number of nearest neighbors. Once you have the nearest neighbors, you can find distance and angle. Read about knnsearch.
  2 comentarios
Sidra Aleem
Sidra Aleem el 30 de Mzo. de 2017
Editada: Sidra Aleem el 30 de Mzo. de 2017
@kSSV I have to find the distance and angle between four nearest feature points. Not the angle and distance between four nearest neighbors. I have given colors to feature point using Crossing number technique. This technique performs computation and depending on resulting value color is given.
Can you guide me a bit how can i find angle and distance.?
KSSV
KSSV el 30 de Mzo. de 2017
If (x1,y1) and (x2,y2) are two points.
distance = sqrt((x2-x1)^2+(y2-y1)^2) ;
angle = atan2(y2-y1,x2-x1)

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Agriculture en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by