Hi,
I know this demo,but I try it with my RAW photo,it can not convert the correct YUV,my RAW photo is capture by Raw12bit output camera and the RAW data only has grey info V4L2 format is Y12,does softISP support it?Which API can convert it?
Thanks
for capture raw 12bits data from ISI, you need to configure ISI to raw16 first, Bit13~LSB(Bit 13~Bit 2): 0b00DD DDDD DDDD DD00, right shift 2 bit to get RAW12: 0b0000 DDDD DDDD DDDD, then ISP can handle this data to conversion
Hello,
Does the right shift 2 bit operation can be take by GPU side(have any API)?
If it is no,it needs to use CPU running then If we use the Raw12 camera output data and do image processing
convert to YUV in real time,it will cost much CPU resource,we don't want this,how to do the right shift 2 bit
and do not use CPU?GPU can or not?
Thanks