One more change to accommodate differences in jpeg libraries. Some machines will...
[zxing.git] / csharp / common / DetectorResult.cs
index bce786a..9a327a4 100755 (executable)
@@ -1,5 +1,5 @@
-/*\r
-* Copyright 2008 ZXing authors\r
+/*\r
+* Copyright 2007 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
 * See the License for the specific language governing permissions and\r
 * limitations under the License.\r
 */\r
+using System;\r
+using ResultPoint = com.google.zxing.ResultPoint;\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
+       \r
+       /// <summary> <p>Encapsulates the result of detecting a barcode in an image. This includes the raw\r
+       /// matrix of black/white pixels corresponding to the barcode, and possibly points of interest\r
+       /// in the image, like the location of finder patterns or corners of the barcode in the image.</p>\r
+       /// \r
+       /// </summary>\r
+       /// <author>  Sean Owen\r
+       /// </author>\r
+       /// <author>www.Redivivus.in (suraj.supekar@redivivus.in) - Ported from ZXING Java Source \r
+       /// </author>\r
+       public sealed class DetectorResult\r
+       {\r
+               public BitMatrix Bits\r
+               {\r
+                       get\r
+                       {\r
+                               return bits;\r
+                       }\r
+                       \r
+               }\r
+               public ResultPoint[] Points\r
+               {\r
+                       get\r
+                       {\r
+                               return points;\r
+                       }\r
+                       \r
+               }\r
+               \r
+               //UPGRADE_NOTE: Final was removed from the declaration of 'bits '. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1003'"\r
+               private BitMatrix bits;\r
+               //UPGRADE_NOTE: Final was removed from the declaration of 'points '. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1003'"\r
+               private ResultPoint[] points;\r
+               \r
+               public DetectorResult(BitMatrix bits, ResultPoint[] points)\r
+               {\r
+                       this.bits = bits;\r
+                       this.points = points;\r
+               }\r
+       }\r
+}
\ No newline at end of file