Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for multiple input boxes #159

Merged
merged 8 commits into from
Aug 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ private/
**/*.jpg
**/*.png
**/*.csv
docs/examples/*.geojson

# C extensions
*.so
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,11 @@ The **segment-geospatial** package draws its inspiration from [segment-anything-

## Examples

- [Segmenting satellite imagery](https://samgeo.gishub.org/examples/satellite)
- [Segmenting remote sensing imagery](https://samgeo.gishub.org/examples/satellite)
- [Automatically generating object masks](https://samgeo.gishub.org/examples/automatic_mask_generator)
- [Segmenting satellite imagery with input prompts](https://samgeo.gishub.org/examples/input_prompts)
- [Segmenting imagery with text prompts](https://samgeo.gishub.org/examples/text_prompts)
- [Segmenting remote sensing imagery with input prompts](https://samgeo.gishub.org/examples/input_prompts)
- [Segmenting remote sensing imagery with box prompts](https://samgeo.gishub.org/examples/box_prompts)
- [Segmenting remote sensing imagery with text prompts](https://samgeo.gishub.org/examples/text_prompts)
- [Batch segmentation with text prompts](https://samgeo.gishub.org/examples/text_prompts_batch)
- [Using segment-geospatial with ArcGIS Pro](https://samgeo.gishub.org/examples/arcgis)
- [Segmenting swimming pools with text prompts](https://samgeo.gishub.org/examples/swimming_pools)
Expand Down
11 changes: 11 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## v0.9.0 - Aug 6, 2023

**New Features**

- Added support for multiple input boxes (#159)

**Improvements**

- UpdateD groundingdino installation (#147)
- Updated README (#152)

## v0.8.5 - Jul 19, 2023

**Improvements**
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/automatic_mask_generator.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"metadata": {},
"outputs": [],
"source": [
"# %pip install segment-geospatial leafmap localtileserver"
"# %pip install segment-geospatial"
]
},
{
Expand Down
Loading