-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dependency conflicts scipy and stochastic #1
Comments
|
Possible cause of this error (about tesseract) is that I installed
And now it is better:
But the plate is not detected. |
Dear kmezhoud; Thanks very much for you interest in my project. I am so grateful for your remakes. First I developed the software on Windows 11 and USB Cam video camera witch run on python 3.11.4 , then i used to compile it to Raspberry pi 3B+ witch run on Raspbian OS , so there was many libs had incompatibility issues , for the Raspbian (Default python 3.9), i make some changes to make it works ( lib version listed in setup.py might not work under any laptop ) Second , the last output ( program exist without plate detection) is due the tesseract engine version , with some versions it do not work well. try to change the version or use another better OCR engine or
and replace it with :
you should print many character including numbers , symbols , .... and show me the result. the function matching_number.py should be implemented with a fuzzy logic or probabilistic approach , hence in the project we don t find time to implement that. For video recording , there was a function implemented capture_video.py in video module. it works for the default hardware camera (it works fine for the Raspberry pi camera, check it for laptop camera records ) The actual version use recognition from proceed images one by one , the cod do not make correlation between results extracted from previous image , try to implement a feature localization module and a comparison process. |
Hi Thanks,
dokerfile
close dockerfile and build the image
after that, any user can install your package without any issue by
This is the Principe of dockerize python package and not a full solution of your case.
Not yet. |
Thanks very much Dr Karim for you advices , I will correct the dependency issue with the release of a docker image soon , and i will improve the detection functionally in order to get more accurate results. I am still working on it. |
Hi Wissem |
Hi, @Stan92, thank you very much for your comment! The package was developed using Python version 3.11.4, which matches your version. I noticed that the issue you're experiencing is likely caused by dependency conflicts within your Python libraries, such as NumPy, SciPy, and others. Here's what I recommend:
If the error still persists, please open a new issue, including the title of the libraries causing the problem, or reach me at: [email protected].
|
Hi,
Thank you for this package.
In the end of installation I got this Error message
The installation is well done (second installation)
BUT
When I run
python3 main.py
I got error during importing packages
After updating
scipy
withpip install scipy==1.8.1
, The package seems to work well with the default video.mp4.and during this
/data/images/video_frames
and/data/images/roi_frames
folders were generated.Maybe it is necessary to update
setup.py
withscipy==1.8.1
But after I got this error
How we an setup inputs like live camera or recorded video?
Note:
I am on PC without camera (ubuntu). And I just want to use camera recorded video as INPUT.
Many Thanks,
Karim
The text was updated successfully, but these errors were encountered: