|
|
|
|
|
by westside1506
6303 days ago
|
|
Does this technology work using both images simultaneously? Or could lots of images be pre-processed individually into something that allowed a cheaper comparison? Just to try to explain the question better, here's an example. Let's say I have 10 images and I want to find the most similar people among any pair of images. Do I need to run every pair of images (45 full comparisons) or can I pre-process the 10 images into something such that the 45 comparisons can be done in a less expensive way? |
|
Generating 2 templates is many more times expensive than comparing those templates. However, as your dataset grows, generating templates grows at N, and the number of comparisons you need to do grows at N^2. So eventually, comparisons dominate.