diff --git a/Ocr/Latin.nocr b/Ocr/Latin.nocr index 05e583e8d..5f6f6b453 100644 Binary files a/Ocr/Latin.nocr and b/Ocr/Latin.nocr differ diff --git a/src/Forms/Ocr/VobSubOcr.cs b/src/Forms/Ocr/VobSubOcr.cs index 7c6796a0d..30cc02ec2 100644 --- a/src/Forms/Ocr/VobSubOcr.cs +++ b/src/Forms/Ocr/VobSubOcr.cs @@ -2805,7 +2805,7 @@ namespace Nikse.SubtitleEdit.Forms.Ocr if (UppercaseWithAccent.Contains(result.Text)) { var averageUppercase = _ocrUppercaseHeightsTotal / (double)_ocrUppercaseHeightsTotalCount; - if (targetItem.NikseBitmap.Height + 4 < averageUppercase) + if (targetItem.NikseBitmap.Height < averageUppercase + 3) { result.Text = result.Text.ToLowerInvariant(); }