banner
andrewji8

Being towards death

Heed not to the tree-rustling and leaf-lashing rain, Why not stroll along, whistle and sing under its rein. Lighter and better suited than horses are straw sandals and a bamboo staff, Who's afraid? A palm-leaf plaited cape provides enough to misty weather in life sustain. A thorny spring breeze sobers up the spirit, I feel a slight chill, The setting sun over the mountain offers greetings still. Looking back over the bleak passage survived, The return in time Shall not be affected by windswept rain or shine.
telegram
twitter
github

Analyzing the actual location of photos without exif using AI

Today I recommend a Python tool called geospy, which is a well-written Python library. After installing it via pip, you can directly use Graylark's AI-driven geolocation service to discover the location where the photo was taken. It is quite convenient to use, and the results will provide coordinates and generate a Google Maps link based on the image coordinates, as shown below:

geospyer --image path/to/your/image.jpg

image


from geospy import GeoSpy

geospy = GeoSpy()
country = geospy.country("image.png")
city = geospy.city("image.png")
explanation = geospy.explanation("image.png")
coordinates = geospy.coordinates("image.png")
maps_link = geospy.maps("image.png")
location_data = geospy.locate("image.png")
print(str(location_data))

Link: https://github.com/atiilla/geospy

Demo: https://geospy.ai/

Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.