Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Average vector as reference for person identification? #583

Open
xperroni opened this issue Sep 23, 2024 · 0 comments
Open

Average vector as reference for person identification? #583

xperroni opened this issue Sep 23, 2024 · 0 comments

Comments

@xperroni
Copy link

I'm using OSNet for people identification against a pre-recorded database. Each person in the database is represented by a set of M vectors, each computed from a picture taken at a previous time. To confirm a person's identity, the system:

  1. Retrieves the set M corresponding to the claimed identity;
  2. Collects a new picture of the person, then extracts a new vector p representing their appearance;
  3. Computes the distance from p to every vector in M;
  4. Takes the closest distance as the measurement of how similar p is to M;
  5. Compares the similarity measurement to an arbitrary threshold to decide whether the person's appearance matches the pre-recorded set.

After looking at these plots, I'm wondering whether I could just compute the mean and standard deviation of M, compute the distance between p and the mean of M, then decide if p is a match by comparing the distance to some multiple of the standard deviation.

Any arguments against this updated approach?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant