• Jetson Nano B01 MV IMX264

    Jetson App Software
    7
    0 Votes
    7 Posts
    4k Views
    veye_xummV
    @otca I will continue discussing that issue with you in the other post.
  • mv-mipi-sc130m在Xavier nx上无法

    VEYE MIPI camera
    3
    2
    0 Votes
    3 Posts
    1k Views
    O
    Did u solve it ??? Iam using jetson nano B01 Devkit I have exact problem like u : [image: 1725393713979-1b047cd6-2fcf-43d5-a62e-ded2c5ab38de-image.png]
  • CS-MIPI-IMX307 Serdes适配求助

    CS MIPI camera
    7
    0 Votes
    7 Posts
    4k Views
    F
    @veye_xumm 感谢感谢
  • 0 Votes
    18 Posts
    7k Views
    veye_xummV
    @leibnitz 是的,qv4l2拿到图像,进行转码,搬移,预览,做了很多工作。整个pipeline的冗长和软件效率的问题导致预览无法达到相机的输出能力。 用下面https://wiki.veye.cc/index.php/Mv_series_camera_appnotes_4_jetson/zh#.E5.B8.A7.E7.8E.87.E7.BB.9F.E8.AE.A1 7.3.2 帧率统计 的命令来统计一下实际相机输出的帧率。
  • 相机运行一段时间后出现阻塞

    VEYE MIPI camera
    15
    0 Votes
    15 Posts
    6k Views
    veye_xummV
    @lin 相机触发模式出图和流模式出图,对你的程序接收图像而言,没有区别啊!
  • RK3568 GC8034 相机预览画面异常绿屏

    Rockchip App camera
    4
    1
    0 Votes
    4 Posts
    3k Views
    J
    @scroll 您好,我使用其他的相机,遇到了和您一样的问题,请问您解决了吗?
  • 0 Votes
    4 Posts
    3k Views
    veye_xummV
    @fancong 请参考: https://github.com/veyeimaging/nvidia_jetson_veye_bsp/releases/tag/v1.29
  • IMX462M pixelformat on RPi5

    Machine Vision camera
    24
    1
    0 Votes
    24 Posts
    16k Views
    A
    @alex_ai said in IMX462M pixelformat on RPi5: I need wait for clear sky to test and provide feedback Finally tested, for gain value 20 it is looks pretty same with color sensor with ISP, but background no so black as for color sensor. For me this issue resolved, attached examples to compare (10 seconds stacks) IMX462 mono [image: 1723360275505-imx462m_small.jpg] IMX462 color with ISP [image: 1723360306335-imx462c_small.jpg]
  • MIPI-VEYE462 menu on screen display

    VEYE MIPI camera
    4
    3
    0 Votes
    4 Posts
    1k Views
    veye_xummV
    @oleg This link provides a reference for workarounds to this problem. Camera menu appears on VEYE-MIPI-IMX327S However, I'm curious why this issue occurs so frequently on your end. Could you please measure the SCL level using an oscilloscope? When the VEYE module is not configured, SCL should always remain high. If there are frequent and continuous level changes, it indicates that the system is operating on the I2C bus. [image: 1722838648747-430b65cc-ea10-47f9-ae2a-42c02f3119eb-bddd9a7161c7e66c0648f1da3766162.png]
  • VEYE-MIPI-MX462 day/night switch

    General Discussion
    2
    0 Votes
    2 Posts
    2k Views
    veye_xummV
    @egor Sorry, I think the accurate way to do this now is still through an external sensor like a photocell.
  • Can't select 25Hz framerate on MIPI IMX462

    VEYE MIPI camera
    2
    0 Votes
    2 Posts
    635 Views
    veye_xummV
    @carrot said in Can't select 25Hz framerate on MIPI IMX462: Please try this: sudo ./veye_mipi_i2c.sh -w -f videoformat -p1 PAL -b 9 gst-launch-1.0 nvv4l2camerasrc device=/dev/video0 ! "video/x-raw(memory:NVMM),format=(string)UYVY,width=(int)1920,height=(int)1080" ! nvvidconv ! "video/x-raw(memory:NVMM),format=(string)I420" ! fpsdisplaysink video-sink=fakesink -v
  • 相机采集图像阻塞

    VEYE MIPI camera
    37
    0 Votes
    37 Posts
    17k Views
    T
    @veye_xumm 请问FPGA和RK3588直连,没有I2C,怎么在设备树里添加相机?相机驱动又该怎样处理?
  • IMX462 拍摄的小短片

    VEYE MIPI camera
    1
    0 Votes
    1 Posts
    520 Views
    No one has replied
  • 0 Votes
    1 Posts
    638 Views
    No one has replied
  • 0 Votes
    7 Posts
    3k Views
    W
    @nb 您好,我遇到了类似的问题,请问一下您的解决方案就是将4.6的opencv更换成4.2的opencv吗?
  • ADP-N1-V2.0板载咨询

    CS MIPI camera
    5
    0 Votes
    5 Posts
    3k Views
    F
    @veye_xumm 感谢感谢,谢谢楼主指点
  • MV IMX 287 多相机12bit录制问题

    General Discussion
    2
    0 Votes
    2 Posts
    2k Views
    veye_xummV
    @etherealhorizon 使用mv_mipi_i2c.sh脚本,只是直接写入了摄像头寄存器,配置了摄像头的数据格式,但是v4l2驱动中并未得到通知。建议你采用v4l2-ctl配置相机关于相机分辨率,帧率,数据格式的参数。 比如用下面这个脚本测测看。 export WIDTH=704 export HEIGHT=544 export FPS=319 v4l2-ctl --set-ctrl roi_x=0 v4l2-ctl --set-ctrl roi_y=0 v4l2-ctl --set-fmt-video=width=$WIDTH,height=$HEIGHT,pixelformat=XY12 v4l2-ctl --set-ctrl frame_rate=$FPS v4l2-ctl --set-fmt-video=width=$WIDTH,height=$HEIGHT,pixelformat=XY12 --stream-mmap --stream-count=1000 -d /dev/video0 --verbose --stream-to=test1.raw
  • MV-MIPI-130M throw V-by-one

    Machine Vision camera
    6
    0 Votes
    6 Posts
    3k Views
    veye_xummV
    @dan Please try this image. export I2C_BUS=7 export WIDTH=1280 export HEIGHT=1024 export FPS=108 media-ctl -d /dev/media0 --set-v4l2 '"m00_b_mvcam '"$I2C_BUS"'-003b":0[fmt:Y8_1X8/'"$WIDTH"'x'"$HEIGHT"'@1/'"$FPS"']' v4l2-ctl -d /dev/video0 --set-fmt-video=width=$WIDTH,height=$HEIGHT,pixelformat=GREY --stream-mmap --stream-count=-1 --stream-to=/dev/null [image: 1721129322062-93427bda-d9b6-4263-be24-30aac77b3df5-image.png]
  • 3568上加载AR0234M

    VEYE MIPI camera
    9
    1
    0 Votes
    9 Posts
    2k Views
    veye_xummV
    @lin 应该还是设备树配置的问题。
  • 0 Votes
    4 Posts
    3k Views
    veye_xummV
    @sqf121 这个问题已经解决,请参考一下github上的更新。 https://github.com/veyeimaging/raspberrypi_v4l2