<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[RGB Camera Info]]></title><description><![CDATA[<p dir="auto">I am trying to get the camera intrinsics for the onboard RGB camera for the Starling 2 drone. From the product spec I can see that it has the IMX412 color image sensor, but can't find the lens information (I need a focal length estimate and ideal 'camera model') to calibrate using the kalibr tool. Any help / guidance would be appreciated! Thanks in advance <img src="https://forum.modalai.com/assets/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=fe4320af44a" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" style="height:23px;width:auto;vertical-align:middle" title=":)" alt="🙂" /></p>
]]></description><link>https://forum.modalai.com/topic/5190/rgb-camera-info</link><generator>RSS for Node</generator><lastBuildDate>Mon, 10 Aug 2026 13:42:25 GMT</lastBuildDate><atom:link href="https://forum.modalai.com/topic/5190.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 01 May 2026 02:24:56 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to RGB Camera Info on Mon, 11 May 2026 22:03:51 GMT]]></title><description><![CDATA[<p dir="auto">@james-emi ,</p>
<p dir="auto">In our <code>voxl-camera-server</code>, we have a default intrinsics config for the IMX412 camera / lens as follows (focal length approximation is based on a several calibrations). Basically it is a fisheye lens with about 2000px focal length at full resolution (half of that at half resolution, etc). The camera full sensor width is 4056 (hence the x principal point is exactly half of that 2028). In some cases we use slightly trimmed frame (4040 in width). But in any case, that should be enough for a good starting point.</p>
<pre><code>lens_cal.width  = 4040;
lens_cal.height = 3040;
lens_cal.fx     = 1999.0;
lens_cal.fy     = 1999.0;
lens_cal.cx     = 2028.0;
lens_cal.cy     = 1520.0;
lens_cal.is_fisheye = 1;
</code></pre>
<p dir="auto">Alex</p>
]]></description><link>https://forum.modalai.com/post/25875</link><guid isPermaLink="true">https://forum.modalai.com/post/25875</guid><dc:creator><![CDATA[Alex Kushleyev]]></dc:creator><pubDate>Mon, 11 May 2026 22:03:51 GMT</pubDate></item></channel></rss>