393 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
0
answers
66
views
'zbar.h' file not found when using gogio
I am trying to compile package for android system using gogio(on Linux):
gogio -target=android .
But i get following error:
gogio: go build -ldflags=-w -s -X gioui.org/app.ID=localhost.client -X ...
1
vote
0
answers
58
views
Why am I getting 'Failed to decode QR code: An error occurred while processing some image(s)' in PHP with ImageMagick?
I am working on a PHP application that involves decoding QR codes using ImageMagick. However, I encountered the following error in my logs:
{"logtime":"2024年12月04日 14:19:45.955",&...
1
vote
0
answers
59
views
C, Zbar library, two cameras scanning simultaneously
How can I scan QR codes using Zbar library using two web cameras?
void *scanning_f(void *ptr)
{
const char *first_cam = "/dev/video0";
const char *second_cam = "/dev/video2&...
0
votes
1
answer
913
views
Reading binary qr codes with pyzbar
I am trying to encode some binary data into a QR code using the qrcode library then decode it using the pyzbar library, but it is not working properly. When it is decoding, the result is slightly ...
0
votes
1
answer
2k
views
Speed up easyocr
I developed an Android application that uses chaquopy to run easyocr and pyzbar modules, during the processing of an input image. The app goal is to be able to extract text and decode barcodes present ...
2
votes
0
answers
589
views
Pyzbar not decoding a clear barcode
I have an image with a fairly clear barcode. Online barcode readers get it without issue, as does the app on my phone, but I've not been able to decode it using Pyzbar.
Here's the unedited image:
...
0
votes
0
answers
291
views
Unable to decode QR code using any Python libraries but works on QR scanners app
Following is a QR code captured from holography experiment with highest level of error correction. I can decode the image using my native camera app on iPhone but unable to decode using any of the ...
0
votes
0
answers
253
views
Way to blur only the QRCode in image with Python
I was building a Processing Images API, which is composed by 3 steps, remove the image background,
blur the QRCode if found it and change the background to White.
At first worked using some standard ...
0
votes
0
answers
205
views
Pyzbar decode: TypeError: cannot unpack not-iterable NoneType object
i am making a barcode reader with pyzbar and opencv but when i use decode function from pyzbar.pyzbar i get this error:
Traceback (most recent call last):
File "c:\Users\galax\Documents\...
user avatar
user22290650
0
votes
1
answer
2k
views
Python 3.10 cannot import pyzbar
i am using pyzbar 0.1.9 for a barcode reader but when i try to import pyzbar.pyzbar i get this error:
FileNotFoundError: Could not find module 'C:\Users\galax\AppData\Local\Programs\Python\Python310\...
user avatar
user22290650
0
votes
0
answers
53
views
cannot find -lzbar when trying to run "python.exe .\setup.py bdist_wheel" on zbarlight
I followed this:
https://ruvi-d.medium.com/getting-zbarlight-to-work-on-windows-a3dc643dba18
I got an error - "I get "ValueError("Unknown MS Compiler version %s " % msc_ver)" ...
0
votes
1
answer
537
views
Reading a barcode on pyzbar that's a little unfocused in python 2
I tried reading this barcode with pyzbar. I've tried at least 2 different approaches for fuzzy barcode filters here on stack overflow, none of them work. I try rotating the barcode to different angles....
1
vote
0
answers
133
views
Converting QImage an ZBar image
I am trying to convert an QImage into ZBar image but not able to do it successfully so far. My QImage is with RGB32 format(Attached)
And I am instantiating ZBar as in the below snapshot code:
QImage ...
1
vote
1
answer
186
views
Integrating zbar library in qt6.4
I was able to install the qt into my machine and now I have started to build my project which is the scanning of the barcode reader. I have decided to use 'zbar' library for this purpose and installed ...
2
votes
2
answers
3k
views
Issue with QR Code reading with OpenCV or Pyzbar
I'm trying to decode a QR Code using Python, or any other language to be honest. I am also familiar with Javascript or PHP, but Python seemed to be the most appropriate one for this task.
This is part ...