Skip to content

Commit 96e6703

Browse files
authored
Merge pull request #155 from JuliaImages/jc/democards
upgrade to Documenter 0.25 and DemoCards 0.3
2 parents 3a4e439 + 921563a commit 96e6703

File tree

14 files changed

+40
-20
lines changed

14 files changed

+40
-20
lines changed

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ AxisArrays = "0"
3434
ColorTypes = "0"
3535
Colors = "0"
3636
CoordinateTransformations = "0"
37-
DemoCards = "0.2"
37+
DemoCards = "0.3"
3838
Distances = "0"
39-
Documenter = "0.24.2"
39+
Documenter = "0.25"
4040
FileIO = "1"
4141
FixedPointNumbers = "0"
4242
ImageAxes = "0"

docs/examples/color_channels/color_separations_svd.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# ---
22
# cover: assets/color_separations_svd.gif
33
# title: Image Compression using SVD
4+
# author: Tim Holy
5+
# date: 2020-03-17
46
# ---
57

68
# This demonstration shows how to work with color channels to explore image compression

docs/examples/color_channels/rgb_grayscale.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# ---
22
# title: RGB to GrayScale
33
# cover: assets/rgb_grayscale.gif
4+
# author: Gautam Mishra
5+
# date: 2020-07-01
46
# ---
57

68
# This example illustrates RGB to Grayscale Conversion

docs/examples/color_channels/rgb_hsv_thresholding.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# ---
22
# title: RGB to HSV and thresholding
33
# cover: assets/rgb_hsv_thresholding.png
4+
# author: Johnny Chen
5+
# date: 2019-12-07
46
# ---
57

68
# This example illustrates how RGB to HSV (Hue, Saturation, Value) conversion

docs/examples/config.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"theme": "grid"
3+
}

docs/examples/contours/contour_detection.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# ---
22
# cover: assets/contour_detection.png
33
# title: Contour Detection and Drawing
4+
# author: Archit Rungta
5+
# date: 2020-01-12
46
# ---
57

68
# This demonstration shows how to detect contours on binary images

docs/examples/contours/detecting_corners.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# ---
22
# cover: assets/corner.png
33
# title: Detecting Corners
4+
# author: Jivetesh Jain
5+
# date: 2020-07-01
46
# ---
57

68
# Corner Detection, which is a subset of Interest Point Detection, tries to detect

docs/examples/image_quality_and_benchmarks/structural_similarity_index.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# ---
22
# cover: assets/ssim.png
33
# title: Structural Similarity Index
4+
# description: This demo shows how SSIM and MSE are used to evaluate the image quality
5+
# author: Jivetesh Jain
6+
# date: 2020-07-01
47
# ---
58

69
# When comparing images, the **Mean Squared Error** (or MSE), though straightforward to calculate,

docs/examples/spatial_transformation/alpha_compositing.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# ---
22
# title: Alpha Compositing
33
# cover: assets/alpha_compositing.png
4+
# author: Johnny Chen
5+
# date: 2020-03-07
46
# ---
57

68
# This demonstration shows how [alpha compositing](https://en.wikipedia.org/wiki/Alpha_compositing)

docs/examples/spatial_transformation/histogram_equalization.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# ---
22
# title: Histogram equalisation
33
# cover: assets/histogram_equalization.png
4+
# author: Archit Rungta
5+
# date: 2020-01-12
46
# ---
57

68
# This demo issustrates the use of [Histogram equalization](https://juliaimages.org/ImageContrastAdjustment.jl/stable/reference/#Equalization-1), [gamma correction matching](https://juliaimages.org/ImageContrastAdjustment.jl/stable/reference/#Matching-1)
@@ -28,4 +30,4 @@ mosaicview(img, hist_equal, gamma_correction, hist_adapt; nrow = 1)
2830

2931
# --- save covers --- #src
3032
using FileIO #src
31-
save("assets/histogram_equalization.png", hist_equal) #src
33+
save("assets/histogram_equalization.png", hist_equal) #src

0 commit comments

Comments
 (0)