Smude is a library dedicated to binarization and dewarping/rectification of sheet music images taken with smartphones:
- Python 3.10+
- ~348 MB disk space for the Deep Learning model (downloaded on first run)
pip install smudeuv is a fast Python package manager:
uv pip install smudegit clone https://github.com/sonovice/smude.git
cd smude
pip install .Installing the package adds a command-line interface called smude:
smude input.jpg -o output.pngOptions:
usage: smude [-h] [-o OUTFILE] [--no-binarization] [--use-gpu] infile
Dewarp and binarize sheet music images.
positional arguments:
infile Specify the input image
options:
-h, --help show this help message and exit
-o OUTFILE, --outfile OUTFILE
Specify the output image (default: result.png)
--no-binarization Deactivate binarization
--use-gpu Use GPU for inference
from skimage.io import imread, imsave
from smude import Smude
image = imread("images/input_fullsize.jpg")
smude = Smude(use_gpu=False, binarize_output=True)
result = smude.process(image)
imsave("result.png", result)Note: Smude will download a ~348 MB Deep Learning model on the first run.
Rectification of sheet music pages is divided into several steps:
- ROI Extraction - Extract the sheet music page from the smartphone image
- Adaptive Binarization - Convert to binary image using Sauvola algorithm
- U-Net Segmentation - Pixelwise segmentation into "upper staff line", "lower staff line", and "bar line" classes
- Vanishing Point Estimation - Estimate the perspective vanishing point
- Spline Interpolation - Fit splines to detected staff lines
- Dewarping - Rectify the curved page geometry
The Deep Learning model was trained on thousands of public domain scores from musescore.com, augmented and rendered with Verovio, and artificially warped using code from NVlabs/ocrodeg.
The dewarping algorithm is based on:
Meng, G. et al. (2012): Metric Rectification of Curved Document Images. IEEE Transactions on Pattern Analysis and Machine Intelligence, 34(4), p. 707-722. DOI: 10.1109/TPAMI.2011.151
- Full page coverage - Include the entire page plus some extra margins
- Even lighting - Ensure the sheet music is evenly lit without shadows
- Sharp focus - Blurry or defocused images will likely fail
- Book curvature - Works best with pages that have a cylindrical surface curve (typical for bound books)
This repository is under the "Commons Clause" License Condition v1.0 on top of GNU AGPLv3.

