Minimal example of using camera_cb
-
Thank you all for all of the information :). The snapshot feature sounds like what I'm looking for. I'm looking through the camera server git at the moment for the code. Is there any example for using this vs a regular stream? I see that in the camera server conf you can enable which type of stream you want. I've set
preview
andvideo
to false for the hires camera and setsnapshot
to True. My tflite model is using the tracking camera for it's feed. Going off of thevoxl-camera-server
hal3-camera-mgr.cpp
I see that the server handles the image saving. As for the expected behaviour, would an image be saved when data enters the pipe while the client is still connected?I currently have my client set with a simple camera_cb that closes the client when the cb is triggered to only save one image after the client is started. Is the snapshot client setup the same way as the streaming client? When I try to run this client with the pipe name pointing to
/run/mpa/hires_preview
I get the debug message showing that the client connected, but it appears that the capture buffer is being used instead of the snapshot.NOTE: I added the all caps printouts that show that
pCaptureResultData
is not null on line1115
of thehal3_camera_mgr.cpp
and that it is null on line1240
when checkin thepSnapshotBufferInfo
.------ voxl-camera-server INFO: Client: modal-abr-capture-pipe0 connected to channel: 0 2:CAPTURE BUFFER NOT NULL, BUT SHOULD BE FOR SNAPSHOT SNAPSHOT BUFFER NULL WHEN TRYING TO SAVE voxl-camera-server ERROR: Error sending request 0, ErrorCode: -22 voxl-camera-server FATAL: Recieved Fatal error from camera: hires Camera server will be stopped ------ voxl-camera-server WARNING: Thread: hires request thread recieved ESTOP ------ voxl-camera-server WARNING: Thread: tracking result thread recieved ESTOP ------ voxl-camera-server WARNING: Thread: stereo request thread recieved ESTOP ------ voxl-camera-server WARNING: Thread: stereo result thread recieved ESTOP ------ voxl-camera-server WARNING: Thread: hires result thread recieved ESTOP ------ voxl-camera-server WARNING: Thread: tracking request thread recieved ESTOP ------ voxl-camera-server INFO: Camera server is now stopping There is a chance that it may segfault here, this is a mmqcamera bug, ignore it ------ voxl-camera-server INFO: Stopping tracking camera ------ voxl-camera-server INFO: tracking camera stopped successfully ------ voxl-camera-server INFO: Stopping hires camera ------ voxl-camera-server INFO: hires camera stopped successfully ------ voxl-camera-server INFO: Stopping stereo camera ------ voxl-camera-server INFO: stereo camera stopped successfully ------ voxl-camera-server INFO: Camera server exited gracefully
I'm still sorting through where this error is being thrown.
-
I double checked with other devs on the team and the jpeg snapshot feature in voxl-camera-server is still in development. I don't have a good ETA for the feature.
However, perhaps we can go back to evaluating voxl-rtsp for your application. If you disable hires camera in voxl-camera-server, you should be able to use
voxl-rtsp
with hires camera after voxl-camera-server has started for other cameras.voxl-rtsp
supports outputting jpegs. You can first confirm that you can access hires camera jpegs with voxl-rtsp (I don't think it can do 4K30 jpegs, but lower resolution/frame rate should work). That should work and then you could add an input to trigger voxl-rtsp to actually save a jpeg upon request (instead of every frame). This can be done similarly how exposure/gain commands are accepted byvoxl-rtsp
via a named pipe.Hopefully this can work for you..
-
.. or if you wanted to continue using voxl-camera-server for 4K, just modify the server to save yuv frames on-demand and convert to jpeg later, as we discussed above..
-
Thank you for all of the ideas. I was able to get the image capture to work by setting my thread to watch for a
capture_image
flag to start the client, then stop it after the image is saved, instead of threading the callback itself. This let me save an image at a time to text file, then I just scp it off the voxl to parse in python as an RGB image later.Cheers
-
Sounds good.. Just keep in mind that saving a 4K image to a text file will be much slower and will take more space than just saving the raw binary data to a file. Parsing a binary file should be as easy or easier than text.. It's up to you though
-
@Alex-Kushleyev thanks for the heads up. You make a good point, I'll switch it over to a bin Thanks!
-
Just coming back to this; any update on the snapshot feature?
-
Hi,
voxl-camera-server >= 1.0.2 (live on voxl2/rb5, beta on voxl1) supports 4k snapshots from the hires camera, you can echo "snapshot" into the hires control pipe and it will write the snapshot out to /data/snapshots/, or echo "snapshot [path]" into the pipe and it will write the snapshot out to the given path. -
@Alex-Gardner I get an error when trying snapshot on the Sentinel, voxl-suite 0.8.1.
Input:
voxl2:/run/mpa/hires$ echo "snapshot" > control
Output:
Nov 04 16:20:41 m0054 bash[24392]: Camera: hires taking snapshot (destination: /data/snapshots/hires-0.jpg) Nov 04 16:20:41 m0054 bash[24392]: free(): invalid pointer Nov 04 16:20:41 m0054 systemd[1]: voxl-camera-server.service: Main process exited, code=killed, status=6/ABRT Nov 04 16:20:41 m0054 systemd[1]: voxl-camera-server.service: Failed with result 'signal'.
Any advice?
-
@mkwan Can you make a new thread with this issue and include the output of
voxl-inspect-services -v