<?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[ROC-RK3588S-PC and IMX462]]></title><description><![CDATA[<p dir="auto">Hi<br />
I have ROC-RK3588S-PC and IMX462. I followed the instructions and installed the image.<br />
<code>ROC-RK3588S-PC_Ubuntu_v1.0.6f_veye_mvcam_vbyone_230830.img</code></p>
<p dir="auto">Unfortunately <code>dmesg | grep veye</code> shows an error. See screenshots.<br />
Please help.</p>
<p dir="auto"><a href="https://imgbly.com/ib/PIGIshhUce.jpg" rel="nofollow ugc"><img src="https://imgbly.com/ib/PIGIshhUce.jpg" alt="https://imgbly.com/ib/PIGIshhUce.jpg" class=" img-fluid img-markdown" /></a><br />
<a href="https://imgbly.com/ib/J06XI5XFSE.jpg" rel="nofollow ugc"><img src="https://imgbly.com/ib/J06XI5XFSE.jpg" alt="https://imgbly.com/ib/J06XI5XFSE.jpg" class=" img-fluid img-markdown" /></a></p>
]]></description><link>http://forum.veye.cc/topic/511/roc-rk3588s-pc-and-imx462</link><generator>RSS for Node</generator><lastBuildDate>Fri, 04 Sep 2026 22:34:27 GMT</lastBuildDate><atom:link href="http://forum.veye.cc/topic/511.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 21 Dec 2023 16:56:26 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to ROC-RK3588S-PC and IMX462 on Wed, 17 Jan 2024 00:44:45 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/natzguk" aria-label="Profile: natzguk">@<bdi>natzguk</bdi></a> pls try this:<br />
<a href="https://github.com/veyeimaging/rk35xx_firefly/blob/main/linux/samples/gstreamer/veye%20camera/preview.sh" rel="nofollow ugc">https://github.com/veyeimaging/rk35xx_firefly/blob/main/linux/samples/gstreamer/veye camera/preview.sh</a></p>
]]></description><link>http://forum.veye.cc/post/3660</link><guid isPermaLink="true">http://forum.veye.cc/post/3660</guid><dc:creator><![CDATA[veye_xumm]]></dc:creator><pubDate>Wed, 17 Jan 2024 00:44:45 GMT</pubDate></item><item><title><![CDATA[Reply to ROC-RK3588S-PC and IMX462 on Tue, 16 Jan 2024 06:55:38 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/veye_xumm" aria-label="Profile: veye_xumm">@<bdi>veye_xumm</bdi></a><br />
I am not talking about previewing the frame. I am talking about simply reading the frame. No processing.</p>
<p dir="auto">Here is the example with sample4:</p>
<pre><code>import numpy as np
import cv2 as cv
import os
import time

cap = cv.VideoCapture('v4l2src device=/dev/video0 ! video/x-raw, format=NV12, width=1920, height=1080, framerate=30/1 ! videoconvert ! appsink', cv.CAP_GSTREAMER)

if not cap.isOpened():
    print("Cannot capture from camera. Exiting.")
    os._exit(0)

last_time = time.time()
frame_count = 0

while True:
    ret, frame = cap.read()
    if not ret:
        break

    frame_count += 1
    this_time = time.time()

    if this_time - last_time &gt;= 1.0:
        fps = frame_count / (this_time - last_time)
        print(f"FPS: {fps}")
        last_time = this_time
        frame_count = 0


cap.release()
cv.destroyAllWindows()

</code></pre>
<p dir="auto">Simply reading the frame is currently only getting 15 FPS on  ROC-RK3588S-PC. I believe this is a driver issue with NV12.</p>
]]></description><link>http://forum.veye.cc/post/3658</link><guid isPermaLink="true">http://forum.veye.cc/post/3658</guid><dc:creator><![CDATA[natzguk]]></dc:creator><pubDate>Tue, 16 Jan 2024 06:55:38 GMT</pubDate></item><item><title><![CDATA[Reply to ROC-RK3588S-PC and IMX462 on Tue, 16 Jan 2024 05:56:05 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/natzguk" aria-label="Profile: natzguk">@<bdi>natzguk</bdi></a>  I believe the key issue lies in videoconvert and the  display, which has low efficiency. You can refer to our GStreamer for previewing.</p>
]]></description><link>http://forum.veye.cc/post/3657</link><guid isPermaLink="true">http://forum.veye.cc/post/3657</guid><dc:creator><![CDATA[veye_xumm]]></dc:creator><pubDate>Tue, 16 Jan 2024 05:56:05 GMT</pubDate></item><item><title><![CDATA[Reply to ROC-RK3588S-PC and IMX462 on Tue, 16 Jan 2024 05:32:51 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/veye_xumm" aria-label="Profile: veye_xumm">@<bdi>veye_xumm</bdi></a></p>
<p dir="auto">If I use NV12 as described in sample4 I can only read frames with max 15FPS from the camera. This will not work for our application.</p>
<p dir="auto">Can you show me an example which can read frames with 30FPS?</p>
]]></description><link>http://forum.veye.cc/post/3656</link><guid isPermaLink="true">http://forum.veye.cc/post/3656</guid><dc:creator><![CDATA[natzguk]]></dc:creator><pubDate>Tue, 16 Jan 2024 05:32:51 GMT</pubDate></item><item><title><![CDATA[Reply to ROC-RK3588S-PC and IMX462 on Tue, 16 Jan 2024 02:52:14 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/natzguk" aria-label="Profile: natzguk">@<bdi>natzguk</bdi></a></p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/natzguk" aria-label="Profile: natzguk">@<bdi>natzguk</bdi></a> said in <a href="/post/3554">ROC-RK3588S-PC and IMX462</a>:</p>
<blockquote>
<p dir="auto">Only format=NV12 (v4l2_opencv_show4.py) works with OpenCV but it requires videoconvert which is very slow.<br />
I want to use format=UYVY (v4l2_opencv_show2.py) but it does not work with<br />
ROC-RK3588S-PC and IMX462. I believe it is a problem with the driver for  ROC-RK3588S-PC. The same code with  format=UYVY works with Raspberry PI 4.</p>
</blockquote>
<p dir="auto">I apologize for the delay in responding to your question. In fact, as mentioned <a href="https://wiki.veye.cc/index.php/VEYE_CS_Camera_on_Firfly_Boards#Known_issues" rel="nofollow ugc">here</a>, the VICAP module of RK3588 does not support outputting the UYVY format, so please use the NV12 format instead.<br />
Actually, I think using the NV12 format is a good <a href="http://choice.It" rel="nofollow ugc">choice.It</a> will not lead to a decrease in system efficiency.</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/natzguk" aria-label="Profile: natzguk">@<bdi>natzguk</bdi></a> said in <a href="/post/3623">ROC-RK3588S-PC and IMX462</a>:</p>
<blockquote>
<p dir="auto">Did you have any chance to check the samples<br />
v4l2_opencv_show1.py<br />
v4l2_opencv_show2.py<br />
v4l2_opencv_show3.py<br />
with ROC-RK3588S-PC and IMX462?</p>
</blockquote>
<p dir="auto">Indeed, as you said, only sample4 works correctly. These samples are just collected examples of common ways to use OpenCV to access the camera, provided for customers as a reference.<br />
As mentioned before, our expertise in OpenCV development is not extensive.</p>
<p dir="auto"><code>videoconvert</code> is indeed an issue. I believe the internal data format of OpenCV is RGBA, and regardless of whether you use UYVY or NV12, conversion is needed.</p>
]]></description><link>http://forum.veye.cc/post/3655</link><guid isPermaLink="true">http://forum.veye.cc/post/3655</guid><dc:creator><![CDATA[veye_xumm]]></dc:creator><pubDate>Tue, 16 Jan 2024 02:52:14 GMT</pubDate></item><item><title><![CDATA[Reply to ROC-RK3588S-PC and IMX462 on Sun, 14 Jan 2024 17:58:25 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/veye_xumm" aria-label="Profile: veye_xumm">@<bdi>veye_xumm</bdi></a> please help</p>
]]></description><link>http://forum.veye.cc/post/3654</link><guid isPermaLink="true">http://forum.veye.cc/post/3654</guid><dc:creator><![CDATA[natzguk]]></dc:creator><pubDate>Sun, 14 Jan 2024 17:58:25 GMT</pubDate></item><item><title><![CDATA[Reply to ROC-RK3588S-PC and IMX462 on Tue, 09 Jan 2024 17:59:28 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/veye_xumm" aria-label="Profile: veye_xumm">@<bdi>veye_xumm</bdi></a></p>
<p dir="auto">Did you have any chance to check the samples</p>
<p dir="auto">v4l2_opencv_show1.py<br />
v4l2_opencv_show2.py<br />
v4l2_opencv_show3.py</p>
<p dir="auto">with ROC-RK3588S-PC and IMX462?</p>
]]></description><link>http://forum.veye.cc/post/3623</link><guid isPermaLink="true">http://forum.veye.cc/post/3623</guid><dc:creator><![CDATA[natzguk]]></dc:creator><pubDate>Tue, 09 Jan 2024 17:59:28 GMT</pubDate></item><item><title><![CDATA[Reply to ROC-RK3588S-PC and IMX462 on Tue, 02 Jan 2024 09:27:39 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/veye_xumm" aria-label="Profile: veye_xumm">@<bdi>veye_xumm</bdi></a></p>
<p dir="auto">Only <code>format=NV12</code> (v4l2_opencv_show4.py) works with OpenCV but it requires <code>videoconvert</code> which is very slow.</p>
<p dir="auto">I want to use <code>format=UYVY</code> (v4l2_opencv_show2.py) but it does not work with<br />
ROC-RK3588S-PC and IMX462. I believe it is a problem with the driver for  ROC-RK3588S-PC. The same code with  <code>format=UYVY</code> works with Raspberry PI 4.</p>
]]></description><link>http://forum.veye.cc/post/3554</link><guid isPermaLink="true">http://forum.veye.cc/post/3554</guid><dc:creator><![CDATA[natzguk]]></dc:creator><pubDate>Tue, 02 Jan 2024 09:27:39 GMT</pubDate></item><item><title><![CDATA[Reply to ROC-RK3588S-PC and IMX462 on Tue, 02 Jan 2024 01:26:28 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/natzguk" aria-label="Profile: natzguk">@<bdi>natzguk</bdi></a><br />
I'm sorry for not replying earlier.<br />
To be honest, we are not very familiar with OpenCV. I believe the low frame rate is due to the software-based UYVY to preview data format conversion, which involves CPU processing for each pixel, leading to inefficiency.<br />
I will verify the samples and your script as soon as possible.</p>
]]></description><link>http://forum.veye.cc/post/3523</link><guid isPermaLink="true">http://forum.veye.cc/post/3523</guid><dc:creator><![CDATA[veye_xumm]]></dc:creator><pubDate>Tue, 02 Jan 2024 01:26:28 GMT</pubDate></item><item><title><![CDATA[Reply to ROC-RK3588S-PC and IMX462 on Thu, 28 Dec 2023 10:11:03 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/veye_xumm" aria-label="Profile: veye_xumm">@<bdi>veye_xumm</bdi></a> Please help.</p>
<p dir="auto">v4l2_opencv_show1.py<br />
v4l2_opencv_show2.py<br />
v4l2_opencv_show3.py</p>
<p dir="auto">Do not work with ROC-RK3588S-PC and IMX462.</p>
]]></description><link>http://forum.veye.cc/post/3499</link><guid isPermaLink="true">http://forum.veye.cc/post/3499</guid><dc:creator><![CDATA[natzguk]]></dc:creator><pubDate>Thu, 28 Dec 2023 10:11:03 GMT</pubDate></item><item><title><![CDATA[Reply to ROC-RK3588S-PC and IMX462 on Tue, 26 Dec 2023 13:48:54 GMT]]></title><description><![CDATA[<p dir="auto">Hi <a class="plugin-mentions-user plugin-mentions-a" href="/user/veye_xumm" aria-label="Profile: veye_xumm">@<bdi>veye_xumm</bdi></a><br />
Do you know why UYVY does not work from the examples?</p>
]]></description><link>http://forum.veye.cc/post/3472</link><guid isPermaLink="true">http://forum.veye.cc/post/3472</guid><dc:creator><![CDATA[natzguk]]></dc:creator><pubDate>Tue, 26 Dec 2023 13:48:54 GMT</pubDate></item><item><title><![CDATA[Reply to ROC-RK3588S-PC and IMX462 on Sat, 23 Dec 2023 17:15:29 GMT]]></title><description><![CDATA[<p dir="auto">I did some more tests and tested all the examples from <a href="https://github.com/veyeimaging/rk35xx_firefly/tree/main/linux/samples/opencv/veye" rel="nofollow ugc">https://github.com/veyeimaging/rk35xx_firefly/tree/main/linux/samples/opencv/veye</a> camera</p>
<p dir="auto">Files 1-3 do not work. No frames are shown. Only v4l2_opencv_show4.py works but it only reads with 15 FPS.</p>
<p dir="auto">Can you confirm that the python opencv examples 1-3 work with ROC-RK3588S-PC and IMX462 ?</p>
]]></description><link>http://forum.veye.cc/post/3406</link><guid isPermaLink="true">http://forum.veye.cc/post/3406</guid><dc:creator><![CDATA[natzguk]]></dc:creator><pubDate>Sat, 23 Dec 2023 17:15:29 GMT</pubDate></item><item><title><![CDATA[Reply to ROC-RK3588S-PC and IMX462 on Sat, 23 Dec 2023 09:10:30 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/veye_xumm" aria-label="Profile: veye_xumm">@<bdi>veye_xumm</bdi></a><br />
Yes please see my examples.</p>
<pre><code>camera.open(
        "v4l2src io-mode=dmabuf device=/dev/video0 ! video/x-raw, format=(string)UYVY, width=(int)1920, height=(int)1080 ! appsink",
        cv::CAP_GSTREAMER);
