-
Notifications
You must be signed in to change notification settings - Fork 31
FindDescriptorSet
Chaunte W. Lacewell edited this page Mar 15, 2024
·
2 revisions
We can perform queries to obtain information regarding a descriptor set and to explicitly perform a store index operation for a specific index.
- set: name of the set.
- [optional] storeIndex: Store current indices (call index_>store()).
- [optional] constraints
- [optional] results
This is a sample query to find a descriptor set and list the metric, dimension, and engine of the set
{
"FindDescriptorSet": {
"set": "testFind",
"storeIndex": true
}
}
In this case, VDMS will return:
[
{
"FindDescriptorSet": {
"entities": [
{
"VD:descSetPath": "db/descriptors/testFind",
"VD:dimensions": 128,
"VD:engine": "FaissFlat"
}
],
"returned": 1,
"status": 0
}
}
]
Visual Data Management System - Intel Labs
FLINNG Library and Performance
Basic Building Blocks
Insert
- AddBlob
- AddBoundingBox
- AddConnection
- AddDescriptor
- AddDescriptorSet
- AddEntity
- AddImage
- AddVideo
- NeoAdd
Query
- ClassifyDescriptor
- FindBlob
- FindBoundingBox
- FindConnection
- FindDescriptor
- FindDescriptorSet
- FindEntity
- FindFrames
- FindImage
- FindVideo
- NeoFind
Update