[android-developers] image search engine

2011-08-10 Thread Stefant
Hi there, we are a small start up and we developed a image search engine which is very fast and it can scale, we can look for a search in a index of a few million images in less than 1 second, For a demo check this URL: http://www.quadstreaming.com/searchengine.wmv in this demo we index a video

[android-developers] Re: how to draw a route and get the image of a map

2011-05-08 Thread stefant
You could save every new location in an arraylist. To draw lines between these make an overlay! With PROJECTION you can convert from lon/lat to pixel. Then you can use canvas.drawline(originpixel,destinationpixel); in the overlays draw method. To save the image i would take a screenshot. there