Pointer Pointer
pointerpointer.com
Pointer Pointer
1–10 of 33 posts
Re: Pointer Pointer
#2Re: Pointer Pointer
#3Edit: Seriously, these are all personal pictures of people clearly visible. Isn't that question legitimate?
Re: Pointer Pointer
#4Re: Pointer Pointer
#5Re: Pointer Pointer
#6Does anyone know how this was implemented? It's a great example of a case where, as a computer programmer, there are still problem domains which I have absolutely no idea how to approach!
For a small number of photos (up to a few thousand), a linear search (i.e. check against each one) would be quick enough. You could compare the distance of the pointed spot to the cursor (using Euclidean distance), pick the best one, maybe add in a random factor.
EDIT: Somehow the author is putting Voronoi diagrams into use. Take a look at the source.
Re: Pointer Pointer
#7Does anyone know how this was implemented? It's a great example of a case where, as a computer programmer, there are still problem domains which I have absolutely no idea how to approach!
Re: Pointer Pointer
#8Does anyone know how this was implemented? It's a great example of a case where, as a computer programmer, there are still problem domains which I have absolutely no idea how to approach!