ZXing.PDF417.Internal.Decoder.decode(BitMatrix)

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

1 Example 7

1. Example

Project: dp2
Source File: Decoder.cs
public DecoderResult decode(bool[][] image)
      {
         int dimension = image.Length;
         BitMatrix bits = new BitMatrix(dimension);
         for (int i = 0; i < dimension; i++)
         {
            for (int j = 0; j < dimension; j++)
            {
               if (image[j][i])
               {
                  bits[j, i] = true;
               }
            }
         }
         return decode(bits);
      }