OCR.js 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. /**
  2. * 通用函数
  3. */
  4. var config = require('./config.js');
  5. /**
  6. * 时间戳转为 xxxx-xx-xx xx:xx:xx 格式
  7. */
  8. function scanOCRText(imageData) {
  9. return new Promise((resolve, reject) => {
  10. var apiKey = 'OLfS8e2NvaU84kLfx5XgFPf1';
  11. var secKey = 'x9IKrn6GRTPRfAqnPXn9FivbCWsd9okg';
  12. var tokenUrl = `https://aip.baidubce.com/oauth/2.0/token?grant_type=client_credentials&client_id=${apiKey}&client_secret=${secKey}`;
  13. uni.request({
  14. url: tokenUrl,
  15. method: 'POST',
  16. dataType: 'json',
  17. header: {
  18. 'content-type': 'application/json; charset-UTF-8'
  19. },
  20. success: function (res) {
  21. //六位数
  22. // scanImageInfo(imageData, res.data.access_token).then((words) => {
  23. // console.log('words', words);
  24. // resolve(words);
  25. // });
  26. //可多位数
  27. scanlicensePlate(imageData, res.data.access_token).then((words) => {
  28. console.log('words', words);
  29. resolve(words);
  30. });
  31. },
  32. fail: function (res) {
  33. console.log('[BaiduToken获取失败]', res);
  34. }
  35. });
  36. });
  37. }
  38. function scanImageInfo(imageData, token) {
  39. // 这里的imageData是图片转换成base64格式的数据
  40. const detectUrl = `https://aip.baidubce.com/rest/2.0/ocr/v1/general_basic?access_token=${token}`; // baiduToken是已经获取的access_Token
  41. return new Promise(function (resolve, reject) {
  42. uni.request({
  43. url: detectUrl,
  44. data: {
  45. image: imageData
  46. },
  47. method: 'POST',
  48. dataType: 'json',
  49. header: {
  50. 'content-type': 'application/x-www-form-urlencoded' // 必须的
  51. },
  52. success: function (res) {
  53. console.log(res);
  54. var words_result = res.data.words_result;
  55. console.log(words_result);
  56. var words = '';
  57. var wordMax = 0;
  58. var indexMax = -1;
  59. for (var i = 0; words_result.length > i; i++) {
  60. if (words_result[i].words.length > wordMax && filtrationNum(words_result[i].words)) {
  61. wordMax = words_result[i].words.length;
  62. indexMax = i;
  63. }
  64. }
  65. if (indexMax != -1) {
  66. words = words_result[indexMax].words;
  67. }
  68. resolve(words);
  69. },
  70. fail: function (res, reject) {
  71. console.log('get word fail:', res.data);
  72. }
  73. });
  74. });
  75. }
  76. function scanlicensePlate(imageData, token) {
  77. // 这里的imageData是图片转换成base64格式的数据
  78. const detectUrl =
  79. `https://aip.baidubce.com/rest/2.0/ocr/v1/general_basic?access_token=${token}`; // baiduToken是已经获取的access_Token
  80. return new Promise(function(resolve, reject) {
  81. uni.request({
  82. url: detectUrl,
  83. data: {
  84. image: imageData
  85. },
  86. method: 'POST',
  87. dataType: 'json',
  88. header: {
  89. 'content-type': 'application/x-www-form-urlencoded' // 必须的
  90. },
  91. success: function(res) {
  92. var words_result = res.data.words_result;
  93. var licensePlate = '';
  94. var licensePlatePrefix = '';
  95. var wordMax = 0;
  96. var indexMax = -1;
  97. for (var i = 0; words_result.length > i; i++) {
  98. if (words_result[i].words.length > wordMax && filtrationNum(words_result[i]
  99. .words)&&words_result[i].words.length < 11) {
  100. wordMax = words_result[i].words.length;
  101. indexMax = i;
  102. }
  103. }
  104. if (indexMax != -1) {
  105. licensePlate = words_result[indexMax].words;
  106. }
  107. if (indexMax != 0 && indexMax != -1) {
  108. licensePlatePrefix = words_result[indexMax - 1].words;
  109. licensePlatePrefix = licensePlatePrefix.replaceAll("。", ".");
  110. }
  111. resolve({
  112. licensePlatePrefix: licensePlatePrefix,
  113. licensePlate: licensePlate
  114. });
  115. },
  116. fail: function(res, reject) {
  117. console.log('get word fail:', res.data);
  118. }
  119. });
  120. });
  121. }
  122. function filtrationNum(data) {
  123. var reg = /^[\da-z]+$/i;
  124. if (reg.test(data)) {
  125. return true;
  126. } else {
  127. return false;
  128. }
  129. }
  130. module.exports = {
  131. scanOCRText: scanOCRText,
  132. scanlicensePlate: scanlicensePlate
  133. };