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

Move optional episode metadata to fenced divs #289

Merged
merged 1 commit into from
Jul 25, 2023
Merged
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
32 changes: 22 additions & 10 deletions learners/edge-detection.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,24 @@
---
title: 'Extra Episode: Edge Detection'
teaching: ??
exercises: ??
questions: How can we automatically detect the edges of the objects in an image?
objectives:
teaching: 0
exercises: 0
---

:::::::::::::::::::::::::::::: questions

- How can we automatically detect the edges of the objects in an image?

::::::::::::::::::::::::::::::::::::::::

:::::::::::::::::::::::::::::: objectives

- Apply Canny edge detection to an image.
- Explain how we can use sliders to expedite finding appropriate parameter values
for our skimage function calls.
- Create skimage windows with sliders and associated callback functions.
keypoints:
- The `skimage.viewer.ImageViewer` is extended using a `skimage.viewer.plugins.Plugin`.
- We supply a filter function callback when creating a Plugin.
- Parameters of the callback function are manipulated interactively by creating sliders
with the `skimage.viewer.widgets.slider()` function and adding them to the plugin.
---

:::::::::::::::::::::::::::::::::::::::::


In this episode, we will learn how to use skimage functions to apply *edge
detection* to an image.
Expand Down Expand Up @@ -484,4 +489,11 @@ These include `skimage.filters.sobel()`,
which you will recognise as part of the Canny method.
Another choice is `skimage.filters.laplace()`.

:::::::::::::::::::::::::::::: keypoints

- The `skimage.viewer.ImageViewer` is extended using a `skimage.viewer.plugins.Plugin`.
- We supply a filter function callback when creating a Plugin.
- Parameters of the callback function are manipulated interactively by creating sliders
with the `skimage.viewer.widgets.slider()` function and adding them to the plugin.

::::::::::::::::::::::::::::::::::::::::
Loading