Developing handwritten text recognition for Xournal++.
Your contributions are greatly appreciated!
Execute the following commands:
- Create an environment:
conda create --name xournalpp_htr python=3.10.11. - Use this environment:
conda activate xournalpp_htr. - Install HTRPipelines package using its installation guide.
- Install all dependencies of this package
pip install -r requirements.txt. - Install the package in development mode with
pip install -e .(do not forget the dot, '.'). - Install pre-commit hooks with:
pre-commit install. - Move
plugin/folder content to${XOURNAL_CONFIG_PATH}/plugins/xournalpp_htr/with${XOURNAL_CONFIG_PATH}being the configuration path of Xournal++, see Xournal++ manual here.
Run bash INSTALL_LINUX.sh from repository root directory.
This script also installs the plugin as explained in the last point of the cross-platform installation procedure. The installation of the plugin is performed with plugin/copy_to_plugin_folder.sh, which can also be invoked independently of INSTALL_LINUX.sh for updating the plugin installation.
Confirm that the installation worked by running make tests-installation from repository root directory.
Details relevant for usage of the plugin:
- Make sure to save your file beforehand. The plugin will also let you know that you need to save your file first.
- After installation, navigate to
Plugin > Xournal++ HTRto invoke the plugin. Then select a filename and pressSave. Lastly, wait a wee bit until the process is finished; the Xournal++ UI will block while the plugin applies HTR to your file. If you opened Xournal++ through a command-line, you can see progress bars that show the HTR process in real-time.
Note: Currently, the Xournal++ HTR plugin requires you to use a nightly build of Xournal++ because it uses upstream Lua API features that are not yet part of the stable build. Using the officially provided Nightly AppImag, see here, is very convenient. The plugin has been tested with the following nightly Linux build of Xournal++:
xournalpp 1.2.3+dev (583a4e47)
└──libgtk: 3.24.20
Details relevant for development of the plugin:
- Activate environment:
conda activate xournalpp_htr. Alternatively usesource activate_env.shas shortcut. - Use the code.
- To update the requirements file:
pip freeze > requirements.txt.
Taking handwritten notes digitally comes with many benefits but lacks searchability of your notes. Hence, there is a need to make your handwritten notes searchable. This can be achieved with "handwritten text recognition" (HTR), which is the process of assigning searchable text to written strokes.
While many commercial note taking apps feature great HTR systems to make your notes searchable and there are a number of existing open-source implementations of various algorithms, there is no HTR feature available in an open-source note taking application that is privacy aware and processes your data locally.
The purpose of the Xournal++ HTR project is to change that!
Xournal++ HTR strives to bring open-source on-device handwriting recognition to Xournal++ as it is one of the most adopted open-source note taking apps and thereby HTR can be delivered to the largest possible amount of users.
The design of Xournal++ HTR tries to bridge the gap between both delivering a production ready product and allowing contributors to experiment with new algorithms.
The project design involves a Lua plugin and a Python backend, see the following figure. First, the production ready product is delivered by means of an Xournal++ plugin. The plugin is fully integrated in Xournal++ and calls a Python backend that performs the actual transcription. The Python backend allows selection of various recognition models and is thereby fully extendable with new models.
Developing a usable HTR systems requires experimentation. The project structure is set up to accommodate this need. Note that ideas on improved project structures are appreciated.
The experimentation is carried out in terms of "concepts". Each concept explores a different approach to HTR and possibly improves over previous concepts, but not necessarily to allow for freedom in risky experiments. Concept 1 is already implemented and uses a computer vision approach that is explained below.
Future concepts might explore:
- Retrain computer vision models from concept 1 using native data representation of Xournal++
- Use sequence-to-sequence models to take advantage of native data representation of Xournal++
- Use data augmentation to increase effective size of training data
- Use of language models to correct for spelling mistakes
This concept uses computer vision based algorithms to first detect words on a page and then to read those words.
The following shows a video demo on YouTube using real-life handwriting data from a Xournal file:
Despite not being perfect, the main take away is that the performance is surprisingly good given that the underlying algorithm has not been optimised for Xournal++ data at all.
The performance is sufficiently good to be useful for the Xournal++ user base.
Feel free to play around with the demo yourself using this code after installing this project. The "concept 1" is also what is currently used in the plugin and shown in the 90 seconds demo.
Next steps to improve the performance of the handwritten text recognition even further could be:
- Re-train the algorithm on Xournal++ specific data, while potentially using data augmentation.
- Use language model to improve text encoding.
- Use sequence-to-sequence algorithm that makes use of Xournal++'s data format. This translates into using online HTR algorithms.
I would like to acknowledge Harald Scheidl in this concept as he wrote the underlying algorithms and made them easily usable through his HTRPipeline repository - after all I just feed his algorithm Xournal++ data in concept 1. Go check out his great content!
We try to keep up code quality as high as practically possible. For that reason, the following steps are implemented:
- Testing. Xournal++ HTR uses
pytestfor implementing unit, regression and integration tests. - Linting. Xournal++ HTR uses
rufffor linting and code best practises.ruffis implemented as git pre-commit hook. Sinceruffas pre-commit hook is configured externally withpyproject.toml, you can use the same settings in your IDE if you wish to speed up the process. - Formatting. Xournal++ HTR uses
ruff-formatfor consistent code formatting.ruff-formatis implemented as git pre-commit hook. Sinceruff-formatas pre-commit hook is configured externally withpyproject.toml, you can use the same settings in your IDE if you wish to speed up the process.
The following branching strategy is used to keep the master branch stable and
allow for experimentation: master > dev > feature branches. This branching
strategy is shown in the following visualisation and then explained in more detail
in the next paragraph:
%%{init:{ "gitGraph":{ "mainBranchName":"master" }}}%%
gitGraph
commit
commit
branch dev
commit
checkout dev
commit
commit
branch feature/awesome_new_feature
commit
checkout feature/awesome_new_feature
commit
commit
commit
checkout dev
merge feature/awesome_new_feature
commit
commit
checkout master
merge dev
commit
commit
In more details, this repository adheres to the following git branching strategy: The
master branch remains stable and delivers a functioning product. The dev branch
consists of all code that will be merged to master eventually where the corresponding
features are developed in individual feature branches; the above visualisation shows an
example feature branch called feature/awesome_new_feature that works on a feature
called awesome_new_feature.
Given this structure, please implement new features as feature branches and
rebase them onto the dev branch prior to sending a pull request to dev.
Note: The Github Actions CI/CD pipeline runs on the branches master and dev.
I would like to thank Leonard Salewski and Jonathan Prexl for useful discussions, Harald Scheidl for making his repositories about handwritten text recognition public (SimpleHTR, WordDetectorNN and HTRPipeline) and the School of Physics and Astronomy at The University of Edinburgh for providing compute power.
If you are using Xournal++ HTR for your research, I'd appreciate if you could cite it. Use:
@software{Lellep_Xournalpp_HTR,
author = {Lellep, Martin},
title = {xournalpp_htr},
url = {https://github.com/PellelNitram/xournalpp_htr},
license = {GPL-2.0},
}