</code></pre>
<p dir="auto">Does not work. I can open the camera but the frames are always empty.</p>
<pre><code>firefly@firefly:~$ GST_DEBUG=3 gst-launch-1.0 v4l2src io-mode=dmabuf device=/dev/video0 ! video/x-raw, format=UYVY, width=1920, height=1080 ! appsink                 Setting pipeline to PAUSED ...
Pipeline is live and does not need PREROLL ...
Pipeline is PREROLLED ...
Setting pipeline to PLAYING ...
0:00:00.517057017 46983   0x5597da8c60 WARN                    v4l2 gstv4l2object.c:4735:gst_v4l2_object_probe_caps:&lt;v4l2src0:src&gt; Failed to probe pixel aspect ratio with VIDIOC_CROPCAP: Invalid argument
New clock: GstSystemClock
0:00:00.517846562 46983   0x5597da8c60 WARN                    v4l2 gstv4l2object.c:4528:gst_v4l2_object_get_crop_rect:&lt;v4l2src0:src&gt; Failed to get default crop rectangle with VIDIOC_G_SELECTION: Invalid argument
0:00:00.517940188 46983   0x5597da8c60 WARN                    v4l2 gstv4l2object.c:3278:gst_v4l2_object_reset_compose_region:&lt;v4l2src0:src&gt; Failed to get default compose rectangle with VIDIOC_G_SELECTION: Invalid argument
0:00:00.522044833 46983   0x5597da8c60 WARN          v4l2bufferpool gstv4l2bufferpool.c:850:gst_v4l2_buffer_pool_start:&lt;v4l2src0:pool0:src&gt; Uncertain or not enough buffers, enabling copy threshold
</code></pre>
]]></description><link>http://forum.veye.cc/post/3403</link><guid isPermaLink="true">http://forum.veye.cc/post/3403</guid><dc:creator><![CDATA[natzguk]]></dc:creator><pubDate>Sat, 23 Dec 2023 09:10:30 GMT</pubDate></item><item><title><![CDATA[Reply to ROC-RK3588S-PC and IMX462 on Sat, 23 Dec 2023 06:27:43 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/natzguk" aria-label="Profile: natzguk">@<bdi>natzguk</bdi></a><br />
Have you tried these samples here?<br />
<a href="https://github.com/veyeimaging/rk35xx_firefly/tree/main/linux/samples/opencv/veye%20camera" rel="nofollow ugc">https://github.com/veyeimaging/rk35xx_firefly/tree/main/linux/samples/opencv/veye camera</a></p>
]]></description><link>http://forum.veye.cc/post/3401</link><guid isPermaLink="true">http://forum.veye.cc/post/3401</guid><dc:creator><![CDATA[veye_xumm]]></dc:creator><pubDate>Sat, 23 Dec 2023 06:27:43 GMT</pubDate></item><item><title><![CDATA[Reply to ROC-RK3588S-PC and IMX462 on Fri, 22 Dec 2023 14:49:57 GMT]]></title><description><![CDATA[<p dir="auto">Hi <a class="plugin-mentions-user plugin-mentions-a" href="/user/veye_xumm" aria-label="Profile: veye_xumm">@<bdi>veye_xumm</bdi></a></p>
<p dir="auto">On RK3588S with opencv I only get slow FPS reading from IMX462 of around 15 FPS. The same code on RaspberryPi can read with 30FPS.</p>
<p dir="auto">Here is what I tried:</p>
<p dir="auto">1.)</p>
<pre><code>camera.open(
        "v4l2src device=/dev/video0 ! video/x-raw, format=(string)NV16, width=(int)1920, height=(int)1080,framerate=30/1 ! videoconvert ! appsink'",
        cv::CAP_GSTREAMER);
