필터 지우기
필터 지우기

How to form a feature vector?

조회 수: 3 (최근 30일)
Sidra Aleem
Sidra Aleem 2017년 3월 30일
댓글: KSSV 2017년 3월 30일
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.

채택된 답변

KSSV
KSSV 2017년 3월 30일
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
Sidra Aleem
Sidra Aleem 2017년 3월 30일
편집: Sidra Aleem 2017년 3월 30일
@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 2017년 3월 30일
If (x1,y1) and (x2,y2) are two points.
distance = sqrt((x2-x1)^2+(y2-y1)^2) ;
angle = atan2(y2-y1,x2-x1)

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Agriculture에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by