From dba9b054d436b02cc5e50536e590b63246114958 Mon Sep 17 00:00:00 2001 From: Tamius Han Date: Sat, 24 Aug 2019 22:35:56 +0200 Subject: [PATCH] Fix issue with 1px letterbox in atuodetection --- src/ext/lib/ar-detect/ArDetector.js | 36 ++-- src/ext/lib/ar-detect/GuardLine.js | 4 +- .../lib/ar-detect/edge-detect/EdgeDetect.js | 160 +++++++++--------- 3 files changed, 106 insertions(+), 94 deletions(-) diff --git a/src/ext/lib/ar-detect/ArDetector.js b/src/ext/lib/ar-detect/ArDetector.js index 37bbe18..8a35f14 100644 --- a/src/ext/lib/ar-detect/ArDetector.js +++ b/src/ext/lib/ar-detect/ArDetector.js @@ -765,22 +765,34 @@ class ArDetector { if(Debug.debug && Debug.debugArDetect){ console.log(`%c[ArDetect::frameCheck] Triggering aspect ration change! new ar: ${newAr}`, "color: #aaf"); } - this.processAr(newAr); // we also know edges for guardline, so set them. // we need to be mindful of fallbackMode though - if (!this.fallbackMode) { - this.guardLine.setBlackbar({top: edgePost.guardLineTop, bottom: edgePost.guardLineBottom}); - } else { - if (this.conf.player.dimensions){ - this.guardLine.setBlackbarManual({ - top: this.settings.active.arDetect.fallbackMode.noTriggerZonePx, - bottom: this.conf.player.dimensions.height - this.settings.active.arDetect.fallbackMode.noTriggerZonePx - 1 - },{ - top: edgePost.guardLineTop + this.settings.active.arDetect.guardLine.edgeTolerancePx, - bottom: edgePost.guardLineBottom - this.settings.active.arDetect.guardLine.edgeTolerancePx - }) + // if edges are okay and not invalid, we also + // allow automatic aspect ratio correction. If edges + // are bogus, we remain aspect ratio unchanged. + try { + if (!this.fallbackMode) { + // throws error if top/bottom are invalid + this.guardLine.setBlackbar({top: edgePost.guardLineTop, bottom: edgePost.guardLineBottom}); + } else { + if (this.conf.player.dimensions){ + this.guardLine.setBlackbarManual({ + top: this.settings.active.arDetect.fallbackMode.noTriggerZonePx, + bottom: this.conf.player.dimensions.height - this.settings.active.arDetect.fallbackMode.noTriggerZonePx - 1 + },{ + top: edgePost.guardLineTop + this.settings.active.arDetect.guardLine.edgeTolerancePx, + bottom: edgePost.guardLineBottom - this.settings.active.arDetect.guardLine.edgeTolerancePx + }) + } } + + this.processAr(newAr); + } catch (e) { + // edges weren't gucci, so we'll just reset + // the aspect ratio to defaults + this.guardline.reset(); + this.conf.resizer.setAr({type: AspectRatio.Automatic, ratio: this.getDefaultAr()}); } // } diff --git a/src/ext/lib/ar-detect/GuardLine.js b/src/ext/lib/ar-detect/GuardLine.js index 09016f1..5d4cd89 100644 --- a/src/ext/lib/ar-detect/GuardLine.js +++ b/src/ext/lib/ar-detect/GuardLine.js @@ -34,9 +34,7 @@ class GuardLine { // to odstrani vse neveljavne nastavitve in vse možnosti, ki niso smiselne // this removes any configs with invalid values or values that dont make sense if (bbTop < 0 || bbBottom >= this.conf.canvas.height ){ - console.log("%c[GuardLine::setBlackbar] INVALID SETTINGS IN GUARDLINE","background: #000; color: #fff") - this.reset(); - return; + throw "INVALID_SETTINGS_IN_GUARDLINE" } this.blackbar = { diff --git a/src/ext/lib/ar-detect/edge-detect/EdgeDetect.js b/src/ext/lib/ar-detect/edge-detect/EdgeDetect.js index d369a2a..74a7d47 100644 --- a/src/ext/lib/ar-detect/edge-detect/EdgeDetect.js +++ b/src/ext/lib/ar-detect/edge-detect/EdgeDetect.js @@ -247,91 +247,91 @@ class EdgeDetect{ var bottomEdgeCount = 0; try { - for (const sample of samples.res_top){ - blackEdgeViolation = false; // reset this - - // determine our bounds. Note that sample.col is _not_ corrected for imageData, but halfSample is - sampleStart = (sample.col << 2) - this.halfSample; - - if(sampleStart < 0) - sampleStart = 0; - - sampleEnd = sampleStart + this.sampleWidthBase; - if(sampleEnd > this.conf.canvasImageDataRowLength) - sampleEnd = this.conf.canvasImageDataRowLength; - - // calculate row offsets for imageData array - sampleRow_black = (sample.black - this.settings.active.arDetect.edgeDetection.edgeTolerancePx - 1) * this.conf.canvasImageDataRowLength; - sampleRow_color = (sample.black + this.settings.active.arDetect.edgeDetection.edgeTolerancePx) * this.conf.canvasImageDataRowLength; - - // že ena kršitev črnega roba pomeni, da kandidat ni primeren - // even a single black edge violation means the candidate is not an edge - loopEnd = sampleRow_black + sampleEnd; + for (const sample of samples.res_top){ + blackEdgeViolation = false; // reset this + + // determine our bounds. Note that sample.col is _not_ corrected for imageData, but halfSample is + sampleStart = (sample.col << 2) - this.halfSample; + + if(sampleStart < 0) + sampleStart = 0; + + sampleEnd = sampleStart + this.sampleWidthBase; + if (sampleEnd > this.conf.canvasImageDataRowLength) + sampleEnd = this.conf.canvasImageDataRowLength; + + // calculate row offsets for imageData array + sampleRow_black = (sample.black - this.settings.active.arDetect.edgeDetection.edgeTolerancePx - 1) * this.conf.canvasImageDataRowLength; + sampleRow_color = (sample.black + this.settings.active.arDetect.edgeDetection.edgeTolerancePx) * this.conf.canvasImageDataRowLength; + + // že ena kršitev črnega roba pomeni, da kandidat ni primeren + // even a single black edge violation means the candidate is not an edge + loopEnd = sampleRow_black + sampleEnd; - if(Debug.debugCanvas.enabled){ - blackEdgeViolation = this._blackbarTest_dbg(image, sampleRow_black + sampleStart, loopEnd); - } else { - blackEdgeViolation = this._blackbarTest(image, sampleRow_black + sampleStart, loopEnd); - } + if (Debug.debugCanvas.enabled){ + blackEdgeViolation = this._blackbarTest_dbg(image, sampleRow_black + sampleStart, loopEnd); + } else { + blackEdgeViolation = this._blackbarTest(image, sampleRow_black + sampleStart, loopEnd); + } - // če je bila črna črta skrunjena, preverimo naslednjega kandidata - // if we failed, we continue our search with the next candidate - if (blackEdgeViolation) { - continue; - } - - detections = 0; - loopEnd = sampleRow_color + sampleEnd; + // če je bila črna črta skrunjena, preverimo naslednjega kandidata + // if we failed, we continue our search with the next candidate + if (blackEdgeViolation) { + continue; + } + + detections = 0; + loopEnd = sampleRow_color + sampleEnd; - if(Debug.debugCanvas.enabled) { - this._imageTest_dbg(image, sampleRow_color + sampleStart, loopEnd, sample.black, edgeCandidatesTop) - } else { - this._imageTest(image, sampleRow_color + sampleStart, loopEnd, sample.black, edgeCandidatesTop); - } - } - - for (const sample of samples.res_bottom){ - blackEdgeViolation = false; // reset this - - // determine our bounds. Note that sample.col is _not_ corrected for imageData, but this.halfSample is - sampleStart = (sample.col << 2) - this.halfSample; - - if(sampleStart < 0) - sampleStart = 0; - - sampleEnd = sampleStart + this.sampleWidthBase; - if(sampleEnd > this.conf.canvasImageDataRowLength) - sampleEnd = this.conf.canvasImageDataRowLength; - - // calculate row offsets for imageData array - sampleRow_black = (sample.black + this.settings.active.arDetect.edgeDetection.edgeTolerancePx + 1) * this.conf.canvasImageDataRowLength; - sampleRow_color = (sample.black - this.settings.active.arDetect.edgeDetection.edgeTolerancePx) * this.conf.canvasImageDataRowLength; - - // že ena kršitev črnega roba pomeni, da kandidat ni primeren - // even a single black edge violation means the candidate is not an edge - loopEnd = sampleRow_black + sampleEnd; - - if(Debug.debugCanvas.enabled){ - blackEdgeViolation = this._blackbarTest_dbg(image, sampleRow_black + sampleStart, loopEnd); - } else { - blackEdgeViolation = this._blackbarTest(image, sampleRow_black + sampleStart, loopEnd); + if (Debug.debugCanvas.enabled) { + this._imageTest_dbg(image, sampleRow_color + sampleStart, loopEnd, sample.black, edgeCandidatesTop) + } else { + this._imageTest(image, sampleRow_color + sampleStart, loopEnd, sample.black, edgeCandidatesTop); + } } - // če je bila črna črta skrunjena, preverimo naslednjega kandidata - // if we failed, we continue our search with the next candidate - if (blackEdgeViolation) { - continue; - } - - detections = 0; - loopEnd = sampleRow_color + sampleEnd; + for (const sample of samples.res_bottom){ + blackEdgeViolation = false; // reset this + + // determine our bounds. Note that sample.col is _not_ corrected for imageData, but this.halfSample is + sampleStart = (sample.col << 2) - this.halfSample; + + if(sampleStart < 0) + sampleStart = 0; + + sampleEnd = sampleStart + this.sampleWidthBase; + if(sampleEnd > this.conf.canvasImageDataRowLength) + sampleEnd = this.conf.canvasImageDataRowLength; + + // calculate row offsets for imageData array + sampleRow_black = (sample.black + this.settings.active.arDetect.edgeDetection.edgeTolerancePx + 1) * this.conf.canvasImageDataRowLength; + sampleRow_color = (sample.black - this.settings.active.arDetect.edgeDetection.edgeTolerancePx) * this.conf.canvasImageDataRowLength; + + // že ena kršitev črnega roba pomeni, da kandidat ni primeren + // even a single black edge violation means the candidate is not an edge + loopEnd = sampleRow_black + sampleEnd; + + if(Debug.debugCanvas.enabled){ + blackEdgeViolation = this._blackbarTest_dbg(image, sampleRow_black + sampleStart, loopEnd); + } else { + blackEdgeViolation = this._blackbarTest(image, sampleRow_black + sampleStart, loopEnd); + } + + // če je bila črna črta skrunjena, preverimo naslednjega kandidata + // if we failed, we continue our search with the next candidate + if (blackEdgeViolation) { + continue; + } + + detections = 0; + loopEnd = sampleRow_color + sampleEnd; - if(Debug.debugCanvas.enabled) { - this._imageTest_dbg(image, sampleRow_color + sampleStart, loopEnd, sample.black, edgeCandidatesBottom); - } else { - this._imageTest(image, sampleRow_color + sampleStart, loopEnd, sample.black, edgeCandidatesBottom); + if(Debug.debugCanvas.enabled) { + this._imageTest_dbg(image, sampleRow_color + sampleStart, loopEnd, sample.black, edgeCandidatesBottom); + } else { + this._imageTest(image, sampleRow_color + sampleStart, loopEnd, sample.black, edgeCandidatesBottom); + } } - } } catch (e) { console.log("\n\nuwu fucky wucky:", e, "\n\n") } @@ -623,7 +623,9 @@ class EdgeDetect{ if (reverseSearchDirection) { increment = -this.conf.canvasImageDataRowLength; - arrayStart = bottom - this.conf.canvasImageDataRowLength; + // don't subtract this.conf.canvasImageDataRowLength — it has already been accounted for + // when we calculated bottom and top + arrayStart = bottom; arrayEnd = top; // this is a hack so we get pointer-like things rather than values