|
|
|
|
|
by motohagiography
1891 days ago
|
|
Could this technique be used to index images for search? e.g. intuitively, the triangles and their layout seem to preseve more unique information about the image than a grid would, kind of like Vornoi partitions, or an entropy preserving sample. This isn't my area of expertise at all, but intuitively it seems like if you treated the triangles as a graph, you could sample a minimal subgraph from an image and then search for other files that have a similar subgraph. It's conceptually like "geometric hash." Is that what this technique is for, as it seems to have more applicaitons than just an image filter. |
|
[1]: https://en.wikipedia.org/wiki/Subgraph_isomorphism_problem
[2]: https://en.wikipedia.org/wiki/K-d_tree
[EDIT]:
Graph canonization [3] on the other hand is not known to be either polynomial time solvable (I think it is for planar graphs though) or NP-complete and has implementations that are quite efficient in practice. It can be used to search for the exact same graph, but again extending to searching for similar graphs is probably quite difficult.
[3]: https://en.wikipedia.org/wiki/Graph_canonization