Skip to content

Commit

Permalink
fix: typo in model name (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
robinWongM committed Aug 21, 2023
1 parent 922ac2c commit e780ffe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ async function loadModels(cv: any) {

cv.FS_createDataFile('/', 'detect.prototxt', models.detect_prototxt, true, false, false)
cv.FS_createDataFile('/', 'detect.caffemodel', models.detect_caffemodel, true, false, false)
cv.FS_createDataFile('/', 'sr.prototxt', models.detect_prototxt, true, false, false)
cv.FS_createDataFile('/', 'sr.prototxt', models.sr_prototxt, true, false, false)
cv.FS_createDataFile('/', 'sr.caffemodel', models.sr_caffemodel, true, false, false)

const qrcode_detector = new cv.wechat_qrcode_WeChatQRCode(
Expand Down

0 comments on commit e780ffe

Please sign in to comment.