Here are the examples of the csharp api class ZXing.PDF417.PDF417Reader.getMinWidth(ResultPoint, ResultPoint) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
2 Examples
0
1. Example
View licenseprivate static int getMinCodewordWidth(ResultPoint[] p) { return Math.Min( Math.Min(getMinWidth(p[0], p[4]), getMinWidth(p[6], p[2])*PDF417Common.MODULES_IN_CODEWORD/ PDF417Common.MODULES_IN_STOP_PATTERN), Math.Min(getMinWidth(p[1], p[5]), getMinWidth(p[7], p[3])*PDF417Common.MODULES_IN_CODEWORD/ PDF417Common.MODULES_IN_STOP_PATTERN)); }
0
2. Example
View licenseprivate static int getMinCodewordWidth(ResultPoint[] p) { return Math.Min( Math.Min(getMinWidth(p[0], p[4]), getMinWidth(p[6], p[2])*PDF417Common.MODULES_IN_CODEWORD/ PDF417Common.MODULES_IN_STOP_PATTERN), Math.Min(getMinWidth(p[1], p[5]), getMinWidth(p[7], p[3])*PDF417Common.MODULES_IN_CODEWORD/ PDF417Common.MODULES_IN_STOP_PATTERN)); }