I need to make a Barcode/QR code reader from video.
It could be captured from an image with a built in code, but I could not figure it out how it could be done by video.
Let me tell the big picture. I will use as an identification. For example, somebody shows it as an ID to camera, so code will scan the list whether the code is listed or not. If it is listed, it will bring the information about the person. Thus, security guards will open the door or let the person enter.
Reading from an image is not a problem. BarcodeRecognize[image] will solve the problem
– forumcash Mar 17 '15 at 20:58RunScheduledTaskorDynamicin order to what you want to do regularly; useCurrentImageto fetch the image from the source and try to useBarcodeRecognizeand see if it works. IfBarcodeRecognizedoes not work then we will need to see the images in order to help. Hint: If you get the problem thatBarcodeRecognizeis too slow you can try to make the images smaller. (But then it will be even less likely to work, so be careful. Experiment.) – C. E. Mar 17 '15 at 21:25