</code></pre>
<p dir="auto">Only 11-13 FPS</p>
<p dir="auto">2.)</p>
<pre><code>camera.open(
        "v4l2src io-mode=dmabuf device=/dev/video0 ! video/x-raw, format=(string)UYVY, width=(int)1920, height=(int)1080 ! appsink",
        cv::CAP_GSTREAMER);
</code></pre>
<p dir="auto">Can open camera but can not read frame</p>
<p dir="auto">3.)</p>
<pre><code>camera.open(0, cv::CAP_V4L2);
camera.set(cv::CAP_PROP_FRAME_WIDTH, 1920);
camera.set(cv::CAP_PROP_FRAME_HEIGHT, 1080);
</code></pre>
<p dir="auto">Can open camera but can not read frame</p>
<p dir="auto">Here is the output of dmesg</p>
<pre><code>firefly@firefly:~$ dmesg | grep veye
[    6.065238] veyecam2m 7-003b: veye camera driver version: 00.01.01
[    6.065262] veyecam2m 7-003b: Failed to get power-gpios, maybe no use
[    6.065422] veyecam2m 7-003b: supply avdd not found, using dummy regulator
[    6.065498] veyecam2m 7-003b: supply dovdd not found, using dummy regulator
[    6.065531] veyecam2m 7-003b: supply dvdd not found, using dummy regulator
[    6.065560] veyecam2m 7-003b: could not get default pinstate
[    6.065565] veyecam2m 7-003b: could not get sleep pinstate
[    6.065580] veyecam2m 7-003b: Success to get veyecam2m endpoint data lanes, dts uses 2 lanes
[    6.187925] veyecam2m 7-003b:  camera id is veyecam2m
[    6.190818] veyecam2m 7-003b: sensor is IMX462
[    6.190860] veyecam2m 7-003b: board type is ONE board
[    6.191449] rockchip-csi2-dphy csi2-dphy0: dphy0 matches m00_b_veyecam2m 7-003b:bus type 5
</code></pre>
<p dir="auto">And v4l2-ctl</p>
<pre><code>firefly@firefly:~$ v4l2-ctl --list-formats-ext
ioctl: VIDIOC_ENUM_FMT
        Type: Video Capture Multiplanar

        [0]: 'NV16' (Y/CbCr 4:2:2)
                Size: Stepwise 64x64 - 1920x1080 with step 8/8
        [1]: 'NV61' (Y/CrCb 4:2:2)
                Size: Stepwise 64x64 - 1920x1080 with step 8/8
        [2]: 'NV12' (Y/CbCr 4:2:0)
                Size: Stepwise 64x64 - 1920x1080 with step 8/8
        [3]: 'NV21' (Y/CrCb 4:2:0)
                Size: Stepwise 64x64 - 1920x1080 with step 8/8
        [4]: 'YUYV' (YUYV 4:2:2)
                Size: Stepwise 64x64 - 1920x1080 with step 8/8
        [5]: 'YVYU' (YVYU 4:2:2)
                Size: Stepwise 64x64 - 1920x1080 with step 8/8
        [6]: 'UYVY' (UYVY 4:2:2)
                Size: Stepwise 64x64 - 1920x1080 with step 8/8
        [7]: 'VYUY' (VYUY 4:2:2)
                Size: Stepwise 64x64 - 1920x1080 with step 8/8
        [8]: 'RGB3' (24-bit RGB 8-8-8)
                Size: Stepwise 64x64 - 1920x1080 with step 8/8
        [9]: 'RGBP' (16-bit RGB 5-6-5)
                Size: Stepwise 64x64 - 1920x1080 with step 8/8
        [10]: 'BGRH' (18-bit BGRX 6-6-6-14)
                Size: Stepwise 64x64 - 1920x1080 with step 8/8
        [11]: 'RGGB' (8-bit Bayer RGRG/GBGB)
                Size: Stepwise 64x64 - 1920x1080 with step 8/8
        [12]: 'GRBG' (8-bit Bayer GRGR/BGBG)
                Size: Stepwise 64x64 - 1920x1080 with step 8/8
        [13]: 'GBRG' (8-bit Bayer GBGB/RGRG)
                Size: Stepwise 64x64 - 1920x1080 with step 8/8
        [14]: 'BA81' (8-bit Bayer BGBG/GRGR)
                Size: Stepwise 64x64 - 1920x1080 with step 8/8
        [15]: 'RG10' (10-bit Bayer RGRG/GBGB)
                Size: Stepwise 64x64 - 1920x1080 with step 8/8
        [16]: 'BA10' (10-bit Bayer GRGR/BGBG)
                Size: Stepwise 64x64 - 1920x1080 with step 8/8
        [17]: 'GB10' (10-bit Bayer GBGB/RGRG)
                Size: Stepwise 64x64 - 1920x1080 with step 8/8
        [18]: 'BG10' (10-bit Bayer BGBG/GRGR)
                Size: Stepwise 64x64 - 1920x1080 with step 8/8
        [19]: 'RG12' (12-bit Bayer RGRG/GBGB)
                Size: Stepwise 64x64 - 1920x1080 with step 8/8
        [20]: 'BA12' (12-bit Bayer GRGR/BGBG)
                Size: Stepwise 64x64 - 1920x1080 with step 8/8
        [21]: 'GB12' (12-bit Bayer GBGB/RGRG)
                Size: Stepwise 64x64 - 1920x1080 with step 8/8
        [22]: 'BG12' (12-bit Bayer BGBG/GRGR)
                Size: Stepwise 64x64 - 1920x1080 with step 8/8
        [23]: 'BYR2' (16-bit Bayer BGBG/GRGR)
                Size: Stepwise 64x64 - 1920x1080 with step 8/8
        [24]: 'GB16' (16-bit Bayer GBGB/RGRG)
                Size: Stepwise 64x64 - 1920x1080 with step 8/8
        [25]: 'GR16' (16-bit Bayer GRGR/BGBG)
                Size: Stepwise 64x64 - 1920x1080 with step 8/8
        [26]: 'RG16' (16-bit Bayer RGRG/GBGB)
                Size: Stepwise 64x64 - 1920x1080 with step 8/8
        [27]: 'Y16 ' (16-bit Greyscale)
                Size: Stepwise 64x64 - 1920x1080 with step 8/8
        [28]: 'GREY' (8-bit Greyscale)
                Size: Stepwise 64x64 - 1920x1080 with step 8/8
        [29]: 'EBD8' (Embedded data 8-bit)
                Size: Stepwise 64x64 - 1920x1080 with step 8/8
        [30]: 'SPD6' (Shield pix data 16-bit)
                Size: Stepwise 64x64 - 1920x1080 with step 8/8
        [31]: 'Y12 ' (12-bit Greyscale)
                Size: Stepwise 64x64 - 1920x1080 with step 8/8
        [32]: 'Y10 ' (10-bit Greyscale)
                Size: Stepwise 64x64 - 1920x1080 with step 8/8
