summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick White <git@njw.name>2019-10-02 17:56:14 +0100
committerNick White <git@njw.name>2019-10-02 17:56:14 +0100
commit793e85d3361697f0071737b1317dea2097c96979 (patch)
tree05350adb8b37348120745b42e3991196bd2128fa
parentced7a8b54710a590c38cbbc9f64dec7920cc27a8 (diff)
Add first image for binarisation-introduction, and improve organisation.
-rw-r--r--content/posts/adaptive-binarisation/index.md6
-rw-r--r--content/posts/binarisation-introduction/example-01.pngbin0 -> 29197 bytes
-rw-r--r--content/posts/binarisation-introduction/index.md (renamed from content/posts/binarisation-01.md)10
-rw-r--r--content/posts/who-we-are.md2
-rw-r--r--images/binarisation-introduction/example-01.xcfbin0 -> 177803 bytes
5 files changed, 13 insertions, 5 deletions
diff --git a/content/posts/adaptive-binarisation/index.md b/content/posts/adaptive-binarisation/index.md
new file mode 100644
index 0000000..0060f44
--- /dev/null
+++ b/content/posts/adaptive-binarisation/index.md
@@ -0,0 +1,6 @@
+---
+title: "Adaptive Binarisation"
+date: 2019-10-02
+draft: true
+categories: [binarisation, preprocessing, image manipulation]
+---
diff --git a/content/posts/binarisation-introduction/example-01.png b/content/posts/binarisation-introduction/example-01.png
new file mode 100644
index 0000000..ea8141a
--- /dev/null
+++ b/content/posts/binarisation-introduction/example-01.png
Binary files differ
diff --git a/content/posts/binarisation-01.md b/content/posts/binarisation-introduction/index.md
index 79e33e0..1c5a469 100644
--- a/content/posts/binarisation-01.md
+++ b/content/posts/binarisation-introduction/index.md
@@ -1,7 +1,8 @@
---
-title: "Binarisation 1"
-date: 2019-02-11T08:32:42Z
+title: "An Introduction to Binarisation"
+date: 2019-02-11
draft: true
+categories: [binarisation, preprocessing, image manipulation]
---
Binarisation is the process of turning a colour or grayscale image into
a black and white image. It's called binarisation as once you're done,
@@ -16,7 +17,7 @@ You can pick a number, and go through each pixel in the image, checking
if the pixel is lighter than the number, and if so declaring it to be
white, otherwise black.
-( INSERT IMAGE DEMONSTRATING THIS )
+![Example of basic binarisation](example-01.png)
The first issue with this is deciding what number to pick to determine
whether a pixel is white or black. This number is called the threshold,
@@ -61,4 +62,5 @@ which are darker than the threshold.
Both of these criticisms could be addressed by using an algorithm that
could alter the threshold according to the conditions of the region on
-the page.
+the page. That will be covered in the next blog post,
+[Adaptive Binarisation]({{< ref "binarisation-adaptive.md" >}}).
diff --git a/content/posts/who-we-are.md b/content/posts/who-we-are.md
index 629bdcf..3090606 100644
--- a/content/posts/who-we-are.md
+++ b/content/posts/who-we-are.md
@@ -1,6 +1,6 @@
---
title: "Who we are"
-date: 2019-02-11T08:28:20Z
+date: 2019-02-11
draft: true
---
Rescribe is a research collective focused on improving the state of OCR and related technologies for historical books and documents. Free and open source software is key to the work we do, and we release all the code and training data we can on [github](https://github.com/rescribe).
diff --git a/images/binarisation-introduction/example-01.xcf b/images/binarisation-introduction/example-01.xcf
new file mode 100644
index 0000000..5d01bb8
--- /dev/null
+++ b/images/binarisation-introduction/example-01.xcf
Binary files differ