MATLAB: How to form a feature vector

feature vectorretina

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.

Best Answer

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.
Related Question