-
Hi, I followed the
Is there an issue with my operations? Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
Hi @jimingda
As you did yourself, the command That specific port is opened by the device driver of the Realsense camera. yarpdev --context realsense-holder-calibration --from config_rs.ini What's the output? Is the driver running happily? Can you list down the RPC port this time? |
Beta Was this translation helpful? Give feedback.
-
This is a necessary but not sufficient precondition and that's good you tested it 👍🏻
As you can figure out from the log, the port is not present. Indeed, there's an error when you launched the device driver: [ERROR] |yarp.os.YarpPluginSettings| Cannot find "realsense2" plugin (not built in, and no .ini file found for it)Check that YARP_DATA_DIRS leads to at least one directory with plugins/realsense2.ini or share/yarp/plugins/realsense2.ini in it
[ERROR] |yarp.dev.PolyDriver|realsense2| Could not find device <realsense2>
[ERROR] |yarp.devices.RGBDSensorWrapper| Opening IRGBDSensor subdevice... FAILED
[ERROR] |yarp.devices.RGBDSensorWrapper| Error while opening subdevice If you ask the system to list down the available device drivers via To get it working, you ought to follow these instructions: |
Beta Was this translation helpful? Give feedback.
-
Hi, I am currently able to access the depthCamera port as shown below. However, I am encountering a connection issue from
I'm puzzled by the absence of the port named |
Beta Was this translation helpful? Give feedback.
Hi @jimingda
As you did yourself, the command
yarp name list
didn't find the port/depthCamera/rpc:i
, hence the failure.That specific port is opened by the device driver of the Realsense camera.
To launch the device driver, you have to run on the PC connected to the camera and where you installed the repo
realsense-holder-calibration
the following command:yarpdev --context realsense-holder-calibration --from config_rs.ini
What's the output? Is the driver running happily? Can you list down the RPC port this time?