stereolabs / zed-python-api

Python API for the ZED SDK
https://www.stereolabs.com/docs/app-development/python/install/
MIT License
213 stars 94 forks source link

NO GPU COMPATIBLE #175

Closed kshamaramesh closed 2 years ago

kshamaramesh commented 3 years ago

I could open the camera on ZED explorer tool but I am finding the issue with the of NO GPU COMPATIBLE

Code for it is below:

import pyzed.sl as sl zed = sl.Camera()

Set configuration parameters:

init_params = sl.InitParameters() init_params.camera_resolution = sl.RESOLUTION.HD1080 # Use HD1080 video mode init_params.camera_fps = 30 # Set fps at 30

Open the camera:

err = zed.open(init_params) print(err) if err != sl.ERROR_CODE.SUCCESS: exit(1)

These are following specifications: OS :windows 10 CUDA Version: 11.0 ZED Toolkit: 3.4.3 Graphics card:Nvida GeForce 680

So will the SDK work ? In the official website they have given that Nvidia Compute capability must be greater than 3

But I have graphics card compute capability as 3

Kind Regards, Kshama ramesh

github-actions[bot] commented 2 years ago

This issue is stale because it has been open 30 days with no activity. Remove stale label or comment otherwise it will be automatically closed in 5 days