简体   繁体   中英

Is it possible to access DJI Mavic's camera video and process it realtime on the external device?

I want to realtime process video that captures DJI Mavic using onboard NVidia Jetson module. Is it possible to use video data in external device? How to access it?

There are two options:

  1. Turn on a video stream, grab it in external device (for example, via openCV), then process. Since you have cv::Mat object for each frame you can do anything. For video streaming setup you can use this . To open video stream in opencv you should create a Video Capture with RTMP address as parameter.
  2. Grab raw frames data from camera using DJI SDK. Now you can decode them either via SDK using your device's GPU or send raw data to your external device over TCP or whatever you like and then decode. After decoding you can process each frame in your needs. Starting point for this approach.

If you need more in-depth information or have any questions feel free to ask.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM