You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/python_library.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,13 @@ The library
11
11
- implements training functionality that can be used for finetuning on your own data in `micro_sam.training`.
12
12
- provides functionality for quantitative and qualitative evaluation of Segment Anything models in `micro_sam.evaluation`.
13
13
14
+
You can import these sub-modules via
15
+
```python
16
+
import micro_sam.prompt_based_segmentation
17
+
import micro_sam.instance_segmentation
18
+
# etc.
19
+
```
20
+
14
21
This functionality is used to implement the interactive annotation tools and can also be used as a standalone python library.
15
22
Some preliminary examples for how to use the python library can be found [here](https://github.com/computational-cell-analytics/micro-sam/tree/master/examples/use_as_library). Check out the `Submodules` documentation for more details.
0 commit comments