Hi ,
If i am trying to save the captured image from ov2710 using a application in Android 6 ,image is saving,but no size and only white color is coming in saved image ...Please help me??
Solved! Go to Solution.
Hello Ayyappadas,
See below, please!
(1) OV2710 outputs 10bit RAW RGB data.
According to OV2710 datasheet, it only supports 10bit RAW RGB data, not support JPEG stream.
(2) I.MX6/7 serials Processor
There is no ISP module in I.MX6/7 processor, so it requires camera should have ISP function.
If you use a camera with RAW data output, mxc_v4l2_caputre driver can normally receive data, but it doesn't do subsequent processing.
(3) RAW data to YUV
Actually , you can do data conversion from RAW to YUV data after capturing image in software, but we don't have ready-made source code for it, you will have to do it by yourself.
Have a nice day!
TIC Weidong Sun
Hello Ayyappadas,
See below, please!
(1) OV2710 outputs 10bit RAW RGB data.
According to OV2710 datasheet, it only supports 10bit RAW RGB data, not support JPEG stream.
(2) I.MX6/7 serials Processor
There is no ISP module in I.MX6/7 processor, so it requires camera should have ISP function.
If you use a camera with RAW data output, mxc_v4l2_caputre driver can normally receive data, but it doesn't do subsequent processing.
(3) RAW data to YUV
Actually , you can do data conversion from RAW to YUV data after capturing image in software, but we don't have ready-made source code for it, you will have to do it by yourself.
Have a nice day!
TIC Weidong Sun
Thankyou Weidong Sun . I will follow your Method