</code></pre>
<p dir="auto">Please help</p>
]]></description><link>http://forum.veye.cc/post/3398</link><guid isPermaLink="true">http://forum.veye.cc/post/3398</guid><dc:creator><![CDATA[natzguk]]></dc:creator><pubDate>Fri, 22 Dec 2023 14:49:57 GMT</pubDate></item><item><title><![CDATA[Reply to ROC-RK3588S-PC and IMX462 on Fri, 22 Dec 2023 07:02:03 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/veye_xumm" aria-label="Profile: veye_xumm">@<bdi>veye_xumm</bdi></a></p>
<p dir="auto">It works now! Thank you.</p>
<p dir="auto">Maybe you can update the documentation. <a href="https://wiki.veye.cc/index.php/VEYE_CS_Camera_on_Firfly_Boards" rel="nofollow ugc">https://wiki.veye.cc/index.php/VEYE_CS_Camera_on_Firfly_Boards</a></p>
<p dir="auto">For me it was not clear and I just downloaded the latest image for RK3588S which is v1.0.6f</p>
]]></description><link>http://forum.veye.cc/post/3396</link><guid isPermaLink="true">http://forum.veye.cc/post/3396</guid><dc:creator><![CDATA[natzguk]]></dc:creator><pubDate>Fri, 22 Dec 2023 07:02:03 GMT</pubDate></item><item><title><![CDATA[Reply to ROC-RK3588S-PC and IMX462 on Fri, 22 Dec 2023 02:07:47 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/natzguk" aria-label="Profile: natzguk">@<bdi>natzguk</bdi></a></p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/natzguk" aria-label="Profile: natzguk">@<bdi>natzguk</bdi></a> said in <a href="/post/3392">ROC-RK3588S-PC and IMX462</a>:</p>
<blockquote>
<p dir="auto">ROC-RK3588S-PC_Ubuntu_v1.0.6f_veye_mvcam_vbyone_230830.img</p>
</blockquote>
<p dir="auto">Do not use this image.</p>
<p dir="auto">Use this one：<br />
ROC-RK3588S-PC_Ubuntu_v1.0.4b_221226_veyecam2m.img</p>
]]></description><link>http://forum.veye.cc/post/3393</link><guid isPermaLink="true">http://forum.veye.cc/post/3393</guid><dc:creator><![CDATA[veye_xumm]]></dc:creator><pubDate>Fri, 22 Dec 2023 02:07:47 GMT</pubDate></item></channel></rss>