참조 : https://github.com/cozmo/jsQR
GitHub - cozmo/jsQR: A pure javascript QR code reading library. This library takes in raw images and will locate, extract and pa
A pure javascript QR code reading library. This library takes in raw images and will locate, extract and parse any QR code found within. - GitHub - cozmo/jsQR: A pure javascript QR code reading lib...
github.com
샘플 : https://cozmo.github.io/jsQR/
jsQR Demo
jsQR Demo View documentation on Github Pure JavaScript QR code decoding library. 🎥 Unable to access video stream (please make sure you have a webcam enabled) No QR code detected. Data:
cozmo.github.io
A pure javascript QR code reading library. This library takes in raw images and will locate, extract and parse any QR code found within.
Available on npm. Can be used in a Node.js program or with a module bundler such as Webpack or Browserify.
npm install jsqr --save
// ES6 import
import jsQR from "jsqr";
// CommonJS require
const jsQR = require("jsqr");
jsQR(...);
Alternatively for frontend use jsQR.js can be included with a script tag
<script src="jsQR.js"></script>
<script>
jsQR(...);
</script>
jsQR is designed to be a completely standalone library for scanning QR codes. By design it does not include any platform specific code. This allows it to just as easily scan a frontend webcam stream, a user uploaded image, or be used as part of a backend Node.js process.
If you want to use jsQR to scan a webcam stream you'll need to extract the ImageData from the video stream. This can then be passed to jsQR. The jsQR demo contains a barebones implementation of webcam scanning that can be used as a starting point and customized for your needs. For more advanced questions you can refer to the getUserMedia docs or the fairly comprehensive webRTC sample code, both of which are great resources for consuming a webcam stream.
jsQR exports a method that takes in 3 arguments representing the image data you wish to decode. Additionally can take an options object to further configure scanning behavior.
const code = jsQR(imageData, width, height, options?);
if (code) {
console.log("Found QR code", code);
}
If a QR is able to be decoded the library will return an object with the following keys.
Because the library is written in typescript you can also view the type definitions to understand the API.
jsQR is written using typescript. You can view the development source in the src directory.
Tests can be run with
npm test
Besides unit tests the test suite contains several hundred images that can be found in the /tests/end-to-end/ folder.
Not all the images can be read. In general changes should hope to increase the number of images that read. However due to the nature of computer vision some changes may cause images that pass to start to fail and visa versa. To update the expected outcomes run npm run-script generate-test-data. These outcomes can be evaluated in the context of a PR to determine if a change improves or harms the overall ability of the library to read QR codes. A summary of which are passing and failing can be found at /tests/end-to-end/report.json
After testing any changes, you can compile the production version by running
npm run-script build
Pull requests are welcome! Please create seperate branches for seperate features/patches.
댓글 영역