bensondaled / pseyepy

PSEye-py: a python interface to the PS3Eye camera
Apache License 2.0
78 stars 26 forks source link

ImportError: DLL load failed while importing cameras: The specified module could not be found. #13

Open Raduq91 opened 2 years ago

Raduq91 commented 2 years ago

(venv) C:\Users\Radu\Downloads\Portable Python-3.10.5 x64>qw.py
Traceback (most recent call last):
  File "C:\Users\Radu\Downloads\Portable Python-3.10.5 x64\qw.py", line 1, in <module>
    from pseyepy import Cameras
  File "C:\Users\Radu\Downloads\Portable Python-3.10.5 x64\venv\lib\site-packages\pseyepy\__init__.py", line 1, in <module>
    from .cameras import Camera, cam_count
ImportError: DLL load failed while importing cameras: The specified module could not be found.
DawidStankiewicz commented 1 year ago

@Raduq91 did you solve this issue? I have the same problem.

Raduq91 commented 1 year ago

@Raduq91 did you solve this issue? I have the same problem.

I used https://github.com/jkevin/PS3EyeDirectShow

lucid-codr commented 2 weeks ago

@Raduq91 did you solve this issue? I have the same problem.

I used https://github.com/jkevin/PS3EyeDirectShow

can you use it in python with 120 fps ?

Raduq91 commented 2 weeks ago

@Raduq91 did you solve this issue? I have the same problem.

I used https://github.com/jkevin/PS3EyeDirectShow

can you use it in python with 120 fps ?

I did some modifications(I am beginner in programing) to "PS3EyePushPin.cpp" and for me it seems it worked, I remember I could specify what fps I want and it worked. image

camera = cv2.VideoCapture(0) camera.set(5,120) camera.set(cv2.CAP_PROP_FRAME_WIDTH, 320) camera.set(cv2.CAP_PROP_FRAME_HEIGHT, 240)