geoai-py 0.24.0__py2.py3-none-any.whl → 0.25.0__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- geoai/__init__.py +5 -1
- geoai/moondream.py +748 -0
- geoai/utils.py +1877 -327
- {geoai_py-0.24.0.dist-info → geoai_py-0.25.0.dist-info}/METADATA +3 -2
- {geoai_py-0.24.0.dist-info → geoai_py-0.25.0.dist-info}/RECORD +9 -9
- {geoai_py-0.24.0.dist-info → geoai_py-0.25.0.dist-info}/WHEEL +0 -0
- {geoai_py-0.24.0.dist-info → geoai_py-0.25.0.dist-info}/entry_points.txt +0 -0
- {geoai_py-0.24.0.dist-info → geoai_py-0.25.0.dist-info}/licenses/LICENSE +0 -0
- {geoai_py-0.24.0.dist-info → geoai_py-0.25.0.dist-info}/top_level.txt +0 -0
geoai/__init__.py
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
__author__ = """Qiusheng Wu"""
|
|
4
4
|
__email__ = "giswqs@gmail.com"
|
|
5
|
-
__version__ = "0.
|
|
5
|
+
__version__ = "0.25.0"
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
import os
|
|
@@ -153,6 +153,10 @@ try:
|
|
|
153
153
|
moondream_query,
|
|
154
154
|
moondream_detect,
|
|
155
155
|
moondream_point,
|
|
156
|
+
moondream_caption_sliding_window,
|
|
157
|
+
moondream_query_sliding_window,
|
|
158
|
+
moondream_detect_sliding_window,
|
|
159
|
+
moondream_point_sliding_window,
|
|
156
160
|
)
|
|
157
161
|
from .map_widgets import moondream_gui
|
|
158
162
|
except ImportError:
|