RidgeRun / NVIDIA-Jetson-IMX708-RPIV3

NVIDIA Jetson IMX708 RPI V3 camera driver
10 stars 4 forks source link

Will you implement ohter modes but 4608x2592px/14fps? #5

Open s-tory opened 1 year ago

s-tory commented 1 year ago

Hi, thank you very much for coding good drivers!

Resolutions and framerates 4608x2592 @ 14fps

Will you implement other modes but 4608x2592px/14fps?

Mode examples = My wishings

  1. 4608x2592px/No binned/Full of View/14fps <- Implemented yet.
  2. 3840x2160px/No binned/Center Rectangle of Image/-30fps
  3. 2304x1296px/2x2 binned/FoV/30-60fps
  4. 1920x1080px/2x2 binned/Center RoI/60-fps
  5. 1920x1080px/No binned/Center RoI/60-fps
  6. etc...

Known references

Regards.

alfredpchacon commented 1 year ago

Hi @s-tory ,

You're very welcome, and we appreciate your kind words about our drivers.

To answer your question, we can develop all those resolutions and framerates for you if you want! Please contact us to get support from the sales department. We will be more than glad to create the drivers that fit perfectly with your projects, we hope to hear from you soon!

s-tory commented 1 year ago

Thank you for your reply!

Do you need some cost to add a capture mode? Sorry, we cannot use any proprietary (NOT free) codes. So, I wish that this repo's driver has been added any other modes.

Thanks.

alfredpchacon commented 1 year ago

Hi @s-tory,

This code is free to access, the code is given as it is. For any other modes, you must contact us to give you further help to add more characteristics, like modes or controls.

Have a great weekend!

TobidieTopfpflanze commented 1 year ago

Thank you for your reply!

Do you need some cost to add a capture mode? Sorry, we cannot use any proprietary (NOT free) codes. So, I wish that this repo's driver has been added any other modes.

Thanks.

One of your resources provides already the driver sources for his IMX708 implementation: https://github.com/uzuna/jetson-imx708

A closer look at the code shows 3 camera mode register maps: https://github.com/uzuna/jetson-imx708/blob/main/imx708/kernel/nvidia/drivers/media/i2c/imx708_mode_tbls.h#L419-L421

    [IMX708_MODE_4608x2592_14FPS] = imx708_mode_4608x2592_14fps,
    [IMX708_MODE_2304x1296_30FPS] = imx708_mode_2304x1296_30fps,
    [IMX708_MODE_1536x864_120FPS] = imx708_mode_1536x864_120fps,

I haven't tried if it works, because I am using my own implementation for this sensor.