ZXing.PDF417.Internal.DetectionResult.adjustRowNumbersFromLRI()

Here are the examples of the csharp api class ZXing.PDF417.Internal.DetectionResult.adjustRowNumbersFromLRI() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

2 Examples 7

1. Example

Project: ZXing.Net
Source File: DetectionResult.cs
View license
private int adjustRowNumbersByRow()
      {
         adjustRowNumbersFromBothRI(); // RI = RowIndicators
         // TODO we should only do full row adjustments if row numbers of left and right row indicator column match.
         // Maybe it's even better to calculated the height (in codeword rows) and divide it by the number of barcode
         // rows. This, together with the LRI and RRI row numbers should allow us to get a good estimate where a row
         // number starts and ends.
         int unadjustedCount = adjustRowNumbersFromLRI();
         return unadjustedCount + adjustRowNumbersFromRRI();
      }

2. Example

Project: zxing-core
Source File: DetectionResult.cs
View license
private int adjustRowNumbersByRow()
      {
         adjustRowNumbersFromBothRI(); // RI = RowIndicators
         // TODO we should only do full row adjustments if row numbers of left and right row indicator column match.
         // Maybe it's even better to calculated the height (in codeword rows) and divide it by the number of barcode
         // rows. This, together with the LRI and RRI row numbers should allow us to get a good estimate where a row
         // number starts and ends.
         int unadjustedCount = adjustRowNumbersFromLRI();
         return unadjustedCount + adjustRowNumbersFromRRI();
      }