Skip to content

Commit

Permalink
fix time sig roi
Browse files Browse the repository at this point in the history
  • Loading branch information
amcolash committed May 20, 2021
1 parent f452890 commit 60e57b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/stages/images.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export function matchImages(data) {
const result = combined.clone();

// Find the time signature
const timeSigRoi = combined.roi(new cv.Rect(0, 0, 300, combined.rows));
const timeSigRoi = combined.roi(new cv.Rect(0, 0, 400, combined.rows));
const timeSigMatches = await getMatchedTemplates(timeSigRoi, timeSignatures, result);

let timeRect;
Expand Down

0 comments on commit 60e57b5

Please sign in to comment.