I'm planning on making a rather large database of faces/embeddings. I want to know whats the best way to sort my list of embeddings and I also want to know what's the best way to search my list for the most similar face. I'm using deepface for my facial recognition and identification.
Whats the best way to sort and search for similar embeddings for facial recognition
267 Views Asked by Good boi At
1
There are 1 best solutions below
Related Questions in ALGORITHM
- MCNP 6 - Doubts about cells
- Given partially sorted array of type x<y => first apperance of x comes before first of y, sort in average O(n)
- What is the algorithm behind math.gcd and why it is faster Euclidean algorithm?
- Purpose of last 2 while loops in the merge algorithm of merge sort sorting technique
- Dots and Boxes with apha-beta pruning
- What is the average and worst-case time complexity of my string searching algorithm?
- Building a School Schedule Generator
- TC problem 5-2:how to calculate the probability of the indicator random variable?
- LCA of a binary tree implemented in Python
- Identify the checksum algorithm
- Algorithm for finding a subset of nodes in a weighted connected graph such that the distance between any pair nodes are under a postive number?
- Creating an efficent and time-saving algorithm to find difference between greater than and lesser than combination
- Algorithm to find neighbours of point by distance with no repeats
- Asking code suggestions about data structure and algorithm
- Heap sort with multithreading
Related Questions in SORTING
- Sorting a List by its property renames all the objects in the List
- Does Sort() method in C# use recursion?
- ARM Assembly code is not executing in Vitis IDE
- Creating an efficent and time-saving algorithm to find difference between greater than and lesser than combination
- Heap sort with multithreading
- Laravel Livewire data table sorting livewire update payload
- basic MergeSort exercise
- How to import a range into a variant array in Excel VBA and sort using the sort method?
- Looker Studio | pivot chart - sorting by metric and last month
- how to create an array of multiples of 5 and display it in reverse
- matplotlib sort barh by values
- Custom Sorting Javascript with A-Z set
- Mainframe Programming Sorting, OUTFIL REMOVECC,NODETAIL
- Soft list based on another list
- SQL query : creating table with distinct values on selected columns
Related Questions in FACE-RECOGNITION
- Way to get CustomPainter to track face in Camera Flutter MLKit
- Face Recognition in Windows Logon
- Should I use the default model in the deepface package or fine-tune it to fit with my data for face recognition?
- How to use Google ML KIT to recognize facial expressions Determine whether a person is smiling or has their eyes closed
- Change Windows Logon
- Issue FaceRecognition
- face_recognition library: TypeError: compute_face_descriptor(): incompatible function arguments
- AttributeError: module 'face_recognition' has no attribute 'face_encodings' if tried to use as REST API
- Is this model overfit or underfit?
- i have install face_recognition_models but it is not importing in vscode and keep saying inytsall face_recognition model consider i am a new mac user
- Bug known when scanning face, the camera spamming take photo and doing flashing on screen on iPhone
- How to execute mqtt commands of Getconfig in android java
- How to handle specs glare in face recognition?
- How to classify facials features embedding with high accuracy(+ 90%). what adjustment can i make in svm model to classify 20+ classes
- Error :"tile cannot extend outside image"
Related Questions in DATABASE-MANAGEMENT
- Solr reindex using Python
- Dynamics 365 Finance and Operations - Delete or disable a Fixed asset location
- MongoDB $match seems to not working in aggregation
- How to Baseline an sql script so that it won't show in the pending migrations in flyway
- Strategies for reducing/shrinking size of Azure SQL Database
- RESTful api for database management
- Navicat for MySQL: Can I export each result set (multiple) from one query into individual CSV files?
- Whats the best way to sort and search for similar embeddings for facial recognition
- Undefined reference error along with exit status error when trying to call function in database management system
- C++ Database skipping inputs
- Database Management - Should I use multiple databases?
- Can I use firebase for only auth and any other SQL database to store other user data?
- Best practices for managing changelogs from different applications
- How to join each order with its price?
- How do I find files with a greater numerical value than a file based upon timestamp in the filename
Related Questions in DEEPFACE
- Calculating EuclideanDistance in SQL for Deepface facial embeddings?
- Should I use the default model in the deepface package or fine-tune it to fit with my data for face recognition?
- vercel: Error: Size of uploaded file exceeds 300MB
- the layer sequential has never been called and thus has no defined input
- ValueError: The layer sequential has never been called and thus has no defined input
- ImportError: cannot import name 'LocallyConnected2D' from 'tensorflow.keras.layers'
- I'm trying to make this Face Recognition Program from NeuralNine with the use of opencv and Deepface but
- Error when trying to install DeepFace on Python 3.9
- cv2.dnn issue with using SDD in deepface.analyze(): no attribute 'readNetFromCaffe'
- AttributeError: 'NoneType' object has no attribute 'xy' (YOLOV8 | Deepface)
- i have problem with keras_vggface library
- Is media pipe is use with deep face for face recognition for better accuracy
- `AssertionError` while installing `deepface` via pip
- DeepFace IndexError: single positional indexer is out-of-bounds
- Error with DeepFace library in Chaquopy Android Project
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Assume
df['embeddings']has a collection of all the embeddings you want to match againstface_embeddingis the one you're finding the nearest match toDefine the distance function
Apply the distance function to the 'embeddings' column of the dataframe
Find the index of the closest match