Back again...
I have my ML program running now with the qtiqmmfscrc pipeline and disabling voxl-camera-server. I'd like to run voxl-camera-server with just the tracking and stereo cameras so voxl-qvio-server will get data. I tried to remove just the hires camera from /etc/modalai/voxl-camera-server.conf but running voxl-camera-server aborts:
rb5:/$ /usr/bin/voxl-camera-server -d 0
No secondary id found for camera: tracking, assuming mono
Secondary id found for camera: stereo_front, assuming stereo
Secondary id found for camera: stereo_rear, assuming stereo
------ voxl-camera-server: Starting camera server
Attempting to open the hal module
SUCCESS: Camera module opened on attempt 0
Aborted
rb5:/$ more /etc/modalai/voxl-camera-server.conf
{
"version": 0.1,
"cameras": [{
"name": "tracking",
"enabled": true,
"frame_rate": 30,
"type": "ov7251",
"camera_id": 2,
"ae_desired_msv": 60,
"ae_filter_alpha": 0.600000023841858,
"ae_ignore_fraction": 0.20000000298023224,
"ae_slope": 0.05000000074505806,
"ae_exposure_period": 1,
"ae_gain_period": 1
}, {
"name": "stereo_front",
"enabled": true,
"frame_rate": 30,
"type": "ov7251",
"camera_id": 0,
"camera_id_second": 1,
"ae_desired_msv": 60,
"ae_filter_alpha": 0.600000023841858,
"ae_ignore_fraction": 0.20000000298023224,
"ae_slope": 0.05000000074505806,
"ae_exposure_period": 1,
"ae_gain_period": 1
}, {
"name": "stereo_rear",
"enabled": true,
"frame_rate": 30,
"type": "ov7251",
"camera_id": 5,
"camera_id_second": 4,
"ae_desired_msv": 60,
"ae_filter_alpha": 0.600000023841858,
"ae_ignore_fraction": 0.20000000298023224,
"ae_slope": 0.05000000074505806,
"ae_exposure_period": 1,
"ae_gain_period": 1
}]
}
Any advice? Thank you for your time.