Forums - QMMF Client on RB5 Vision Kit?

2 posts / 0 new
Last post
QMMF Client on RB5 Vision Kit?
jhwill
Join Date: 30 Apr 21
Posts: 12
Posted: Tue, 2021-06-08 21:54

Hello,

The documentation refers to a "Qualcomm MMF server (daemon)." I see qmmf-daemon running on my RB5 Vision Kit.

I'm trying to write a program to capture a frame. However, even when I try to run `StartCamera`, I encounter an error.

static void *cam_cb(
        uint32_t camera_id,
        const android::CameraMetadata &res) {
    cout << "cam cb is called" << endl;
}

static void start_camera() {
    auto recorder = Recorder();
    cam_id = 0;
    frame_rate = 30;
    const CameraExtraParam& extra_params = {};
    status_t ret = recorder.StartCamera(cam_id, frame_rate, extra_params, cam_cb);
    if (ret != OK) {
	cerr << "start camera failed." << endl;
	cerr << "ret = " << ret << endl;
	exit(1);
    }
}

This will output:

./main 
gbm_create_device(156): Info: backend name is: msm_drm
start camera failed.
ret = -19

Any idea what's gone wrong?

Here is my Makefile

INCLUDES += $(patsubst %, -I%, /usr/include/qrb5165 /usr/include/qrb5165/qmmf-sdk)
LIBS += $(patsubst %, -l%, qmmf_recorder_client camera_metadata)
CXXFLAGS += $(INCLUDES) -std=gnu++11 

all:
	g++ $(CXXFLAGS) main.cpp $(LIBS) -o main

clean:
	rm main
  • Up0
  • Down0
kevin.dai
Join Date: 21 Oct 20
Posts: 137
Posted: Thu, 2021-06-10 10:14

Hi jhwill,

May I know where you get sample app to directly access  QMMF Server?

Actually we have sample app to access QMMF server through QMMF SRC, it is gstreamer sample app.

It start camera  streaming to display. You can reffer this sample app.

https://github.com/quic/sample-apps-for-Qualcomm-Robotics-RB5-platform/t...

Please let me know if you can use this sample code for your app.

Thanks

Kevin

  • Up0
  • Down0
or Register

Opinions expressed in the content posted here are the personal opinions of the original authors, and do not necessarily reflect those of Qualcomm Incorporated or its subsidiaries (“Qualcomm”). The content is provided for informational purposes only and is not meant to be an endorsement or representation by Qualcomm or any other party. This site may also provide links or references to non-Qualcomm sites and resources. Qualcomm makes no representations, warranties, or other commitments whatsoever about any non-Qualcomm sites or third-party resources that may be referenced, accessible from, or linked to this site.