FinderPattern.cs
上传用户:tjjgrl
上传日期:2019-04-04
资源大小:1010k
文件大小:21k
源码类别:

电子政务应用

开发平台:

C#

  1. using System;
  2. using QRCodeDecoder = ThoughtWorks.QRCode.Codec.QRCodeDecoder;
  3. using ThoughtWorks.QRCode.Codec.Reader;
  4. using FinderPatternNotFoundException = ThoughtWorks.QRCode.ExceptionHandler.FinderPatternNotFoundException;
  5. using InvalidVersionInfoException = ThoughtWorks.QRCode.ExceptionHandler.InvalidVersionInfoException;
  6. using InvalidVersionException = ThoughtWorks.QRCode.ExceptionHandler.InvalidVersionException;
  7. using VersionInformationException = ThoughtWorks.QRCode.ExceptionHandler.VersionInformationException;
  8. using ThoughtWorks.QRCode.Geom;
  9. using ThoughtWorks.QRCode.Codec.Util;
  10. namespace ThoughtWorks.QRCode.Codec.Reader.Pattern
  11. {
  12. public class FinderPattern
  13. {
  14.         public const int UL = 0;
  15.         public const int UR = 1;
  16.         public const int DL = 2;
  17.         internal static readonly int[] VersionInfoBit = new int[] { 0x07C94, 0x085BC, 0x09A99, 0x0A4D3, 0x0BBF6, 0x0C762, 0x0D847, 0x0E60D, 0x0F928, 0x10B78, 0x1145D, 0x12A17, 0x13532, 0x149A6, 0x15683, 0x168C9, 0x177EC, 0x18EC4, 0x191E1, 0x1AFAB, 0x1B08E, 0x1CC1A, 0x1D33F, 0x1ED75, 0x1F250, 0x209D5, 0x216F0, 0x228BA, 0x2379F, 0x24B0B, 0x2542E, 0x26A64, 0x27541, 0x28C69 };
  18.         internal static DebugCanvas canvas;
  19.         internal Point[] center;
  20.         internal int version;
  21.         internal int[] sincos;
  22.         internal int[] width;
  23.         internal int[] moduleSize;
  24. virtual public int Version
  25. {
  26. get
  27. {
  28. return version;
  29. }
  30. }
  31. virtual public int SqrtNumModules
  32. {
  33. get
  34. {
  35. return 17 + 4 * version;
  36. }
  37. }
  38. public static FinderPattern findFinderPattern(bool[][] image)
  39. {
  40. Line[] lineAcross = findLineAcross(image);
  41. Line[] lineCross = findLineCross(lineAcross);
  42. Point[] center = null;
  43. try
  44. {
  45. center = getCenter(lineCross);
  46. }
  47. catch (FinderPatternNotFoundException e)
  48. {
  49. throw e;
  50. }
  51. int[] sincos = getAngle(center);
  52. center = sort(center, sincos);
  53. int[] width = getWidth(image, center, sincos);
  54. // moduleSize for version recognition
  55. int[] moduleSize = new int[]{(width[UL] << QRCodeImageReader.DECIMAL_POINT) / 7, (width[UR] << QRCodeImageReader.DECIMAL_POINT) / 7, (width[DL] << QRCodeImageReader.DECIMAL_POINT) / 7};
  56. int version = calcRoughVersion(center, width);
  57. if (version > 6)
  58. {
  59. try
  60. {
  61. version = calcExactVersion(center, sincos, moduleSize, image);
  62. }
  63. catch (VersionInformationException e)
  64. {
  65. //use rough version data
  66. // throw e;
  67. }
  68. }
  69. return new FinderPattern(center, version, sincos, width, moduleSize);
  70. }
  71. internal FinderPattern(Point[] center, int version, int[] sincos, int[] width, int[] moduleSize)
  72. {
  73. this.center = center;
  74. this.version = version;
  75. this.sincos = sincos;
  76. this.width = width;
  77. this.moduleSize = moduleSize;
  78. }
  79. public virtual Point[] getCenter()
  80. {
  81. return center;
  82. }
  83. public virtual Point getCenter(int position)
  84. {
  85. if (position >= UL && position <= DL)
  86. return center[position];
  87. else
  88. return null;
  89. }
  90. public virtual int getWidth(int position)
  91. {
  92. return width[position];
  93. }
  94. public virtual int[] getAngle()
  95. {
  96. return sincos;
  97. }
  98. public virtual int getModuleSize()
  99. {
  100. return moduleSize[UL];
  101. }
  102. public virtual int getModuleSize(int place)
  103. {
  104. return moduleSize[place];
  105. }
  106. internal static Line[] findLineAcross(bool[][] image)
  107. {
  108. int READ_HORIZONTAL = 0;
  109. int READ_VERTICAL = 1;
  110. int imageWidth = image.Length;
  111. int imageHeight = image[0].Length;
  112. //int currentX = 0, currentY = 0;
  113. Point current = new Point();
  114. System.Collections.ArrayList lineAcross = System.Collections.ArrayList.Synchronized(new System.Collections.ArrayList(10));
  115. //buffer contains recent length of modules which has same brightness
  116. int[] lengthBuffer = new int[5];
  117. int bufferPointer = 0;
  118. int direction = READ_HORIZONTAL; //start to read horizontally
  119. bool lastElement = QRCodeImageReader.POINT_LIGHT;
  120. while (true)
  121. {
  122. //check points in image
  123. bool currentElement = image[current.X][current.Y];
  124. if (currentElement == lastElement)
  125. {
  126. //target point has same brightness with last point
  127. lengthBuffer[bufferPointer]++;
  128. }
  129. else
  130. {
  131. //target point has different brightness with last point
  132. if (currentElement == QRCodeImageReader.POINT_LIGHT)
  133. {
  134. if (checkPattern(lengthBuffer, bufferPointer))
  135. {
  136. //detected pattern
  137. int x1, y1, x2, y2;
  138. if (direction == READ_HORIZONTAL)
  139. {
  140. //obtain X coordinates of both side of the detected horizontal pattern
  141. x1 = current.X;
  142. for (int j = 0; j < 5; j++)
  143. {
  144. x1 -= lengthBuffer[j];
  145. }
  146. x2 = current.X - 1; //right side is last X coordinate
  147. y1 = y2 = current.Y;
  148. }
  149. else
  150. {
  151. x1 = x2 = current.X;
  152. //obtain Y coordinates of both side of the detected vertical pattern
  153. // upper side is sum of length of buffer
  154. y1 = current.Y;
  155. for (int j = 0; j < 5; j++)
  156. {
  157. y1 -= lengthBuffer[j];
  158. }
  159. y2 = current.Y - 1; // bottom side is last Y coordinate
  160. }
  161. lineAcross.Add(new Line(x1, y1, x2, y2));
  162. }
  163. }
  164. bufferPointer = (bufferPointer + 1) % 5;
  165. lengthBuffer[bufferPointer] = 1;
  166. lastElement = !lastElement;
  167. }
  168. // determine if read next, change read direction or terminate this loop
  169. if (direction == READ_HORIZONTAL)
  170. {
  171. if (current.X < imageWidth - 1)
  172. {
  173. current.translate(1, 0);
  174. }
  175. else if (current.Y < imageHeight - 1)
  176. {
  177. current.set_Renamed(0, current.Y + 1);
  178. lengthBuffer = new int[5];
  179. }
  180. else
  181. {
  182. current.set_Renamed(0, 0); //reset target point
  183. lengthBuffer = new int[5];
  184. direction = READ_VERTICAL; //start to read vertically
  185. }
  186. }
  187. else
  188. {
  189. //reading vertically
  190. if (current.Y < imageHeight - 1)
  191. current.translate(0, 1);
  192. else if (current.X < imageWidth - 1)
  193. {
  194. current.set_Renamed(current.X + 1, 0);
  195. lengthBuffer = new int[5];
  196. }
  197. else
  198. {
  199. break;
  200. }
  201. }
  202. }
  203. Line[] foundLines = new Line[lineAcross.Count];
  204. for (int i = 0; i < foundLines.Length; i++)
  205. foundLines[i] = (Line) lineAcross[i];
  206. canvas.drawLines(foundLines, ThoughtWorks.QRCode.Codec.Util.Color_Fields.LIGHTGREEN);
  207. return foundLines;
  208. }
  209. internal static bool checkPattern(int[] buffer, int pointer)
  210. {
  211. int[] modelRatio = new int[]{1, 1, 3, 1, 1};
  212. int baselength = 0;
  213. for (int i = 0; i < 5; i++)
  214. {
  215. baselength += buffer[i];
  216. }
  217. // pseudo fixed point calculation. I think it needs smarter code
  218. baselength <<= QRCodeImageReader.DECIMAL_POINT;
  219. baselength /= 7;
  220. int i2;
  221. for (i2 = 0; i2 < 5; i2++)
  222. {
  223. int leastlength = baselength * modelRatio[i2] - baselength / 2;
  224. int mostlength = baselength * modelRatio[i2] + baselength / 2;
  225. //TODO rough finder pattern detection
  226. int targetlength = buffer[(pointer + i2 + 1) % 5] << QRCodeImageReader.DECIMAL_POINT;
  227. if (targetlength < leastlength || targetlength > mostlength)
  228. {
  229. return false;
  230. }
  231. }
  232. return true;
  233. }
  234. //obtain lines cross at the center of Finder Patterns
  235. internal static Line[] findLineCross(Line[] lineAcross)
  236. {
  237. System.Collections.ArrayList crossLines = System.Collections.ArrayList.Synchronized(new System.Collections.ArrayList(10));
  238. System.Collections.ArrayList lineNeighbor = System.Collections.ArrayList.Synchronized(new System.Collections.ArrayList(10));
  239. System.Collections.ArrayList lineCandidate = System.Collections.ArrayList.Synchronized(new System.Collections.ArrayList(10));
  240. Line compareLine;
  241. for (int i = 0; i < lineAcross.Length; i++)
  242. lineCandidate.Add(lineAcross[i]);
  243. for (int i = 0; i < lineCandidate.Count - 1; i++)
  244. {
  245. lineNeighbor.Clear();
  246. lineNeighbor.Add(lineCandidate[i]);
  247. for (int j = i + 1; j < lineCandidate.Count; j++)
  248. {
  249. if (Line.isNeighbor((Line) lineNeighbor[lineNeighbor.Count - 1], (Line) lineCandidate[j]))
  250. {
  251. lineNeighbor.Add(lineCandidate[j]);
  252. compareLine = (Line) lineNeighbor[lineNeighbor.Count - 1];
  253. if (lineNeighbor.Count * 5 > compareLine.Length && j == lineCandidate.Count - 1)
  254. {
  255. crossLines.Add(lineNeighbor[lineNeighbor.Count / 2]);
  256. for (int k = 0; k < lineNeighbor.Count; k++)
  257. lineCandidate.Remove(lineNeighbor[k]);
  258. }
  259. }
  260. //terminate comparison if there are no possibility for found neighbour lines
  261. else if (cantNeighbor((Line) lineNeighbor[lineNeighbor.Count - 1], (Line) lineCandidate[j]) || (j == lineCandidate.Count - 1))
  262. {
  263. compareLine = (Line) lineNeighbor[lineNeighbor.Count - 1];
  264. /*
  265. * determine lines across Finder Patterns when number of neighbour lines are 
  266. * bigger than 1/6 length of theirselves
  267. */
  268. if (lineNeighbor.Count * 6 > compareLine.Length)
  269. {
  270. crossLines.Add(lineNeighbor[lineNeighbor.Count / 2]);
  271. for (int k = 0; k < lineNeighbor.Count; k++)
  272. {
  273. lineCandidate.Remove(lineNeighbor[k]);
  274. }
  275. }
  276. break;
  277. }
  278. }
  279. }
  280. Line[] foundLines = new Line[crossLines.Count];
  281. for (int i = 0; i < foundLines.Length; i++)
  282. {
  283. foundLines[i] = (Line) crossLines[i];
  284. }
  285. return foundLines;
  286. }
  287. internal static bool cantNeighbor(Line line1, Line line2)
  288. {
  289. if (Line.isCross(line1, line2))
  290. return true;
  291. if (line1.Horizontal)
  292. {
  293. if (System.Math.Abs(line1.getP1().Y - line2.getP1().Y) > 1)
  294. return true;
  295. else
  296. return false;
  297. }
  298. else
  299. {
  300. if (System.Math.Abs(line1.getP1().X - line2.getP1().X) > 1)
  301. return true;
  302. else
  303. return false;
  304. }
  305. }
  306. //obtain slope of symbol
  307. internal static int[] getAngle(Point[] centers)
  308. {
  309. Line[] additionalLine = new Line[3];
  310. for (int i = 0; i < additionalLine.Length; i++)
  311. {
  312. additionalLine[i] = new Line(centers[i], centers[(i + 1) % additionalLine.Length]);
  313. }
  314. // remoteLine - does not contain UL center
  315. Line remoteLine = Line.getLongest(additionalLine);
  316. Point originPoint = new Point();
  317. for (int i = 0; i < centers.Length; i++)
  318. {
  319. if (!remoteLine.getP1().equals(centers[i]) && !remoteLine.getP2().equals(centers[i]))
  320. {
  321. originPoint = centers[i];
  322. break;
  323. }
  324. }
  325. canvas.println("originPoint is: " + originPoint);
  326. Point remotePoint = new Point();
  327. //with origin that the center of Left-Up Finder Pattern, determine other two patterns center.
  328. //then calculate symbols angle
  329. if (originPoint.Y <= remoteLine.getP1().Y & originPoint.Y <= remoteLine.getP2().Y)
  330. if (remoteLine.getP1().X < remoteLine.getP2().X)
  331. remotePoint = remoteLine.getP2();
  332. else
  333. remotePoint = remoteLine.getP1();
  334. else if (originPoint.X >= remoteLine.getP1().X & originPoint.X >= remoteLine.getP2().X)
  335. if (remoteLine.getP1().Y < remoteLine.getP2().Y)
  336. remotePoint = remoteLine.getP2();
  337. else
  338. remotePoint = remoteLine.getP1();
  339. else if (originPoint.Y >= remoteLine.getP1().Y & originPoint.Y >= remoteLine.getP2().Y)
  340. if (remoteLine.getP1().X < remoteLine.getP2().X)
  341. remotePoint = remoteLine.getP1();
  342. else
  343. remotePoint = remoteLine.getP2();
  344. //1st or 4th quadrant
  345. else if (remoteLine.getP1().Y < remoteLine.getP2().Y)
  346. remotePoint = remoteLine.getP1();
  347. else
  348. remotePoint = remoteLine.getP2();
  349. int r = new Line(originPoint, remotePoint).Length;
  350. //canvas.println(Integer.toString(((remotePoint.getX() - originPoint.getX()) << QRCodeImageReader.DECIMAL_POINT)));
  351. int[] angle = new int[2];
  352. angle[0] = ((remotePoint.Y - originPoint.Y) << QRCodeImageReader.DECIMAL_POINT) / r; //Sin
  353. angle[1] = ((remotePoint.X - originPoint.X) << (QRCodeImageReader.DECIMAL_POINT)) / r; //Cos
  354. return angle;
  355. }
  356. internal static Point[] getCenter(Line[] crossLines)
  357. {
  358. System.Collections.ArrayList centers = System.Collections.ArrayList.Synchronized(new System.Collections.ArrayList(10));
  359. for (int i = 0; i < crossLines.Length - 1; i++)
  360. {
  361. Line compareLine = crossLines[i];
  362. for (int j = i + 1; j < crossLines.Length; j++)
  363. {
  364. Line comparedLine = crossLines[j];
  365. if (Line.isCross(compareLine, comparedLine))
  366. {
  367. int x = 0;
  368. int y = 0;
  369. if (compareLine.Horizontal)
  370. {
  371. x = compareLine.Center.X;
  372. y = comparedLine.Center.Y;
  373. }
  374. else
  375. {
  376. x = comparedLine.Center.X;
  377. y = compareLine.Center.Y;
  378. }
  379. centers.Add(new Point(x, y));
  380. }
  381. }
  382. }
  383. Point[] foundPoints = new Point[centers.Count];
  384. for (int i = 0; i < foundPoints.Length; i++)
  385. {
  386. foundPoints[i] = (Point) centers[i];
  387. //Console.out.println(foundPoints[i]);
  388. }
  389. //Console.out.println(foundPoints.length);
  390. if (foundPoints.Length == 3)
  391. {
  392. canvas.drawPolygon(foundPoints, ThoughtWorks.QRCode.Codec.Util.Color_Fields.RED);
  393. return foundPoints;
  394. }
  395. else
  396. throw new FinderPatternNotFoundException("Invalid number of Finder Pattern detected");
  397. }
  398. //sort center of finder patterns as Left-Up: points[0], Right-Up: points[1], Left-Down: points[2].
  399. internal static Point[] sort(Point[] centers, int[] angle)
  400. {
  401. Point[] sortedCenters = new Point[3];
  402. int quadant = getURQuadant(angle);
  403. switch (quadant)
  404. {
  405. case 1: 
  406. sortedCenters[1] = getPointAtSide(centers, Point.RIGHT, Point.BOTTOM);
  407. sortedCenters[2] = getPointAtSide(centers, Point.BOTTOM, Point.LEFT);
  408. break;
  409. case 2: 
  410. sortedCenters[1] = getPointAtSide(centers, Point.BOTTOM, Point.LEFT);
  411. sortedCenters[2] = getPointAtSide(centers, Point.TOP, Point.LEFT);
  412. break;
  413. case 3: 
  414. sortedCenters[1] = getPointAtSide(centers, Point.LEFT, Point.TOP);
  415. sortedCenters[2] = getPointAtSide(centers, Point.RIGHT, Point.TOP);
  416. break;
  417. case 4: 
  418. sortedCenters[1] = getPointAtSide(centers, Point.TOP, Point.RIGHT);
  419. sortedCenters[2] = getPointAtSide(centers, Point.BOTTOM, Point.RIGHT);
  420. break;
  421. }
  422. //last of centers is Left-Up patterns one
  423. for (int i = 0; i < centers.Length; i++)
  424. {
  425. if (!centers[i].equals(sortedCenters[1]) && !centers[i].equals(sortedCenters[2]))
  426. {
  427. sortedCenters[0] = centers[i];
  428. }
  429. }
  430. return sortedCenters;
  431. }
  432. internal static int getURQuadant(int[] angle)
  433. {
  434. int sin = angle[0];
  435. int cos = angle[1];
  436. if (sin >= 0 && cos > 0)
  437. return 1;
  438. else if (sin > 0 && cos <= 0)
  439. return 2;
  440. else if (sin <= 0 && cos < 0)
  441. return 3;
  442. else if (sin < 0 && cos >= 0)
  443. return 4;
  444. return 0;
  445. }
  446. internal static Point getPointAtSide(Point[] points, int side1, int side2)
  447. {
  448. Point sidePoint = new Point();
  449. int x = ((side1 == Point.RIGHT || side2 == Point.RIGHT)?0:System.Int32.MaxValue);
  450. int y = ((side1 == Point.BOTTOM || side2 == Point.BOTTOM)?0:System.Int32.MaxValue);
  451. sidePoint = new Point(x, y);
  452. for (int i = 0; i < points.Length; i++)
  453. {
  454. switch (side1)
  455. {
  456. case Point.RIGHT: 
  457. if (sidePoint.X < points[i].X)
  458. {
  459. sidePoint = points[i];
  460. }
  461. else if (sidePoint.X == points[i].X)
  462. {
  463. if (side2 == Point.BOTTOM)
  464. {
  465. if (sidePoint.Y < points[i].Y)
  466. {
  467. sidePoint = points[i];
  468. }
  469. }
  470. else
  471. {
  472. if (sidePoint.Y > points[i].Y)
  473. {
  474. sidePoint = points[i];
  475. }
  476. }
  477. }
  478. break;
  479. case Point.BOTTOM: 
  480. if (sidePoint.Y < points[i].Y)
  481. {
  482. sidePoint = points[i];
  483. }
  484. else if (sidePoint.Y == points[i].Y)
  485. {
  486. if (side2 == Point.RIGHT)
  487. {
  488. if (sidePoint.X < points[i].X)
  489. {
  490. sidePoint = points[i];
  491. }
  492. }
  493. else
  494. {
  495. if (sidePoint.X > points[i].X)
  496. {
  497. sidePoint = points[i];
  498. }
  499. }
  500. }
  501. break;
  502. case Point.LEFT: 
  503. if (sidePoint.X > points[i].X)
  504. {
  505. sidePoint = points[i];
  506. }
  507. else if (sidePoint.X == points[i].X)
  508. {
  509. if (side2 == Point.BOTTOM)
  510. {
  511. if (sidePoint.Y < points[i].Y)
  512. {
  513. sidePoint = points[i];
  514. }
  515. }
  516. else
  517. {
  518. if (sidePoint.Y > points[i].Y)
  519. {
  520. sidePoint = points[i];
  521. }
  522. }
  523. }
  524. break;
  525. case Point.TOP: 
  526. if (sidePoint.Y > points[i].Y)
  527. {
  528. sidePoint = points[i];
  529. }
  530. else if (sidePoint.Y == points[i].Y)
  531. {
  532. if (side2 == Point.RIGHT)
  533. {
  534. if (sidePoint.X < points[i].X)
  535. {
  536. sidePoint = points[i];
  537. }
  538. }
  539. else
  540. {
  541. if (sidePoint.X > points[i].X)
  542. {
  543. sidePoint = points[i];
  544. }
  545. }
  546. }
  547. break;
  548. }
  549. }
  550. return sidePoint;
  551. }
  552. internal static int[] getWidth(bool[][] image, Point[] centers, int[] sincos)
  553. {
  554. int[] width = new int[3];
  555. for (int i = 0; i < 3; i++)
  556. {
  557. bool flag = false;
  558. int lx, rx;
  559. int y = centers[i].Y;
  560. for (lx = centers[i].X; lx > 0; lx--)
  561. {
  562. if (image[lx][y] == QRCodeImageReader.POINT_DARK && image[lx - 1][y] == QRCodeImageReader.POINT_LIGHT)
  563. {
  564. if (flag == false)
  565. flag = true;
  566. else
  567. break;
  568. }
  569. }
  570. flag = false;
  571. for (rx = centers[i].X; rx < image.Length; rx++)
  572. {
  573. if (image[rx][y] == QRCodeImageReader.POINT_DARK && image[rx + 1][y] == QRCodeImageReader.POINT_LIGHT)
  574. {
  575. if (flag == false)
  576. flag = true;
  577. else
  578. break;
  579. }
  580. }
  581. width[i] = (rx - lx + 1);
  582. }
  583. return width;
  584. }
  585. internal static int calcRoughVersion(Point[] center, int[] width)
  586. {
  587. int dp = QRCodeImageReader.DECIMAL_POINT;
  588. int lengthAdditionalLine = (new Line(center[UL], center[UR]).Length) << dp;
  589. int avarageWidth = ((width[UL] + width[UR]) << dp) / 14;
  590. int roughVersion = ((lengthAdditionalLine / avarageWidth) - 10) / 4;
  591. if (((lengthAdditionalLine / avarageWidth) - 10) % 4 >= 2)
  592. {
  593. roughVersion++;
  594. }
  595. return roughVersion;
  596. }
  597. internal static int calcExactVersion(Point[] centers, int[] angle, int[] moduleSize, bool[][] image)
  598. {
  599. bool[] versionInformation = new bool[18];
  600. Point[] points = new Point[18];
  601. Point target;
  602. Axis axis = new Axis(angle, moduleSize[UR]); //UR
  603. axis.Origin = centers[UR];
  604. for (int y = 0; y < 6; y++)
  605. {
  606. for (int x = 0; x < 3; x++)
  607. {
  608. target = axis.translate(x - 7, y - 3);
  609. versionInformation[x + y * 3] = image[target.X][target.Y];
  610. points[x + y * 3] = target;
  611. }
  612. }
  613. canvas.drawPoints(points, ThoughtWorks.QRCode.Codec.Util.Color_Fields.RED);
  614. int exactVersion = 0;
  615. try
  616. {
  617. exactVersion = checkVersionInfo(versionInformation);
  618. }
  619. catch (InvalidVersionInfoException e)
  620. {
  621. canvas.println("Version info error. now retry with other place one.");
  622. axis.Origin = centers[DL];
  623. axis.ModulePitch = moduleSize[DL]; //DL
  624. for (int x = 0; x < 6; x++)
  625. {
  626. for (int y = 0; y < 3; y++)
  627. {
  628. target = axis.translate(x - 3, y - 7);
  629. versionInformation[y + x * 3] = image[target.X][target.Y];
  630. points[x + y * 3] = target;
  631. }
  632. }
  633. canvas.drawPoints(points, ThoughtWorks.QRCode.Codec.Util.Color_Fields.RED);
  634. try
  635. {
  636. exactVersion = checkVersionInfo(versionInformation);
  637. }
  638. catch (VersionInformationException e2)
  639. {
  640. throw e2;
  641. }
  642. }
  643. return exactVersion;
  644. }
  645. internal static int checkVersionInfo(bool[] target)
  646. {
  647. // note that this method includes BCH 18-6 Error Correction
  648. // see page 67 on JIS-X-0510(2004) 
  649. int errorCount = 0, versionBase;
  650. for (versionBase = 0; versionBase < VersionInfoBit.Length; versionBase++)
  651. {
  652. errorCount = 0;
  653. for (int j = 0; j < 18; j++)
  654. {
  655. if (target[j] ^ (VersionInfoBit[versionBase] >> j) % 2 == 1)
  656. errorCount++;
  657. }
  658. if (errorCount <= 3)
  659. break;
  660. }
  661. if (errorCount <= 3)
  662. return 7 + versionBase;
  663. else
  664. throw new InvalidVersionInfoException("Too many errors in version information");
  665. }
  666. static FinderPattern()
  667. {
  668. canvas = QRCodeDecoder.Canvas;
  669. }
  670. }
  671. }