Committed C# port from Mohamad
[zxing.git] / csharp / common / DetectorResult.cs
diff --git a/csharp/common/DetectorResult.cs b/csharp/common/DetectorResult.cs
new file mode 100755 (executable)
index 0000000..bce786a
--- /dev/null
@@ -0,0 +1,51 @@
+/*\r
+* Copyright 2008 ZXing authors\r
+*\r
+* Licensed under the Apache License, Version 2.0 (the "License");\r
+* you may not use this file except in compliance with the License.\r
+* You may obtain a copy of the License at\r
+*\r
+*      http://www.apache.org/licenses/LICENSE-2.0\r
+*\r
+* Unless required by applicable law or agreed to in writing, software\r
+* distributed under the License is distributed on an "AS IS" BASIS,\r
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+* See the License for the specific language governing permissions and\r
+* limitations under the License.\r
+*/\r
+namespace com.google.zxing.common\r
+{\r
+    using System;\r
+    using System.Text;\r
+\r
+    /// <summary> A class which wraps a 2D array of bytes. The default usage is signed. If you want to use it as a\r
+    /// unsigned container, it's up to you to do byteValue & 0xff at each location.\r
+    /// *\r
+    /// JAVAPORT: I'm not happy about the argument ordering throughout the file, as I always like to have\r
+    /// the horizontal component first, but this is for compatibility with the C++ code. The original\r
+    /// code was a 2D array of ints, but since it only ever gets assigned -1, 0, and 1, I'm going to use\r
+    /// less memory and go with bytes.\r
+    /// *\r
+    /// </summary>\r
+    /// <author>  dswitkin@google.com (Daniel Switkin)\r
+    /// \r
+    /// </author>\r
+    public sealed class DetectorResult\r
+    {\r
+          private BitMatrix bits;\r
+          private ResultPoint[] points;\r
+\r
+          public DetectorResult(BitMatrix bits, ResultPoint[] points) {\r
+            this.bits = bits;\r
+            this.points = points;\r
+          }\r
+\r
+          public BitMatrix getBits() {\r
+            return bits;\r
+          }\r
+\r
+          public ResultPoint[] getPoints() {\r
+            return points;\r
+          }\r
+    }\r
+}\r