Skip to content
Snippets Groups Projects
Commit 3edbef78 authored by Christian Tischer's avatar Christian Tischer
Browse files

Merge branch 'binarization2' into 'master'

Improve binarization module

See merge request grp-bio-it/image-analysis-training-resources!30
parents fec24760 23c09f4a
No related branches found
No related tags found
No related merge requests found
figures/binarization.png

74.5 KiB | W: | H:

figures/binarization.png

79.3 KiB | W: | H:

figures/binarization.png
figures/binarization.png
figures/binarization.png
figures/binarization.png
  • 2-up
  • Swipe
  • Onion skin
......@@ -9,11 +9,11 @@ objectives:
motivation: >
Very often, one wants to detect objects or specific regions in images. Typically, the first step to achieve this aim is to distinguish so-called background pixels, which do not contain objects or interesting regions, from foreground pixels, which mark the areas of interest. The foreground regions can than be further processed, e.g to detect objects or perform measurements.
concept_map: >
graph TD
PV(Pixel values) --> |>= threshold| FG(Foreground 1,255)
PV(Pixel values) --> |< threshold| BG(Background 0)
BG --> BPV(Binarized pixel values)
FG --> BPV(Binarized pixel values)
graph TD
PV("Pixel values") --> BA(Binarization algorithm)
BA --> BPV("Binarized pixel values")
BPV --> BG("Background (0)")
BPV --> FG("Foreground (1)")
figure: /figures/binarization.png
figure_legend: An image before and after applying a threshold. Can you see what the treshold value was?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment