You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Algorithm P3 counts the total intersection between horizontal line segments. This can lead to some cool, and some bad situations:
if two instruments share the same note of a single melody, the total intersection of the occurrence will be higher than if just one instrument was playing the melody (and so, we can prioritize it in the ranking)
if just the single note of the pattern is repeated many times in various parts, then the total intersection length might be as large as the pattern itself, even though only the first note has matched.
Possible solutions:
merge all of the overlapping segments so the anomaly is ignored altogether and we don't include the intersection value to rank the results
filter the results by threshold, making sure that a minimum number of pattern notes are found
The text was updated successfully, but these errors were encountered:
Algorithm P3 counts the total intersection between horizontal line segments. This can lead to some cool, and some bad situations:
if two instruments share the same note of a single melody, the total intersection of the occurrence will be higher than if just one instrument was playing the melody (and so, we can prioritize it in the ranking)
if just the single note of the pattern is repeated many times in various parts, then the total intersection length might be as large as the pattern itself, even though only the first note has matched.
Possible solutions:
The text was updated successfully, but these errors were encountered: