wildflow 0.0.1__py3-none-any.whl → 0.1.2__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.
- wildflow/__init__.py +18 -0
- wildflow-0.1.2.dist-info/METADATA +68 -0
- wildflow-0.1.2.dist-info/RECORD +5 -0
- wildflow-0.1.2.dist-info/top_level.txt +1 -0
- wildflow-0.0.1.dist-info/METADATA +0 -3
- wildflow-0.0.1.dist-info/RECORD +0 -4
- wildflow-0.0.1.dist-info/top_level.txt +0 -1
- {wildflow-0.0.1.dist-info → wildflow-0.1.2.dist-info}/WHEEL +0 -0
wildflow/__init__.py
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
"""
|
2
|
+
wildflow - AI tools for 3D computer vision and photogrammetry processing
|
3
|
+
"""
|
4
|
+
|
5
|
+
__version__ = "0.1.0"
|
6
|
+
|
7
|
+
# Import available tools
|
8
|
+
try:
|
9
|
+
from wildflow import splat
|
10
|
+
__all__ = ["splat"]
|
11
|
+
except ImportError:
|
12
|
+
# splat module not available
|
13
|
+
__all__ = []
|
14
|
+
|
15
|
+
# Future modules:
|
16
|
+
# from wildflow import sfm # Structure-from-Motion processing
|
17
|
+
# from wildflow import gaussian # 3D Gaussian splatting utilities
|
18
|
+
# from wildflow import analysis # Computer vision analysis tools
|
@@ -0,0 +1,68 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: wildflow
|
3
|
+
Version: 0.1.2
|
4
|
+
Summary: Modeling natural ecosystems
|
5
|
+
Author-email: wildflow <sergei@wildflow.ai>
|
6
|
+
License-Expression: MIT
|
7
|
+
Project-URL: repository, https://github.com/wildflowai/wildflow
|
8
|
+
Project-URL: documentation, https://docs.wildflow.ai
|
9
|
+
Keywords: coral-reefs,computer-vision,photogrammetry,3d-reconstruction,point-cloud,gaussian-splatting
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
11
|
+
Classifier: Intended Audience :: Developers
|
12
|
+
Classifier: Intended Audience :: Science/Research
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
14
|
+
Classifier: Programming Language :: Python :: 3.8
|
15
|
+
Classifier: Programming Language :: Python :: 3.9
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
19
|
+
Classifier: Topic :: Scientific/Engineering
|
20
|
+
Classifier: Topic :: Multimedia :: Graphics :: 3D Modeling
|
21
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
22
|
+
Requires-Python: >=3.8
|
23
|
+
Description-Content-Type: text/markdown
|
24
|
+
Requires-Dist: wildflow-splat>=0.1.2
|
25
|
+
Provides-Extra: dev
|
26
|
+
Requires-Dist: pytest>=7.0; extra == "dev"
|
27
|
+
Requires-Dist: black>=22.0; extra == "dev"
|
28
|
+
Requires-Dist: ruff>=0.1.0; extra == "dev"
|
29
|
+
|
30
|
+
# wildflow
|
31
|
+
|
32
|
+
Modeling natural ecosystems.
|
33
|
+
|
34
|
+
## Installation
|
35
|
+
|
36
|
+
Install all components:
|
37
|
+
|
38
|
+
```bash
|
39
|
+
pip install wildflow
|
40
|
+
```
|
41
|
+
|
42
|
+
or install components separately:
|
43
|
+
|
44
|
+
```bash
|
45
|
+
pip install wildflow-splat # Just the PLY processing tools
|
46
|
+
```
|
47
|
+
|
48
|
+
## Quick Start
|
49
|
+
|
50
|
+
```python
|
51
|
+
from wildflow import splat
|
52
|
+
|
53
|
+
# Process PLY point cloud
|
54
|
+
config = splat.Config("model.ply")
|
55
|
+
patch = splat.Patch("output.bin")
|
56
|
+
config.add_patch(patch)
|
57
|
+
|
58
|
+
results = splat.split_point_cloud(config)
|
59
|
+
print(f"Processed {results['total_points_written']} points")
|
60
|
+
```
|
61
|
+
|
62
|
+
## Requirements
|
63
|
+
|
64
|
+
- Python 3.8+
|
65
|
+
|
66
|
+
## License
|
67
|
+
|
68
|
+
MIT License
|
@@ -0,0 +1,5 @@
|
|
1
|
+
wildflow/__init__.py,sha256=0nQzrOZalOb4TafXmBEbC2qILWucov4Il9EViZw6BuM,489
|
2
|
+
wildflow-0.1.2.dist-info/METADATA,sha256=5LJViXhpdoqlBEMsYEAAfGKfAD9bO1Kne43QCxas-oo,1804
|
3
|
+
wildflow-0.1.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
4
|
+
wildflow-0.1.2.dist-info/top_level.txt,sha256=HLophRTijfETyqSsKnbN-PwzaHnbOsURIGe-HEB9GLU,9
|
5
|
+
wildflow-0.1.2.dist-info/RECORD,,
|
@@ -0,0 +1 @@
|
|
1
|
+
wildflow
|
wildflow-0.0.1.dist-info/RECORD
DELETED
@@ -1,4 +0,0 @@
|
|
1
|
-
wildflow-0.0.1.dist-info/METADATA,sha256=x8ElIT8ejfjvcS2JnsHRZOlGDmj_c28tlNS9GQfoV2I,52
|
2
|
-
wildflow-0.0.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
3
|
-
wildflow-0.0.1.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
4
|
-
wildflow-0.0.1.dist-info/RECORD,,
|
@@ -1 +0,0 @@
|
|
1
|
-
|
File without changes
|