JariullahSafi
THE_4000X3000 should be lower res than THE_12_MP.
Yep, it's RAM.
You can try tweaking these
/**
* SIPP (Signal Image Processing Pipeline) internal memory pool.
* SIPP is a framework used to schedule HW filters, e.g. ISP, Warp, Median filter etc.
* Changing the size of this pool is meant for advanced use cases, pushing the limits of the HW.
* By default memory is allocated in high speed CMX memory. Setting to 0 will allocate in DDR 256 kilobytes.
* Units are bytes.
*/
void setSippBufferSize(int sizeBytes) {
impl()->setSippBufferSize(sizeBytes);
}
/**
* SIPP (Signal Image Processing Pipeline) internal DMA memory pool.
* SIPP is a framework used to schedule HW filters, e.g. ISP, Warp, Median filter etc.
* Changing the size of this pool is meant for advanced use cases, pushing the limits of the HW.
* Memory is allocated in high speed CMX memory
* Units are bytes.
*/
void setSippDmaBufferSize(int sizeBytes) {
impl()->setSippDmaBufferSize(sizeBytes);
}
Thanks,
Jaka