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

Improve module layout

parent e9dc6201
No related branches found
No related tags found
1 merge request!28Binarization
Pipeline #10080 failed with stage
in 11 seconds
Showing
with 1117 additions and 5 deletions
File added
File added
File added
GEM
remote: https://rubygems.org/
specs:
addressable (2.6.0)
public_suffix (>= 2.0.2, < 4.0)
colorator (1.1.0)
commonmarker (0.17.13)
ruby-enum (~> 0.5)
concurrent-ruby (1.1.5)
ffi (1.11.1)
forwardable-extended (2.6.0)
i18n (1.6.0)
concurrent-ruby (~> 1.0)
jekyll (3.4.0)
addressable (~> 2.4)
colorator (~> 1.0)
jekyll-sass-converter (~> 1.0)
jekyll-watch (~> 1.1)
kramdown (~> 1.3)
liquid (~> 3.0)
mercenary (~> 0.3.3)
pathutil (~> 0.9)
rouge (~> 1.7)
safe_yaml (~> 1.0)
jekyll-commonmark (1.2.0)
commonmarker (~> 0.14)
jekyll (>= 3.0, < 4.0)
jekyll-commonmark-ghpages (0.1.0)
commonmarker (~> 0.17.6)
jekyll-commonmark (~> 1)
jekyll-sass-converter (1.5.2)
sass (~> 3.4)
jekyll-watch (1.5.1)
listen (~> 3.0)
kramdown (1.17.0)
liquid (3.0.6)
listen (3.1.5)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
ruby_dep (~> 1.2)
mercenary (0.3.6)
pathutil (0.16.2)
forwardable-extended (~> 2.6)
public_suffix (3.1.0)
rb-fsevent (0.10.3)
rb-inotify (0.10.0)
ffi (~> 1.0)
rouge (1.11.1)
ruby-enum (0.7.2)
i18n
ruby_dep (1.5.0)
safe_yaml (1.0.5)
sass (3.7.4)
sass-listen (~> 4.0.0)
sass-listen (4.0.0)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
PLATFORMS
ruby
DEPENDENCIES
jekyll (= 3.4.0)
jekyll-commonmark-ghpages
tzinfo-data
RUBY VERSION
ruby 2.6.2p47
BUNDLED WITH
2.0.1
......@@ -91,8 +91,11 @@ window.onload = set_view_defaults;
</header>
{% if page.prerequisites %}
<div class="prerequisites">
<br>
<br>
<h2>Prerequisites</h2>
Before starting this lesson, you should be familiar with:
Before starting this lesson, you should be familiar with:<br>
<br>
<ul>
{% for prereq in page.prerequisites %}
<li>{{ prereq | markdownify }}</li>
......@@ -101,8 +104,11 @@ window.onload = set_view_defaults;
</div>
{% endif %}
<div class="learning-objectives">
<br>
<br>
<h2>Learning Objectives</h2>
After completing this lesson, learners should be able to:
After completing this lesson, learners should be able to:<br>
<br>
<ul>
{% for objective in page.objectives %}
<li>{{ objective | markdownify }}</li>
......@@ -110,15 +116,21 @@ window.onload = set_view_defaults;
</ul>
</div>
<br>
<br>
<h2>Motivation</h2>
{{ page.motivation | markdownify }}
<br>
<br>
<h2>Concept map</h2>
<div class="mermaid">
{{ page.concept_map }}
</div>
<br>
<br>
<h2>Example</h2>
<figure>
......@@ -132,6 +144,8 @@ window.onload = set_view_defaults;
{{ content }}
</div>
<br>
<br>
<h2>Activity</h2>
{% if page.activity_preface %}
......@@ -139,7 +153,7 @@ window.onload = set_view_defaults;
{% endif %}
{% if page.activities %}
Choose a platform to display instructions for: <select id="id_activity_platform" name="activityplatformlist" onchange="change_activity_content_by_platform('id_activity_platform');return false;">
Show activity for: <select id="id_activity_platform" name="activityplatformlist" onchange="change_activity_content_by_platform('id_activity_platform');return false;">
{% assign first = true %}
{% endif %}
{% for platform in page.activities %}
......@@ -158,7 +172,6 @@ Choose a platform to display instructions for: <select id="id_activity_platform"
{% for platform in page.activities %}
<div id="{{ platform[0] | slugify }}-activity-div">
&nbsp; <br>
&nbsp; <br>
<h3>{{ platform[0] }}</h3>
{% assign includefile = platform[1] %}
{% capture activity %}{% include {{ includefile }} %}{% endcapture %}
......@@ -167,6 +180,9 @@ Choose a platform to display instructions for: <select id="id_activity_platform"
{% endfor %}
{% if page.exercises_preface or page.exercises %}
<br>
<br>
<h2>Formative assessment</h2>
{% endif %}
......@@ -175,7 +191,7 @@ Choose a platform to display instructions for: <select id="id_activity_platform"
{% endif %}
{% if page.exercises %}
Choose a platform to display instructions for: <select id="id_exercises_platform" name="exercisesplatformlist" onchange="change_exercises_content_by_platform('id_exercises_platform');return false;">
Perform additional excercises for: <select id="id_exercises_platform" name="exercisesplatformlist" onchange="change_exercises_content_by_platform('id_exercises_platform');return false;">
{% assign first = true %}
{% endif %}
{% for platform in page.exercises %}
......@@ -192,6 +208,7 @@ Choose a platform to display instructions for: <select id="id_exercises_platform
{% endif %}
{% for platform in page.exercises %}
<div id="{{ platform[0] | slugify }}-exercises-div">
&nbsp; <br>
<h3>{{ platform[0] }}</h3>
{% assign includefile = platform[1] %}
{% capture exercise %}{% include {{ includefile }} %}{% endcapture %}
......@@ -199,6 +216,8 @@ Choose a platform to display instructions for: <select id="id_exercises_platform
</div>
{% endfor %}
<br>
<br>
<h2>Follow-up material</h2>
<ul>
......@@ -207,6 +226,8 @@ Choose a platform to display instructions for: <select id="id_exercises_platform
{% endfor %}
</ul>
<br>
<br>
<h2>Learn more</h2>
<ul>
......
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Image Analysis Training</title>
<meta name="description" content="A collection of material for teaching image analysis. Includes concept maps, exercises, example data
">
<link rel="stylesheet" href="/image-analysis-training-resources/css/main.css">
<link rel="canonical" href="http://localhost:4000/image-analysis-training-resources/CONTRIBUTING.html">
<link rel="alternate" type="application/rss+xml" title="Image Analysis Training" href="http://localhost:4000/image-analysis-training-resources/feed.xml">
<script src="https://unpkg.com/mermaid@8.0.0/dist/mermaid.min.js"></script>
<script>mermaid.initialize({startOnLoad:true});</script>
</head>
<body>
<header class="site-header">
<div class="wrapper">
<a class="site-title" href="/image-analysis-training-resources/">Image Analysis Training</a>
<nav class="site-nav">
<a href="#" class="menu-icon">
<svg viewBox="0 0 18 15">
<path fill="#424242" d="M18,1.484c0,0.82-0.665,1.484-1.484,1.484H1.484C0.665,2.969,0,2.304,0,1.484l0,0C0,0.665,0.665,0,1.484,0 h15.031C17.335,0,18,0.665,18,1.484L18,1.484z"/>
<path fill="#424242" d="M18,7.516C18,8.335,17.335,9,16.516,9H1.484C0.665,9,0,8.335,0,7.516l0,0c0-0.82,0.665-1.484,1.484-1.484 h15.031C17.335,6.031,18,6.696,18,7.516L18,7.516z"/>
<path fill="#424242" d="M18,13.516C18,14.335,17.335,15,16.516,15H1.484C0.665,15,0,14.335,0,13.516l0,0 c0-0.82,0.665-1.484,1.484-1.484h15.031C17.335,12.031,18,12.696,18,13.516L18,13.516z"/>
</svg>
</a>
<div class="trigger">
<a class="page-link" href="/image-analysis-training-resources/modules/basic_image_analysis_workflow.html">Basic image analysis workflow</a>
<a class="page-link" href="/image-analysis-training-resources/modules/binarization.html">Image binarization</a>
<a class="page-link" href="/image-analysis-training-resources/modules/calibration.html">Image calibration</a>
<a class="page-link" href="/image-analysis-training-resources/modules/connected_components.html">Connected components</a>
<a class="page-link" href="/image-analysis-training-resources/modules/display.html">Image display</a>
<a class="page-link" href="/image-analysis-training-resources/example-images/">Example Images</a>
<a class="page-link" href="/image-analysis-training-resources/modules/filter_convolution.html">Image math</a>
<a class="page-link" href="/image-analysis-training-resources/modules/filter_difference_of_gaussian.html">Difference of Gaussian</a>
<a class="page-link" href="/image-analysis-training-resources/">Image Analysis Training Material</a>
<a class="page-link" href="/image-analysis-training-resources/modules/measure_intensities.html">Intensity measurements</a>
<a class="page-link" href="/image-analysis-training-resources/modules/measure_shapes.html">Object shape measurements</a>
<a class="page-link" href="/image-analysis-training-resources/modules/object_splitting.html">Object splitting</a>
<a class="page-link" href="/image-analysis-training-resources/modules/pixel_data_types.html">Pixel data types</a>
<a class="page-link" href="/image-analysis-training-resources/modules/pixel_math.html">Image math</a>
<a class="page-link" href="/image-analysis-training-resources/modules/pixels.html">Pixels</a>
</div>
</nav>
</div>
</header>
<div class="page-content">
<div class="wrapper">
<h1 id="guidelines-for-contributing">Guidelines for Contributing</h1>
<p>Contributions to this project are very welcome.
Changes should be submitted by merge request from a new branch to <code>master</code>.
Merge requests should be reviewed by at least one Maintainer before merging.</p>
<p>See <code>README.md</code> for information on the structure of the repository.</p>
<h2 id="step-by-step-guide">Step by step guide</h2>
<p>To contribute to this project, please follow those steps:</p>
<ol>
<li>Clone this repository: <code>git clone https://git.embl.de/grp-bio-it/image-analysis-training-resources.git</code></li>
<li>On your computer, make a new branch. For example, if you would like to contribute python code to the binarization.md module you may: <code>git checkout -b pythonBinarization</code></li>
<li>Now add your changes on your computer (staying in this branch) - see &quot;Adding a new module&quot; section, below.</li>
<li>When you are done, please <code>git add .; git commit -m &quot;some message&quot;</code></li>
<li>Now you can upload your branch to the online repository by typing: <code>git push --set-upstream origin pythonBinarization</code>.</li>
<li>Go to the online repository on gitlab: https://git.embl.de/grp-bio-it/image-analysis-training-resources</li>
<li>On gitlab, there will now be button at the top of the page. Click this button to stage a &quot;merge request&quot; of your contribution (in your branch) to the master branch. There will also a possibility to assign a project maintainer to review your contribution and to merge it. Please select someone appropriate here.</li>
<li>Thank you for your contribution!</li>
</ol>
<h2 id="adding-a-new-module">Adding a new module</h2>
<p>Each module page is built from a template (<code>_layouts/module.html</code>),
ensuring a consistent structure and style for the whole collection.
To create a new module, you will need to add a few files
in a few different places in this repository.</p>
<h3 id="module-file">Module file</h3>
<p>Most important is the module file itself.
This module file should be saved with a short, descriptive name (no spaces!)
ending with the <code>.md</code> (Markdown) extension.
Typically, the only content of this Markdown file should be a header
written in YAML. See the specification below.
All fields not marked as optional are required for the page to build.
You can check that your YAML is valid with <a href="http://www.yamllint.com/">this tool</a>.</p>
<pre><code class="language-yaml">---
title: Title of the Module
layout: module # don't change this
prerequisites:
- &quot;a list of things that learners should know&quot;
- &quot;in order to understand this module&quot;
objectives:
- &quot;a list of learning objectives&quot;
- &quot;see note 1 below for more info&quot;
motivation: &gt;
A description of *why* you would want to learn this.
Can be written in
(GitHub-flavoured) [Markdown](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet)
and split
across
multiple
lines.
concept_map: &gt; # see note 2
graph TD
A[Christmas] --&gt;|Get money| B(Go shopping)
B --&gt; C{Let me think}
C --&gt;|One| D[Laptop]
C --&gt;|Two| E[iPhone]
C --&gt;|Three| F[fa:fa-car Car];
figure: /figures/mymodule.png # store the example image for your module in the `figures` folder and provide the absolute path from the root of the site here.
figure_legend: Some description of the figure. (optional)
activity_preface: &gt;
Some general description of the activity for
that learners will do while studying the module.
It will be followed by platform-specific instructions/example code.
(optional)
activities: # platform-specific activity instruction/example code files (see note 3) (optional)
&quot;ImageJ GUI&quot;: &quot;mymodule/activities/mymodule_imagejgui.md&quot;
&quot;ImageJ Macro&quot;: &quot;mymodule/activities/mymodule_imagejmacro.md&quot;
&quot;Jython&quot;: &quot;mymodule/activities/mymodule_jython.md&quot;
exercises_preface: &gt;
You could put general, language-agnostic questions here...
(optional)
exercises: # platform-specific exercises (in Markdown files) (see note 3) (optional)
&quot;ImageJ GUI&quot;: &quot;mymodule/exercises/mymodule_imagejgui.md&quot;
&quot;ImageJ Macro&quot;: &quot;mymodule/exercises/mymodule_imagejmacro.md&quot;
&quot;Jython&quot;: &quot;mymodule/exercises/mymodule_jython.md&quot;
&quot;MATLAB&quot;: &quot;mymodule/exercises/mymodule_matlab.md&quot;
learn_next: # see note 4
- &quot;[name_of_one](calibration)&quot;
- &quot;[or_more_modules](object_splitting)&quot;
- &quot;[to link to next](display)&quot;
external_links:
- &quot;[link to](https://external.page.com)&quot;
---
</code></pre>
<p>Notes:</p>
<ol>
<li>Learning objectives should be worded as endings to a sentence beginning &quot;After completing this lesson, learners should be able to...&quot;. We recommend starting each learning objective with a verb from <a href="https://cft.vanderbilt.edu/guides-sub-pages/blooms-taxonomy/">Bloom's Taxonomy</a></li>
<li>Concept maps are drawn with <a href="https://mermaidjs.github.io/flowchart.html">Mermaid.js</a>. The indentation of the chart description is important, so be careful!</li>
<li>The <code>activities</code> and <code>exercises</code> fields should be populated with key-value pairs, where the key is the name of the platform (e.g. &quot;ImageJ GUI&quot;, &quot;Python&quot;, etc) and the value is the path (relative to <code>_includes/</code>) to the file containing the activity instructions/exercises for that platform.</li>
<li>The points in &quot;Learn Next&quot; are Markdown links, which should be formed as <code>[Module Title](modulefilename)</code>, where the extension has been removed from the filename.</li>
</ol>
<h3 id="associated-files">Associated files</h3>
<p>Below is a list of all the other files that you should provide
to accompany a new module,
as well as the appropriate location for each
(relative to the top level of the repository).
Examples are given for a <code>/modules/mymodule.md</code></p>
<ul>
<li>The <code>figure</code> image
<ul>
<li>an file containing an example image to illustrate the concept being taught in the module</li>
<li>location: <code>/figures/mymodule.md</code></li>
</ul>
</li>
<li>The <code>activities</code> files
<ul>
<li>Markdown files containing instructions and/or example code for an activity that learners should follow to learn how to apply the concept on a particular platform (ImageJ Macro, MATLAB, etc)</li>
<li>location: <code>_includes/mymodule/activities/mymodule_platformnospaces.md</code></li>
</ul>
</li>
<li>The <code>exercises</code> files
<ul>
<li>Markdown files containing exercises to test the learner's understanding of applying the concept on a particular platform</li>
<li>location: <code>_includes/mymodule/exercises/mymodule_platformnospaces.md</code></li>
</ul>
</li>
</ul>
<h2 id="adding-exercisesactivity-instructions-for-a-new-platform">Adding exercises/activity instructions for a new platform</h2>
<p>Contributions of instructions and exercises for more platforms are very welcome - please see the &quot;Associated files&quot; subsection above for details of where these contributed files should be added.</p>
<h2 id="questions-about-the-module-layout">Questions about the module layout</h2>
<p>If you have questions about the module layout, please contact <a href="mailto:toby.hodges@embl.de">Toby Hodges</a>.</p>
</div>
</div>
<footer class="site-footer">
<div class="wrapper">
<h2 class="footer-heading">Image Analysis Training</h2>
<div class="footer-col-wrapper">
<div class="footer-col footer-col-1">
<ul class="contact-list">
<li>Image Analysis Training</li>
<li><a href="mailto:image-analysis-support@embl.de">image-analysis-support@embl.de</a></li>
<li><a href="https://git.embl.de/grp-bio-it/image-analysis-training-resources/">Source code</a></li>
<li><a href="/image-analysis-training-resources/CONTRIBUTING">Contributions to this material are very welcome.</a></li>
</ul>
</div>
<div class="footer-col footer-col-2">
</div>
<div class="footer-col footer-col-3">
<p>A collection of material for teaching image analysis. Includes concept maps, exercises, example data
</p>
<p>Use of this site falls under <a href="https://www.embl.de/aboutus/privacy_policy/index.html">EMBL's Privacy Policy</a>.</p>
</div>
</div>
</div>
</footer>
</body>
</html>
source "https://rubygems.org"
ruby RUBY_VERSION
# This will help ensure the proper Jekyll version is running.
gem "jekyll", "3.4.0"
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
# install GH-flavoured MD plugin
group :jekyll_plugins do
gem 'jekyll-commonmark-ghpages'
end
GEM
remote: https://rubygems.org/
specs:
addressable (2.6.0)
public_suffix (>= 2.0.2, < 4.0)
colorator (1.1.0)
commonmarker (0.17.13)
ruby-enum (~> 0.5)
concurrent-ruby (1.1.5)
ffi (1.11.1)
forwardable-extended (2.6.0)
i18n (1.6.0)
concurrent-ruby (~> 1.0)
jekyll (3.4.0)
addressable (~> 2.4)
colorator (~> 1.0)
jekyll-sass-converter (~> 1.0)
jekyll-watch (~> 1.1)
kramdown (~> 1.3)
liquid (~> 3.0)
mercenary (~> 0.3.3)
pathutil (~> 0.9)
rouge (~> 1.7)
safe_yaml (~> 1.0)
jekyll-commonmark (1.2.0)
commonmarker (~> 0.14)
jekyll (>= 3.0, < 4.0)
jekyll-commonmark-ghpages (0.1.0)
commonmarker (~> 0.17.6)
jekyll-commonmark (~> 1)
jekyll-sass-converter (1.5.2)
sass (~> 3.4)
jekyll-watch (1.5.1)
listen (~> 3.0)
kramdown (1.17.0)
liquid (3.0.6)
listen (3.1.5)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
ruby_dep (~> 1.2)
mercenary (0.3.6)
pathutil (0.16.2)
forwardable-extended (~> 2.6)
public_suffix (3.1.0)
rb-fsevent (0.10.3)
rb-inotify (0.10.0)
ffi (~> 1.0)
rouge (1.11.1)
ruby-enum (0.7.2)
i18n
ruby_dep (1.5.0)
safe_yaml (1.0.5)
sass (3.7.4)
sass-listen (~> 4.0.0)
sass-listen (4.0.0)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
PLATFORMS
ruby
DEPENDENCIES
jekyll (= 3.4.0)
jekyll-commonmark-ghpages
tzinfo-data
RUBY VERSION
ruby 2.6.2p47
BUNDLED WITH
2.0.1
This material is made available under the [Creative Commons Attribution license][cc-by-human].
The following is a human-readable summary of (and not a substitute for)
the [full legal text of the CC BY 4.0 license][cc-by-legal].
You are free:
* to **Share**---copy and redistribute the material in any medium or format
* to **Adapt**---remix, transform, and build upon the material
for any purpose, even commercially.
The licensor cannot revoke these freedoms as long as you follow the
license terms.
Under the following terms:
* **Attribution**---You must give appropriate credit (mentioning that
your work is derived from work that is Copyright ©
European Molecualr Biology Laboratory and, where practical, link to
the [source project repository][our-gitlab-repo]) and [the license][cc-by-human],
and indicate if changes were made. You may do
so in any reasonable manner, but not in any way that suggests the
licensor endorses you or your use.
**No additional restrictions**---You may not apply legal terms or
technological measures that legally restrict others from doing
anything the license permits. With the understanding that:
Notices:
* You do not have to comply with the license for elements of the
material in the public domain or where your use is permitted by an
applicable exception or limitation.
* No warranties are given. The license may not give you all of the
permissions necessary for your intended use. For example, other
rights such as publicity, privacy, or moral rights may limit how you
use the material.
[cc-by-human]: https://creativecommons.org/licenses/by/4.0/
[cc-by-legal]: https://creativecommons.org/licenses/by/4.0/legalcode
[our-gitlab-repo]: https://git.embl.de/grp-bio-it/image-analysis-training-resources/
\ No newline at end of file
/**
* Reset some basic elements
*/
body, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, hr,
dl, dd, ol, ul, figure {
margin: 0;
padding: 0; }
/**
* Basic styling
*/
body {
font: 400 16px/1.5 "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #111;
background-color: #fdfdfd;
-webkit-text-size-adjust: 100%;
-webkit-font-feature-settings: "kern" 1;
-moz-font-feature-settings: "kern" 1;
-o-font-feature-settings: "kern" 1;
font-feature-settings: "kern" 1;
font-kerning: normal; }
/**
* Set `margin-bottom` to maintain vertical rhythm
*/
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
ul, ol, dl, figure,
.highlight {
margin-bottom: 15px; }
/**
* Images
*/
img {
max-width: 100%;
vertical-align: middle; }
/**
* Figures
*/
figure > img {
display: block; }
figcaption {
font-size: 14px; }
/**
* Lists
*/
ul, ol {
margin-left: 30px; }
li > ul,
li > ol {
margin-bottom: 0; }
/**
* Headings
*/
h1, h2, h3, h4, h5, h6 {
font-weight: 400; }
/**
* Links
*/
a {
color: #2a7ae2;
text-decoration: none; }
a:visited {
color: #1756a9; }
a:hover {
color: #111;
text-decoration: underline; }
/**
* Blockquotes
*/
blockquote {
color: #828282;
border-left: 4px solid #e8e8e8;
padding-left: 15px;
font-size: 18px;
letter-spacing: -1px;
font-style: italic; }
blockquote > :last-child {
margin-bottom: 0; }
/**
* Code formatting
*/
pre,
code {
font-size: 15px;
border: 1px solid #e8e8e8;
border-radius: 3px;
background-color: #eef; }
code {
padding: 1px 5px; }
pre {
padding: 8px 12px;
overflow-x: auto; }
pre > code {
border: 0;
padding-right: 0;
padding-left: 0; }
/**
* Wrapper
*/
.wrapper {
max-width: -webkit-calc(800px - (30px * 2));
max-width: calc(800px - (30px * 2));
margin-right: auto;
margin-left: auto;
padding-right: 30px;
padding-left: 30px; }
@media screen and (max-width: 800px) {
.wrapper {
max-width: -webkit-calc(800px - (30px));
max-width: calc(800px - (30px));
padding-right: 15px;
padding-left: 15px; } }
/**
* Clearfix
*/
.wrapper:after, .footer-col-wrapper:after {
content: "";
display: table;
clear: both; }
/**
* Icons
*/
.icon > svg {
display: inline-block;
width: 16px;
height: 16px;
vertical-align: middle; }
.icon > svg path {
fill: #828282; }
/**
* Site header
*/
.site-header {
border-top: 5px solid #424242;
border-bottom: 1px solid #e8e8e8;
min-height: 56px;
position: relative; }
.site-title {
font-size: 26px;
font-weight: 300;
line-height: 56px;
letter-spacing: -1px;
margin-bottom: 0;
float: left; }
.site-title, .site-title:visited {
color: #424242; }
.site-nav {
float: right;
line-height: 56px; }
.site-nav .menu-icon {
display: none; }
.site-nav .page-link {
color: #111;
line-height: 1.5; }
.site-nav .page-link:not(:last-child) {
margin-right: 20px; }
@media screen and (max-width: 600px) {
.site-nav {
position: absolute;
top: 9px;
right: 15px;
background-color: #fdfdfd;
border: 1px solid #e8e8e8;
border-radius: 5px;
text-align: right; }
.site-nav .menu-icon {
display: block;
float: right;
width: 36px;
height: 26px;
line-height: 0;
padding-top: 10px;
text-align: center; }
.site-nav .menu-icon > svg {
width: 18px;
height: 15px; }
.site-nav .menu-icon > svg path {
fill: #424242; }
.site-nav .trigger {
clear: both;
display: none; }
.site-nav:hover .trigger {
display: block;
padding-bottom: 5px; }
.site-nav .page-link {
display: block;
padding: 5px 10px;
margin-left: 20px; }
.site-nav .page-link:not(:last-child) {
margin-right: 0; } }
/**
* Site footer
*/
.site-footer {
border-top: 1px solid #e8e8e8;
padding: 30px 0; }
.footer-heading {
font-size: 18px;
margin-bottom: 15px; }
.contact-list,
.social-media-list {
list-style: none;
margin-left: 0; }
.footer-col-wrapper {
font-size: 15px;
color: #828282;
margin-left: -15px; }
.footer-col {
float: left;
margin-bottom: 15px;
padding-left: 15px; }
.footer-col-1 {
width: -webkit-calc(35% - (30px / 2));
width: calc(35% - (30px / 2)); }
.footer-col-2 {
width: -webkit-calc(20% - (30px / 2));
width: calc(20% - (30px / 2)); }
.footer-col-3 {
width: -webkit-calc(45% - (30px / 2));
width: calc(45% - (30px / 2)); }
@media screen and (max-width: 800px) {
.footer-col-1,
.footer-col-2 {
width: -webkit-calc(50% - (30px / 2));
width: calc(50% - (30px / 2)); }
.footer-col-3 {
width: -webkit-calc(100% - (30px / 2));
width: calc(100% - (30px / 2)); } }
@media screen and (max-width: 600px) {
.footer-col {
float: none;
width: -webkit-calc(100% - (30px / 2));
width: calc(100% - (30px / 2)); } }
/**
* Page content
*/
.page-content {
padding: 30px 0; }
.page-heading {
font-size: 20px; }
.post-list {
margin-left: 0;
list-style: none; }
.post-list > li {
margin-bottom: 30px; }
.post-meta {
font-size: 14px;
color: #828282; }
.post-link {
display: block;
font-size: 24px; }
/**
* Posts
*/
.post-header {
margin-bottom: 30px; }
.post-title {
font-size: 42px;
letter-spacing: -1px;
line-height: 1; }
@media screen and (max-width: 800px) {
.post-title {
font-size: 36px; } }
.post-content {
margin-bottom: 30px; }
.post-content h2 {
font-size: 32px; }
@media screen and (max-width: 800px) {
.post-content h2 {
font-size: 28px; } }
.post-content h3 {
font-size: 26px; }
@media screen and (max-width: 800px) {
.post-content h3 {
font-size: 22px; } }
.post-content h4 {
font-size: 20px; }
@media screen and (max-width: 800px) {
.post-content h4 {
font-size: 18px; } }
/**
* Syntax highlighting styles
*/
.highlight {
background: #fff; }
.highlighter-rouge .highlight {
background: #eef; }
.highlight .c {
color: #998;
font-style: italic; }
.highlight .err {
color: #a61717;
background-color: #e3d2d2; }
.highlight .k {
font-weight: bold; }
.highlight .o {
font-weight: bold; }
.highlight .cm {
color: #998;
font-style: italic; }
.highlight .cp {
color: #999;
font-weight: bold; }
.highlight .c1 {
color: #998;
font-style: italic; }
.highlight .cs {
color: #999;
font-weight: bold;
font-style: italic; }
.highlight .gd {
color: #000;
background-color: #fdd; }
.highlight .gd .x {
color: #000;
background-color: #faa; }
.highlight .ge {
font-style: italic; }
.highlight .gr {
color: #a00; }
.highlight .gh {
color: #999; }
.highlight .gi {
color: #000;
background-color: #dfd; }
.highlight .gi .x {
color: #000;
background-color: #afa; }
.highlight .go {
color: #888; }
.highlight .gp {
color: #555; }
.highlight .gs {
font-weight: bold; }
.highlight .gu {
color: #aaa; }
.highlight .gt {
color: #a00; }
.highlight .kc {
font-weight: bold; }
.highlight .kd {
font-weight: bold; }
.highlight .kp {
font-weight: bold; }
.highlight .kr {
font-weight: bold; }
.highlight .kt {
color: #458;
font-weight: bold; }
.highlight .m {
color: #099; }
.highlight .s {
color: #d14; }
.highlight .na {
color: #008080; }
.highlight .nb {
color: #0086B3; }
.highlight .nc {
color: #458;
font-weight: bold; }
.highlight .no {
color: #008080; }
.highlight .ni {
color: #800080; }
.highlight .ne {
color: #900;
font-weight: bold; }
.highlight .nf {
color: #900;
font-weight: bold; }
.highlight .nn {
color: #555; }
.highlight .nt {
color: #000080; }
.highlight .nv {
color: #008080; }
.highlight .ow {
font-weight: bold; }
.highlight .w {
color: #bbb; }
.highlight .mf {
color: #099; }
.highlight .mh {
color: #099; }
.highlight .mi {
color: #099; }
.highlight .mo {
color: #099; }
.highlight .sb {
color: #d14; }
.highlight .sc {
color: #d14; }
.highlight .sd {
color: #d14; }
.highlight .s2 {
color: #d14; }
.highlight .se {
color: #d14; }
.highlight .sh {
color: #d14; }
.highlight .si {
color: #d14; }
.highlight .sx {
color: #d14; }
.highlight .sr {
color: #009926; }
.highlight .s1 {
color: #d14; }
.highlight .ss {
color: #990073; }
.highlight .bp {
color: #999; }
.highlight .vc {
color: #008080; }
.highlight .vg {
color: #008080; }
.highlight .vi {
color: #008080; }
.highlight .il {
color: #099; }
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Example Images</title>
<meta name="description" content="A collection of material for teaching image analysis. Includes concept maps, exercises, example data
">
<link rel="stylesheet" href="/image-analysis-training-resources/css/main.css">
<link rel="canonical" href="http://localhost:4000/image-analysis-training-resources/example-images/">
<link rel="alternate" type="application/rss+xml" title="Image Analysis Training" href="http://localhost:4000/image-analysis-training-resources/feed.xml">
<script src="https://unpkg.com/mermaid@8.0.0/dist/mermaid.min.js"></script>
<script>mermaid.initialize({startOnLoad:true});</script>
</head>
<body>
<header class="site-header">
<div class="wrapper">
<a class="site-title" href="/image-analysis-training-resources/">Image Analysis Training</a>
<nav class="site-nav">
<a href="#" class="menu-icon">
<svg viewBox="0 0 18 15">
<path fill="#424242" d="M18,1.484c0,0.82-0.665,1.484-1.484,1.484H1.484C0.665,2.969,0,2.304,0,1.484l0,0C0,0.665,0.665,0,1.484,0 h15.031C17.335,0,18,0.665,18,1.484L18,1.484z"/>
<path fill="#424242" d="M18,7.516C18,8.335,17.335,9,16.516,9H1.484C0.665,9,0,8.335,0,7.516l0,0c0-0.82,0.665-1.484,1.484-1.484 h15.031C17.335,6.031,18,6.696,18,7.516L18,7.516z"/>
<path fill="#424242" d="M18,13.516C18,14.335,17.335,15,16.516,15H1.484C0.665,15,0,14.335,0,13.516l0,0 c0-0.82,0.665-1.484,1.484-1.484h15.031C17.335,12.031,18,12.696,18,13.516L18,13.516z"/>
</svg>
</a>
<div class="trigger">
<a class="page-link" href="/image-analysis-training-resources/modules/basic_image_analysis_workflow.html">Basic image analysis workflow</a>
<a class="page-link" href="/image-analysis-training-resources/modules/binarization.html">Image binarization</a>
<a class="page-link" href="/image-analysis-training-resources/modules/calibration.html">Image calibration</a>
<a class="page-link" href="/image-analysis-training-resources/modules/connected_components.html">Connected components</a>
<a class="page-link" href="/image-analysis-training-resources/modules/display.html">Image display</a>
<a class="page-link" href="/image-analysis-training-resources/example-images/">Example Images</a>
<a class="page-link" href="/image-analysis-training-resources/modules/filter_convolution.html">Image math</a>
<a class="page-link" href="/image-analysis-training-resources/modules/filter_difference_of_gaussian.html">Difference of Gaussian</a>
<a class="page-link" href="/image-analysis-training-resources/">Image Analysis Training Material</a>
<a class="page-link" href="/image-analysis-training-resources/modules/measure_intensities.html">Intensity measurements</a>
<a class="page-link" href="/image-analysis-training-resources/modules/measure_shapes.html">Object shape measurements</a>
<a class="page-link" href="/image-analysis-training-resources/modules/object_splitting.html">Object splitting</a>
<a class="page-link" href="/image-analysis-training-resources/modules/pixel_data_types.html">Pixel data types</a>
<a class="page-link" href="/image-analysis-training-resources/modules/pixel_math.html">Image math</a>
<a class="page-link" href="/image-analysis-training-resources/modules/pixels.html">Pixels</a>
</div>
</nav>
</div>
</header>
<div class="page-content">
<div class="wrapper">
<article class="post">
<header class="post-header">
<h1 class="post-title">Example Images</h1>
</header>
<div class="post-content">
<h1 id="example-images-for-teaching">Example Images for Teaching</h1>
<p>Below is a list of links to images that instructors have used as examples when
teaching image analysis concepts and techniques.</p>
<p>Add a link according to the following template:</p>
<p><code>* [Title/short description of image](link to image): brief description of why the image has been chosen and for which concepts it is useful when teaching</code></p>
</div>
</article>
</div>
</div>
<footer class="site-footer">
<div class="wrapper">
<h2 class="footer-heading">Image Analysis Training</h2>
<div class="footer-col-wrapper">
<div class="footer-col footer-col-1">
<ul class="contact-list">
<li>Image Analysis Training</li>
<li><a href="mailto:image-analysis-support@embl.de">image-analysis-support@embl.de</a></li>
<li><a href="https://git.embl.de/grp-bio-it/image-analysis-training-resources/">Source code</a></li>
<li><a href="/image-analysis-training-resources/CONTRIBUTING">Contributions to this material are very welcome.</a></li>
</ul>
</div>
<div class="footer-col footer-col-2">
</div>
<div class="footer-col footer-col-3">
<p>A collection of material for teaching image analysis. Includes concept maps, exercises, example data
</p>
<p>Use of this site falls under <a href="https://www.embl.de/aboutus/privacy_policy/index.html">EMBL's Privacy Policy</a>.</p>
</div>
</div>
</div>
</footer>
</body>
</html>
_site/figures/animated-histogram.gif

4.43 MiB

_site/figures/binarization.png

74.5 KiB

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