Skip to content

Commit

Permalink
Fix _toc.yml for real this time?!? (#40)
Browse files Browse the repository at this point in the history
* fix toc for real?

* fix stray python and backticks in spot basics notebook
  • Loading branch information
psobolewskiPhD authored Oct 14, 2024
1 parent 90c942a commit 6993502
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion napari-workshops/_toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ chapters:
- file: notebooks/segmenting_and_measuring_nuclei_stardist
- file: notebooks/manual_annotation
- file: notebooks/custom_colormaps
- header: "Alternative Spot Detection Notebooks"
- file: notebooks/alternative_notebooks
sections:
- file: notebooks/spot_detection_basics
- file: notebooks/spot_detection_functions
Expand Down
8 changes: 8 additions & 0 deletions napari-workshops/notebooks/alternative_notebooks.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Alternative notebooks

There are some alternative notebooks you can use.

The [spot_detection](spot_detection) notebooks has been reworked into
two notebooks:
- [Exploratory analysis: spot detection](spot_detection_basic)
- [From workflow to widget: customizing napari](spot_detection_functions)
2 changes: 0 additions & 2 deletions napari-workshops/notebooks/spot_detection_basic.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,12 +177,10 @@ perform the blob detection.
from skimage.feature import blob_log
# detect the spots on the filtered image
```python
blobs_log = blob_log(
high_passed_spots, max_sigma=3,
threshold=None, # use a relative threshold instead
threshold_rel=0.2)
```
# convert the output of the blob detector to the
# desired points_coords and sizes arrays
Expand Down

0 comments on commit 6993502

Please sign in to comment.