diff options
author | Jan Nieuwenhuizen <janneke@gnu.org> | 2009-08-12 23:38:28 +0200 |
---|---|---|
committer | Jan Nieuwenhuizen <janneke@gnu.org> | 2009-08-13 01:30:27 +0200 |
commit | 480e203052571809f1a11ee7c7728f08aa042fe9 (patch) | |
tree | c56af9445286eb71c8b92b63cc052f3fc8c472a4 /Documentation/automated-engraving/scoring-esthetics.itexi | |
parent | 6881f8675f87ab0830dbccfaeeab30207552317d (diff) |
Doc: Add converted essay.
Diffstat (limited to 'Documentation/automated-engraving/scoring-esthetics.itexi')
-rw-r--r-- | Documentation/automated-engraving/scoring-esthetics.itexi | 102 |
1 files changed, 102 insertions, 0 deletions
diff --git a/Documentation/automated-engraving/scoring-esthetics.itexi b/Documentation/automated-engraving/scoring-esthetics.itexi new file mode 100644 index 0000000000..de7cc8abf8 --- /dev/null +++ b/Documentation/automated-engraving/scoring-esthetics.itexi @@ -0,0 +1,102 @@ +\input texinfo @c -*- coding: utf-8; mode: texinfo; -*- +@ignore + Translation of GIT committish: FILL-IN-HEAD-COMMITTISH + + When revising a translation, copy the HEAD committish of the + version that you are working on. See TRANSLATION for details. +@end ignore + + + +@unnumberedsec Beautiful numbers + +How do we actually make formatting decisions? In other words, which +of the three configurations should we choose for the following slur? + +@image{pictures/slur-esthetics,,,.png} + +There are a few books on the art of music engraving +available. Unfortunately, they contain rules of simple thumbs and some +examples. Such rules can be instructive, but they are a far cry from +an algorithm that we could readily implement in a computer. Following +the instructions from literature leads to algorithms with lots of +handcoded exceptions. Doing all this case analysis is a lot of work, +and often not all cases are covered completely. + +@divClass{float-center} +@divEnd +@image{pictures/ross-beam-scan,,,.jpeg} + +@divClass{float-center} +@divEnd +@emph{Formatting rules defined by example. Image from Ted Ross' The Art of +Music Engraving} + +We have developed a much easier and robust method of determining the +best formatting solution: score based formatting. The principle is the +same as a beauty contest: for each possible configuration, we compute an +ugliness score. Then we choose the least ugly configuration. + +@image{pictures/slur-esthetics-annotate-1,,,.png} + +For example, in the above configuration, the slur nicely connects the +starting and ending note of the figure, a desirable trait. However, it +also grazes one note head closely, while staying away from the others. +Therefore, for this configuration, we deduct a `variance' score of +15.39. + +@image{pictures/slur-esthetics-annotate-2,,,.png} + +In this configuration, the slur keeps a uniform distance from the +heads, but we have to deduct some points because the slur doesn't +start and end on the note heads. For the left edge, we deduct 1.71, +and for the right edge (which is further from the head) we deduct 9.37 +points. + +Furthermore, the slur goes up, while the melody goes down. This incurs +a penalty of 2.00 points + +@image{pictures/slur-esthetics-annotate-3,,,.png} + +Finally, in this configuration, only the ending the slur is far away +from the ending note head, at a score of 10.04 ugliness points. + +Adding up all scores, we notice that the third option is the least +ugly, or most beautiful version. Hence we select that one. + +This technique is a general technique, and it is used in a lot of +situations, for example + +@itemize +@item + determining beam slopes + +@image{pictures/beam-scoring-example,,,.png} + +@item + formatting tied chords + +@image{pictures/ties-scoring-example,,,.png} +@item + formatting dotted chords + + +@item + line breaking + +@item + page breaking + +@end itemize + +This technique evaluates a lot of possibilities, which takes some time +to compute. However, that is a worthwhile expense, because the end +result is much better, and because it makes our lives easy. + +@divClass{float-right} +@divEnd +Next: @ref{benchmarking.html,Man is the measure of things}: is a +flexible architecture enough? + +@bye + |