-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathomr-research-unverified.html
2066 lines (1664 loc) · 60.8 KB
/
omr-research-unverified.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>OMR-Research</title>
<link rel=stylesheet type="text/css" href="css/OMR-Research.css">
</head>
<body>
<section class="page-header">
<h1>Bibliography on Optical Music Recognition</h1>
<p>Last updated: 01.12.2024</p>
<a href="https://github.com/OMR-Research/omr-research.github.io" class="btn">View on GitHub</a>
<table class="page-header-table" id="navigation-table">
<tr>
<td><a href="index.html" class="btn-light">Sorted by Year</a></td>
<td><a href="omr-research-compact.html" class="btn-light">Sortey by Year (Compact)</a></td>
<td><a href="omr-research-sorted-by-key.html" class="btn-light">Sorted by Key</a> </td>
<td><a href="omr-related-research.html" class="btn-light">Related research</a></td>
<td><a href="omr-research-unverified.html" class="btn-light">Unverified research</a></td>
</tr>
</table>
</section>
<!-- This document was automatically generated with bibtex2html 1.96
(see http://www.lri.fr/~filliatr/bibtex2html/),
with the following command:
BibTeX2HTML/OSX_x86_64/bibtex2html -s omr-style --use-keys --no-keywords --nodoc -o OMR-Unverified OMR-Research-Unverified.bib -->
<table>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Alphonce1988">Alphonce1988</a>]
</td>
<td class="bibtexitem">
B. Alphonce, B. Pennycook, I. Fujinaga, and N. Boisvert.
Optical music recognition: A progress report.
<em>Proceedings of the Small Computers in the Arts</em>, pages 8-12,
1988.
[ <a href="OMR-Unverified_bib.html#Alphonce1988">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Aoyama1982">Aoyama1982</a>]
</td>
<td class="bibtexitem">
H. Aoyama and A. Tojo.
Automatic recognition of music scores (in Japanese).
<em>Electronic Image Conference Journal</em>, TG PREL82-5: 33-40,
1982a.
[ <a href="OMR-Unverified_bib.html#Aoyama1982">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Aoyama1982a">Aoyama1982a</a>]
</td>
<td class="bibtexitem">
H. Aoyama and A. Tojo.
Automatic recognition of printed music (in Japanese).
<em>Institute of Electronics and Communications Engineers of Japan
(IECE)</em>, 11 (5): 427-35, 1982b.
[ <a href="OMR-Unverified_bib.html#Aoyama1982a">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Bainbridge1995">Bainbridge1995</a>]
</td>
<td class="bibtexitem">
D. Bainbridge.
Optical music recognition: Progress report 2.
Technical report, Department of Computer Science, University of
Canterbury, 1995.
[ <a href="OMR-Unverified_bib.html#Bainbridge1995">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Bainbridge1996a">Bainbridge1996a</a>]
</td>
<td class="bibtexitem">
D. Bainbridge.
Optical music recognition: A generalised approach.
In <em>Second New Zealand Computer Science Graduate Conference</em>,
1996.
[ <a href="OMR-Unverified_bib.html#Bainbridge1996a">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Beran1997">Beran1997</a>]
</td>
<td class="bibtexitem">
T. Beran.
<em>Rozpoznavani notoveho zapisu (In Czech)</em>.
PhD thesis, Czech Technical University, Prague, Czech Republic, 1997.
[ <a href="OMR-Unverified_bib.html#Beran1997">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Capitaine1995">Capitaine1995</a>]
</td>
<td class="bibtexitem">
T. Capitaine, E. Mouaddib, H. Trannois, and A. Lebrun.
Automatic recognition of musical scores.
In <em>Second Asian Conference on Computer Vision</em>, volume 1, pages
422-424, 1995.
[ <a href="OMR-Unverified_bib.html#Capitaine1995">bib</a> ]
<blockquote><font size="-1">
Optical music recognition is a complex problem because of the stave lines which link up the musical symbols. Thus, the standard approach of segmentation attempts to remove them, without cutting the symbols, by developing a complex algorithm or using them to operate on the zones they delimit. For the segmentation phase, some workers have tried considering a musical score as a set of line segments, but this approach is not appropriate to easy recognition. Our original approach to the segmentation problem is based on an exploitation of these lines and on the creation of virtual interlines according to the musical significance that they have. To limit the influence of the skew, line detection only appears at bar level. The same is true of the final recognition phase which can also deal with a local musical context local for each bar to render the identification. More accurate these lines and virtual interlines define the limits of 2*13 vertical projections (F and G clef) to detect the presence of musical information (patterns). These patterns are coded with 3 characters according to their forms and their relative height and width. A pattern position analysis combined with the score writing rules allow strings of chars matching 2 classes of musical symbols to be created (horizontal analysis to create slurs and vertical analysis for the others). These strings feed a syntactic analyzer for the final recognition according to their musical significance. The checking of the number of beats played in association with the tone of the bar and the identified alterations enables us to guarantee an optimal musical symbols recognition (5 Refs.) segmentation; pattern recognition
</font></blockquote>
<p>
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Carter1989">Carter1989</a>]
</td>
<td class="bibtexitem">
N. P. Carter.
<em>Automatic recognition of printed music in the context of
electronic publishing</em>.
PhD thesis, University of Surrey, Surrey, UK, 1989.
[ <a href="OMR-Unverified_bib.html#Carter1989">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Carter1990">Carter1990</a>]
</td>
<td class="bibtexitem">
N. P. Carter and R. A. Bacon.
Automatic recognition of music notation.
volume 482, 1990.
[ <a href="OMR-Unverified_bib.html#Carter1990">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Carter1991">Carter1991</a>]
</td>
<td class="bibtexitem">
N. Carter.
Automatic Recognition and Related Topics: Guildford, University of
Surrey.
<em>Computing in Musicology</em>, 7: 109-111, 1991.
[ <a href="OMR-Unverified_bib.html#Carter1991">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Carter1993">Carter1993</a>]
</td>
<td class="bibtexitem">
N. P. Carter.
A generalized approach to automatic recognition of music scores.
<em>Department of Music</em>, STAN-M-87, 1993.
[ <a href="OMR-Unverified_bib.html#Carter1993">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Carter1994a">Carter1994a</a>]
</td>
<td class="bibtexitem">
N. P. Carter.
Music score recognition: Problems and prospects.
<em>Computing in Musicology</em>, 9: 152-158, 1994.
[ <a href="OMR-Unverified_bib.html#Carter1994a">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Cho1996">Cho1996</a>]
</td>
<td class="bibtexitem">
K. J. Cho and K. E. Cho.
Recognition of piano score using skeletal lines and run-length
information.
<em>Journal of KISS(C) (Computing Practices)</em>, 2 (4): 461-473,
1996.
[ <a href="OMR-Unverified_bib.html#Cho1996">bib</a> ]
<blockquote><font size="-1">
The automatic recognition system for printed music would make practical the conversion of large quantities of printed music into computer-readable form. Works on automatic recognition of printed music have been started in the late 1960s and early 1970s. And some recognition systems for music notation have been developed in Japan and Europe. This work presents an overview of works undertaken in the field of manipulating printed music by computer, and proposes a new method to recognize each music symbol using skeletal lines and run-length information. And the system for automatic recognition of printed piano music using the new method has been developed and tested. The result reveals 98.5% accuracy for music symbols. The system shows size-independent, noise immune, and rotation-independent properties (28 Refs.) recognition
</font></blockquote>
<p>
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Choi1991">Choi1991</a>]
</td>
<td class="bibtexitem">
J. Choi.
<em>Optical recognition of the printed musical score</em>.
PhD thesis, University of Illinois at Chicago, 1991.
[ <a href="OMR-Unverified_bib.html#Choi1991">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Choudhury2006">Choudhury2006</a>]
</td>
<td class="bibtexitem">
G. Choudhury, T. DiLauro, R. Ferguson, M. Droettboom, and I. Fujinaga.
Document Recognition for a Million Books.
<em>D-Lib Magazine</em>, 12 (3), 2006.
[ <a href="OMR-Unverified_bib.html#Choudhury2006">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Clarke1988">Clarke1988</a>]
</td>
<td class="bibtexitem">
A. T. Clarke, B. M. Brown, and M. P. Thorne.
Inexpensive optical character recognition of music notation: A new
alternative for publishers.
<em>Proceedings of the Computers in Music Research Conference</em>,
pages 84-87, 1988.
[ <a href="OMR-Unverified_bib.html#Clarke1988">bib</a> |
<a href="http://dx.doi.org/10.1045/march2006-choudhury">DOI</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Clarke1990">Clarke1990</a>]
</td>
<td class="bibtexitem">
A. Clarke, M. Brown, and M. Thorne.
Problems to be faced by developers of computer based automatic music
recognisers.
<em>Proceedings of the International Computer Music Conference</em>,
pages 345-347, 1990.
[ <a href="OMR-Unverified_bib.html#Clarke1990">bib</a> ]
<blockquote><font size="-1">
Several attempts have been made to implement a computer based automatic music recogniser over the last twenty years. However, for tasks such as music printing or compiling a musical database, no such system has yet become commercially available that would help enter the music into the computer. This paper describes problems that have been ignored by the existing research and which the authors have encountered during the development of a music recognition system. It is argued why solutions to these problems will have to be found before an optical character recognition scheme for music can become reliable enough to be regularly used (7 Refs.) management systems; music; optical character recognition; printing
</font></blockquote>
<p>
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Coueasnon1991">Coueasnon1991</a>]
</td>
<td class="bibtexitem">
B. Coüasnon.
Réseaux de neurones appliqués à la reconnaissance
de partitions musicales.
<em>Rapport de DEA</em>, 1991.
[ <a href="OMR-Unverified_bib.html#Coueasnon1991">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Coueasnon1995c">Coueasnon1995c</a>]
</td>
<td class="bibtexitem">
B. Coüasnon and B. Rétif.
Utilisation d'une grammaire dans la reconnaissance de partitions
d'orchestre.
<em>Deuxiémes Journées d'Informatique Musicale</em>, pages
143-152, 1995.
[ <a href="OMR-Unverified_bib.html#Coueasnon1995c">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Coueasnon1996">Coueasnon1996</a>]
</td>
<td class="bibtexitem">
B. Coüasnon.
Formalisation grammaticale de la connaissance a priori pour l'analyse
de documents : Application aux partitions d'orchestre.
<em>Reconnaissance des formes et intelligence artificielle</em>, pages
465-474, 1996a.
[ <a href="OMR-Unverified_bib.html#Coueasnon1996">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Coueasnon1996a">Coueasnon1996a</a>]
</td>
<td class="bibtexitem">
B. Coüasnon.
<em>Segmentation et reconnaissance de documents guides par la
connaissance a priori : application aux partitions musicales</em>.
PhD thesis, Universit de Rennes, Rennes, France, 1996b.
[ <a href="OMR-Unverified_bib.html#Coueasnon1996a">bib</a> ]
<blockquote><font size="-1">
This thesis deals with Optical Document Recognition. In this domain, reliability is an important point: the user should not have to proofread the whole document.
Reliability can be obtained by first improving the quality of the recognition - mostly by solving segmentation problems - and, second, by having the system itself
detect badly recognized zones. To fullfill these objectives, one must use a priori knowledge to solve segmentations problems and to represent redundancy, thus
allowing error detection. We chose in this thesis to work on Optical Music Recognition for its structured knowledge and because it has many unsolved segmentation
problems (mainly linked to information density). For this kind of document strongly syntaxed, we suggest a new method called DMOS (Description and
MOdification of Segmentation). It consists of a grammatical formalism of position (to define knowledge) and a parser allowing a dynamic modification of the parsed
structure. This modification allows us to introduce context (symbolic level) in segmentation (numeric level) in order to improve recognition. With knowledge
represented by a grammar, the DMOS method offers a separation between knowledge and program, and an automatic parser generation (through a compilation
phase). These two points greatly ease the management of complex knowledge. Using the formalism of position we have been able to define a grammar of the music
notation. The present system is already able to recognize some full scores with polyphonic staves by correcting some type of segmentation errors (like symbols
touching notes) and by pointing out badly recognized zones.
</font></blockquote>
<p>
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="DiRiso1992">DiRiso1992</a>]
</td>
<td class="bibtexitem">
D. Di Riso.
<em>Lettura automatica di partiture musicali</em>.
PhD thesis, Universit di Salerno, Salerno, Italy, 1992.
[ <a href="OMR-Unverified_bib.html#DiRiso1992">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Distasi1993">Distasi1993</a>]
</td>
<td class="bibtexitem">
<em>An automatic system for reading musical scores</em>, volume 2, 1993.
[ <a href="OMR-Unverified_bib.html#Distasi1993">bib</a> ]
<blockquote><font size="-1">
In this paper we will show our system for the automated reading of musical scores. The system, as of now, is made up of two modules. The first module takes as input a scanner image. From the image, an intermediate alphanumeric output is obtained. The format we have chosen for this intermediate data is the MUSICA language [De Biasi et al., 1982]. The second module of the system translates the MUSICA code into a standard MIDI file, suitable for immediate playing as well as for further processing (5 Refs.) scanners; optical character recognition
</font></blockquote>
<p>
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Donnelly2011">Donnelly2011</a>]
</td>
<td class="bibtexitem">
D. Donnelly and A. Hankinson.
An Annotated Dataset for Optical Music Recognition Systems
Development.
<em>Conference of the Renaissance Society of America</em>, 2011.
[ <a href="OMR-Unverified_bib.html#Donnelly2011">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Fahmy1991">Fahmy1991</a>]
</td>
<td class="bibtexitem">
H. Fahmy and D. Blostein.
A graph grammar for high-level recognition of music notation.
In <em>First International Conference on Document Analysis and
Recognition</em>, volume 1, pages 70-78, 1991.
[ <a href="OMR-Unverified_bib.html#Fahmy1991">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Fahmy1991a">Fahmy1991a</a>]
</td>
<td class="bibtexitem">
H. Fahmy.
A graph-grammar approach to high-level music recognition.
Master's thesis, Queen’s University, Kingston, Ontario, Canada,
1991.
[ <a href="OMR-Unverified_bib.html#Fahmy1991a">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Fischer1978">Fischer1978</a>]
</td>
<td class="bibtexitem">
K. N. Fischer.
<em>Computer recognition of engraved music</em>.
PhD thesis, University of Tennessee, 1978.
[ <a href="OMR-Unverified_bib.html#Fischer1978">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Fluhr1988">Fluhr1988</a>]
</td>
<td class="bibtexitem">
M. Truquet, editor.
<em>Music pattern recognition</em>, Toulouse, France, 1988.
[ <a href="OMR-Unverified_bib.html#Fluhr1988">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Fujinaga1989">Fujinaga1989</a>]
</td>
<td class="bibtexitem">
I. Fujinaga, B. Alphonce, B. Pennycook, and N. Boisvert.
Optical recognition of music notation by computer.
<em>Computers in Music Research</em>, 1: 161-164, 1989.
[ <a href="OMR-Unverified_bib.html#Fujinaga1989">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Fujinaga1989a">Fujinaga1989a</a>]
</td>
<td class="bibtexitem">
<em>Computer recognition of musical notation</em>, Kyoto, Japan, 1989a.
[ <a href="OMR-Unverified_bib.html#Fujinaga1989a">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Fujinaga1989b">Fujinaga1989b</a>]
</td>
<td class="bibtexitem">
<em>Issues in the design of an optical music recognition system</em>, Columbus,
OH, 1989b.
[ <a href="OMR-Unverified_bib.html#Fujinaga1989b">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Fujinaga1991">Fujinaga1991</a>]
</td>
<td class="bibtexitem">
I. Fujinaga, B. Pennycook, and B. Alphonce.
The optical music recognition project.
<em>Computers in Music Research</em>, 3: 139-142, 1991.
[ <a href="OMR-Unverified_bib.html#Fujinaga1991">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Fujinaga1991a">Fujinaga1991a</a>]
</td>
<td class="bibtexitem">
<em>Optical music recognition: Progress report</em>, Montreal, QC, 1991.
[ <a href="OMR-Unverified_bib.html#Fujinaga1991a">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Fujinaga1992">Fujinaga1992</a>]
</td>
<td class="bibtexitem">
I Fujinaga.
An optical music recognition system that learns.
<em>Enabling Technologies for High-Bandwidth Applications</em>, SPIE
1785: 210-217, 1992.
[ <a href="OMR-Unverified_bib.html#Fujinaga1992">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Fujinaga1992a">Fujinaga1992a</a>]
</td>
<td class="bibtexitem">
I. Fujinaga, B. Alphonce, and B. Pennycook.
Interactive optical music recognition.
<em>Proceedings of the International Computer Music Conference</em>,
pages 117-120, 1992.
[ <a href="OMR-Unverified_bib.html#Fujinaga1992a">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Fujinaga1992b">Fujinaga1992b</a>]
</td>
<td class="bibtexitem">
<em>Optical music recognition on NeXT workstation</em>, Los Angeles, CA, 1992.
[ <a href="OMR-Unverified_bib.html#Fujinaga1992b">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Fujinaga1996">Fujinaga1996</a>]
</td>
<td class="bibtexitem">
I. Fujinaga.
Adaptive optical music recognition.
<em>IEEE Transactions on Systems, Man, and Cybernetics</em>, 1996.
[ <a href="OMR-Unverified_bib.html#Fujinaga1996">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Geggus1993">Geggus1993</a>]
</td>
<td class="bibtexitem">
K. M. Geggus and E. C. Botha.
A model-based approach to sheet music recognition.
<em>Elektron</em>, 10 (1): 25-29, 1993.
[ <a href="OMR-Unverified_bib.html#Geggus1993">bib</a> ]
<blockquote><font size="-1">
The recognition of sheet music by computer has been tackled with varying degrees of success for 25 years. An effective solution to this problem is to use the model-based approach, where the syntax and structure of sheet music aid the recognition of the music symbols. The complete system, which translates a graphical sheet of music to a text file, involves data acquisition (a flat bed scanner with a resolution of 300 dots per inch is used), bar identification, stave line extraction, symbol segmentation and recognition, and generation of the output file (8 Refs.) model-based reasoning; optical character recognition
</font></blockquote>
<p>
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Glass1989">Glass1989</a>]
</td>
<td class="bibtexitem">
S. Glass.
<em>Optical music recognition</em>.
PhD thesis, University of Canterbury, Canterbury, UK, 1989.
[ <a href="OMR-Unverified_bib.html#Glass1989">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Hachimura1987">Hachimura1987</a>]
</td>
<td class="bibtexitem">
K. Hachimura and Y. Ohno.
A system for the representation of human body movements from dance
scores.
<em>Pattern Recognition Letters</em>, 5: 1-9, 1987.
[ <a href="OMR-Unverified_bib.html#Hachimura1987">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Hankinson2010">Hankinson2010</a>]
</td>
<td class="bibtexitem">
A. Hankinson.
Distributed Optical Music Recognition.
<em>Digital Humanities Summer Institute</em>, 2010.
[ <a href="OMR-Unverified_bib.html#Hankinson2010">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Hankinson2011">Hankinson2011</a>]
</td>
<td class="bibtexitem">
A. Hankinson, G. Vigliensoni, J. A. Burgoyne, and I. Fujinaga.
New tools for Optical Chant Recognition.
<em>Conference of the International Association of Music
Libraries</em>, 2011.
[ <a href="OMR-Unverified_bib.html#Hankinson2011">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Hankinson2012">Hankinson2012</a>]
</td>
<td class="bibtexitem">
A. Hankinson, G. Vigliensoni, J. A. Burgoyne, and I. Fujinaga.
New tools for Optical Chant Recognition.
<em>Conference of the Music Libraries Association</em>, 2012.
[ <a href="OMR-Unverified_bib.html#Hankinson2012">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Hankinson2013a">Hankinson2013a</a>]
</td>
<td class="bibtexitem">
A. Hankinson and I. Fujinaga.
Searching and Navigating Digitized Music Books using Optical Music
Recognition.
<em>Canadian Association of Music Libraries Conference</em>, 2013.
[ <a href="OMR-Unverified_bib.html#Hankinson2013a">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Hankinson2013b">Hankinson2013b</a>]
</td>
<td class="bibtexitem">
<em>SIMSSA: Towards full-music search over a large collection of musical
scores</em>, Lincoln, NE, 2013.
[ <a href="OMR-Unverified_bib.html#Hankinson2013b">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Hankinson2014">Hankinson2014</a>]
</td>
<td class="bibtexitem">
A. Hankinson and I. Fujinaga.
Optical music recognition for navigating and retrieving music
manuscript images.
<em>Medieval and Renaissance Conference</em>, 2014.
[ <a href="OMR-Unverified_bib.html#Hankinson2014">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Homenda2004">Homenda2004</a>]
</td>
<td class="bibtexitem">
<em>Automatic Recognition of Music Notation Using Methods of Centroids and
Classification Trees</em>, Haikou, China, 2004.
[ <a href="OMR-Unverified_bib.html#Homenda2004">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Inokuchi1981">Inokuchi1981</a>]
</td>
<td class="bibtexitem">
S. Inokuchi.
Musical database.
<em>Journal of the Institute of Electronics and Communication
Engineers of Japan</em>, 64 (5): 466-468, 1981.
[ <a href="OMR-Unverified_bib.html#Inokuchi1981">bib</a> ]
<blockquote><font size="-1">
Musical data entry methods by typewriter, piano, tablet touch pad, OCR and automatic digital musical analysis are outlined. As examples of musical databases the Institut de Recherche et Coordination Acoustique/musique and the National Ethnographic Museum (of Japan) methods are discussed (9 Refs.) optical character recognition; typewriters
</font></blockquote>
<p>
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Inokuchi1990">Inokuchi1990</a>]
</td>
<td class="bibtexitem">
S. Inokuchi and H. Katayose.
Computer and music.
<em>Journal of the Institute of Electronics, Information and
Communication Engineers</em>, 73 (9): 965-967, 1990.
[ <a href="OMR-Unverified_bib.html#Inokuchi1990">bib</a> ]
<blockquote><font size="-1">
Computer applications for music production have been developed in the 1970s. Computers have been used in various fields of music, including applications for a music database, music CAI and visual input of musical information as well as music production tools. Music as the objective of cognitive science or artificial intelligence has been attracting great interest and international conferences have been held recently. The paper describes the technology and development trends in this field, referring to the basic technology of computer music, notation system, man-machine interaction system, music composition/arrangement systems and music recognition (16 Refs.) instruction; electronic music; music
</font></blockquote>
<p>
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Itagaki1990">Itagaki1990</a>]
</td>
<td class="bibtexitem">
T. S. Itagaki, S. Hashimoto, M. Isogai, and S. Ohteru.
Automatic recognition on some different types of musical notation.
In <em>Proceedings of the International Association for Pattern
Recognition Workshop on Syntactic and Structural Pattern Recognition</em>, page
488 ff., 1990.
[ <a href="OMR-Unverified_bib.html#Itagaki1990">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Kassler1970">Kassler1970</a>]
</td>
<td class="bibtexitem">
M. Kassler.
An essay toward specification of a music-reading machine.
In B. Brook, editor, <em>Musicology and the computer</em>, pages
151-175. City University of New York Press, New York, 1970.
[ <a href="OMR-Unverified_bib.html#Kassler1970">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Kato1988">Kato1988</a>]
</td>
<td class="bibtexitem">
H. Kato and S. Inokuchi.
Automatic recognition of printed piano music based on bar unit
processing (in Japanese).
<em>Transactions of I. E. C. E.</em>, J71-D (5): 894-901, 1988.
[ <a href="OMR-Unverified_bib.html#Kato1988">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Kato1990">Kato1990</a>]
</td>
<td class="bibtexitem">
H. Kato and S. Inokuchi.
The recognition system for printed piano music using musical
knowledge and constraints.
<em>Proceedings of the International Association for Pattern
Recognition Workshop on Syntactic and Structural Pattern Recognition</em>, pages
231-248, 1990.
[ <a href="OMR-Unverified_bib.html#Kato1990">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Kinoshita1998">Kinoshita1998</a>]
</td>
<td class="bibtexitem">
T. Kinoshita, H. Muraoka, and H. Tanaka.
Note recognition using statistical information of musical note
transitions.
<em>Journal of the Acoustical Society of Japan</em>, 54 (3): 190-198,
1998.
[ <a href="OMR-Unverified_bib.html#Kinoshita1998">bib</a> ]
<blockquote><font size="-1">
This paper proposes a new method that improves the note recognition accuracy of a music recognition system. The system recognizes the pitch and the name of the instrument for each note in monaural music signals. The basic idea of the method is utilizing transition pattern of notes in music. Firstly, the results of statistical analyses of printed music are described. These have been conducted in order to obtain the note transition probabilities. Then the method for integrating such probabilistic information into recognition processes is introduced. The method has been implemented using the OPTIMA architecture and tested from several aspects. The results of the tests show that the proposed method improves the note recognition accuracy (6 Refs.)
</font></blockquote>
<p>
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Kobayakawa1993">Kobayakawa1993</a>]
</td>
<td class="bibtexitem">
T. Kobayakawa.
Auto music score recognition system.
<em>Proceedings of the SPIE: Character Recognition Technologies</em>,
1906: 112-123, 1993.
[ <a href="OMR-Unverified_bib.html#Kobayakawa1993">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Lee1985">Lee1985</a>]
</td>
<td class="bibtexitem">
M. Woo Lee and J. Soo Choi.
The recognition of printed music score and performance using computer
vision system (in Korean and English translation).
<em>Journal of the Korean Institute of Electronic Engineers</em>, 22
(5): 429-435, 1985.
[ <a href="OMR-Unverified_bib.html#Lee1985">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Lee1994">Lee1994</a>]
</td>
<td class="bibtexitem">
S. Lee and J. Shin.
Recognition of music scores using neural networks.
<em>Journal of the Korea Information Science Society</em>, 21 (7):
1358-1366, 1994.
[ <a href="OMR-Unverified_bib.html#Lee1994">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Lee1995">Lee1995</a>]
</td>
<td class="bibtexitem">
S. D. Lee.
Automatic Optical Music Recognition, 1995.
[ <a href="OMR-Unverified_bib.html#Lee1995">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Leite1994">Leite1994</a>]
</td>
<td class="bibtexitem">
J. A. Leite and M. Ferrand.
<em>RIEM: Reconhecimento e Interpretao de Escrita Musical (in
Portuguese)</em>.
B.sc. dissertation, Universidade de Coimbra, 1994.
[ <a href="OMR-Unverified_bib.html#Leite1994">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Leite1998">Leite1998</a>]
</td>
<td class="bibtexitem">
J. Leite, M. Ferrand, and A. Cardoso.
RIEM: A system for recognition and interpretation of music writing
(in Portuguese).
Internal Report RI-DEI-001-98, 1998.
[ <a href="OMR-Unverified_bib.html#Leite1998">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Leplumey1991">Leplumey1991</a>]
</td>
<td class="bibtexitem">
I. Leplumey and J. Camillerapp.
Comparison of region labelling for musical scores.
<em>International Conference on Document Analysis and Recognition</em>,
2: 674-682, 1991a.
[ <a href="OMR-Unverified_bib.html#Leplumey1991">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Leplumey1991a">Leplumey1991a</a>]
</td>
<td class="bibtexitem">
I. Leplumey and J. Camillerapp.
Coopration entre la segmentation des rgions blanches et des rgions
noires pour l'analyse de partitions musicales.
<em>8e Congress Reconnaissance des Formes et Intelligence
Artificielle</em>, 3: 1045-1052, 1991b.
[ <a href="OMR-Unverified_bib.html#Leplumey1991a">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Lobb2005">Lobb2005</a>]
</td>
<td class="bibtexitem">
<em>Fast capture of sheet music for an agile digital music library</em>, London,
UK, 2005.
[ <a href="OMR-Unverified_bib.html#Lobb2005">bib</a> ]
</td>
</tr>
<tr valign="top">
<td align="right" class="bibtexnumber">
[<a name="Luckner2003">Luckner2003</a>]
</td>
<td class="bibtexitem">
M. Luckner.
<em>Automatic Identification of Selected Symbols of Music
Notation</em>.
PhD thesis, Warsaw University of Technology, Warsaw, Poland, 2003.
[ <a href="OMR-Unverified_bib.html#Luckner2003">bib</a> ]
</td>
</tr>