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

用AI分析无exif照片的真实位置

今天推荐一个 Python 工具,名为 geospy,是一个写好的 python 库,可以 pip 安装后直接,使用的 Graylark 的 AI 驱动的地理定位服务来发现拍摄照片的位置,相当方便宜用,结果会给出坐标,并根据图像坐标生成 Google 地图链接,效果如下:

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))

地址:https://github.com/atiilla/geospy

demo:https://geospy.ai/

加载中...
此文章数据所有权由区块链加密技术和智能合约保障仅归创作者所有。