Navigation

    VEYE IMAGING Forum

    • Register
    • Login
    • Search
    • Categories
    • Tags
    • Recent
    • Popular
    • Users
    • WIKI
    • veye.cc
    1. Home
    2. General Discussion
    Log in to post
    • Newest to Oldest
    • Oldest to Newest
    • Most Posts
    • Most Votes
    • V

      This topic is deleted!
      • veye_7

      1
      0
      Votes
      1
      Posts
      2
      Views

      No one has replied

    • I

      UNSOLVED RAW-MIPI-SC53M maximum exposure length
      • Izaak

      2
      0
      Votes
      2
      Posts
      2114
      Views

      veye_xumm

      @izaak In fact, in the Video streaming mode, it is impossible to achieve an exposure time of 1 second. I conducted a test in the 2 - lane raw8 format, as follows:

      pi@raspberrypi:~/mvcamera/mv_tools_rpi $ ./mv_mipi_i2c_new.sh -w fps 0.01 w fps 0.01 pi@raspberrypi:~/mvcamera/mv_tools_rpi $ ./mv_mipi_i2c_new.sh -r fps r fps is 3.48 fps pi@raspberrypi:~/mvcamera/mv_tools_rpi $ ./mv_mipi_i2c_new.sh -w metime 1000000 w manual exp time is 1000000 us pi@raspberrypi:~/mvcamera/mv_tools_rpi $ ./mv_mipi_i2c_new.sh -r exptime r current exptime is 287129 us

      It can be achieved in Pulse Trigger Mode. However, due to the excessive accumulated dark current, the signal noise will be very high. I don't think it has practical value.

    • E

      SOLVED 多相机硬触发同步,时间戳的数值是否可以直接对应
      • EtherealHorizon

      5
      0
      Votes
      5
      Posts
      624
      Views

      E

      @veye_xumm 好的,感谢

    • E

      SOLVED VEYE-MIPI-MX462 day/night switch
      • Egor

      2
      0
      Votes
      2
      Posts
      596
      Views

      veye_xumm

      @egor Sorry, I think the accurate way to do this now is still through an external sensor like a photocell.

    • E

      SOLVED MV IMX 287 多相机12bit录制问题
      • EtherealHorizon

      2
      0
      Votes
      2
      Posts
      520
      Views

      veye_xumm

      @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
    • E

      SOLVED IMX 287 opencv python多线程多相机硬触发帧率下降
      • EtherealHorizon

      9
      0
      Votes
      9
      Posts
      1523
      Views

      veye_xumm

      @etherealhorizon

      @etherealhorizon said in IMX 287 opencv python多线程多相机硬触发帧率下降:

      最后是用python多进程为每个相机分别subprocess运行v4l2-ctl命令行然后读取--stream-mmap --verbose的时间戳

      这个时间戳不够准确,如果你的算法对事件准确性要求不高,也可以先这样用。

      @etherealhorizon said in IMX 287 opencv python多线程多相机硬触发帧率下降:

      还想请教一下怎么做real time binning,就是实时地将2x2或者4x4的像素值求和再保存,我们的c水平比较烂哈哈。

      这个我们也缺乏实际经验。不好意思。

    • N

      VEYE website from US. Too many redirects.
      • newleaf

      3
      0
      Votes
      3
      Posts
      1802
      Views

      veye_xumm

      @newleaf By upgrading wordpress I think I have solved the problem, please try again.

    • D

      SOLVED MV-MIPI-IMX296硬触发模式下opencv无法读取图像
      • Danny

      5
      0
      Votes
      5
      Posts
      1001
      Views

      D

      @veye_xumm 好的,感谢解答。

    • -

      SOLVED MV-MIPI-SC130m 检测不到摄像头
      • -LLL

      51
      0
      Votes
      51
      Posts
      7839
      Views

      veye_xumm

      @lll 是的。本质上是修改对应的寄存器即可。

    • W

      SOLVED MV-MIPI-IMX296M 修改ISP参数保存
      修改并保存isp参数信息 • • WackyRabbits

      5
      0
      Votes
      5
      Posts
      1044
      Views

      J

      @wackyrabbits said in MV-MIPI-IMX296M 修改ISP参数保存:

      @veye_xumm
      Thanks for answering the above question. Please also answer the following questions:

      Are the Enable/Disable values ​​of the three parameters gammaenable, dpcenable, and lutenable such that enable is 1 and disable is 0? Is the value range of the gamma parameter (0, 4.0] ( Range (0,4.0], accurate is 0.01.), modify the gamma parameter value, but the screen does not respond. The current pixelformat is UYVY. If you want the gamma parameter to be effective, do you need to adjust the pixelformat to Mono8?
      Certainly! Here are the responses:

      Generally, in software or systems, the convention for enabling or disabling parameters often follows a pattern where 'enable' is represented by 1 and 'disable' is represented by 0. However, it's essential to refer to the specific documentation or guidelines for the software or system you're working with, as conventions can vary across different platforms or contexts.

      The gamma parameter typically ranges from 0.01 to 4.0, inclusive. It seems that you're modifying the gamma parameter within the specified range, but the screen doesn't respond. Changing the pixel format to Mono8 might be necessary for the gamma parameter to take effect, especially if the current pixel format (UYVY) doesn't support gamma adjustments. Some pixel formats may not support certain image processing functionalities, so switching to a compatible format like Mono8 could enable the gamma parameter to function as intended. Always refer to the software or hardware documentation for specific details on parameter compatibility and functionality within different pixel formats to ensure the desired adjustments take effect.

    • A

      SOLVED IMX662
      • alex_ai

      2
      0
      Votes
      2
      Posts
      732
      Views

      veye_xumm

      @alex_ai Sorry, we currently don't have plans to proceed with the development of this sensor.

    • M

      SOLVED IMX273 or IMX252
      • mca312

      5
      0
      Votes
      5
      Posts
      924
      Views

      veye_xumm

      @mca312 OK

    • M

      SOLVED IMX287 FPS
      • mca312

      2
      0
      Votes
      2
      Posts
      733
      Views

      veye_xumm

      @mca312 said in IMX287 FPS:

      The FPS is listed at 319 but the sensor supports 523. Can I set the ADC bit to 8 to achieve this? 319 is for 12 bit.

      We have achieved a frame rate of 720×544 @ 530fps RAW8 in our new firmware version.
      https://wiki.veye.cc/index.php/MV-MIPI-IMX287M_Data_Sheet

      @mca312 said in IMX287 FPS:

      I would also like to mount a CS lens or an M12 lens. What is the dimension needed for the lens mount?

      Feel free to provide a note when placing your order, and we'd be happy to gift you an M12 holder.
      Regarding CS lenses, unfortunately, they are not supported at the moment. We have a C-MOUNT01 which is compatible with C-mount lenses. You will need to purchase it separately.

    • R

      UNSOLVED Build source from FPDlink VEYE IMX327s camera
      • red

      2
      0
      Votes
      2
      Posts
      600
      Views

      veye_xumm

      @red Pls refer to this link:
      https://wiki.veye.cc/index.php/VEYE_CS_Camera_source_for_Jetson

    • M

      SOLVED Open.HD and Smaller form factor MIPI Camera
      • MacDaddyFPV

      5
      0
      Votes
      5
      Posts
      1139
      Views

      N

      @macdaddyfpv Hi VEYE Team and community, I'm a developer working on the Open.HD project and I've made great progress in integrating the new single board cameras. I've also added some settings changes to the UI. However, the size of these cameras can be a limitation for some users. Are there any plans to develop smaller-sized cameras, or perhaps a smaller multiboard solution? This could be a valuable addition for our project. Thanks for your excellent work!

      [SRD-STATUS-CHECK] to share your thoughts and suggestions.

    • N

      This topic is deleted!
      • Noah Romeo21

      1
      0
      Votes
      1
      Posts
      6
      Views

      No one has replied

    • W

      MV-MIPI-IMX296M 使用raw8视频流触发,获取画面不清晰
      • WackyRabbits

      5
      0
      Votes
      5
      Posts
      929
      Views

      W

      @veye_xumm
      好的,您推测的正确的,我们这边在研究研究

    • W

      SOLVED MV-MIPI-IMX296M 修改imgdir参数值,设备重启后无法保存设置后的参数
      • WackyRabbits

      12
      0
      Votes
      12
      Posts
      1435
      Views

      veye_xumm

      @wackyrabbits 我私信你

    • W

      SOLVED MV_MIPI_IMX296M 如何提高画面的对比度
      • WackyRabbits

      6
      0
      Votes
      6
      Posts
      958
      Views

      veye_xumm

      @wackyrabbits 不客气,如果只是提高亮度,可以简单配置一下aatarget这个参数即可。

    • D

      SOLVED Please advise compatible mono camera
      • desperex

      15
      0
      Votes
      15
      Posts
      2400
      Views

      D

      @veye_xumm Thanks!