Tool/software:
Hi,
According to the Mesh Lens Distortion Correction (Mesh LDC) documentation, the mesh LUT must have a row alignment of 16-bytes. I understand that the length of each row of the Mesh must be padded with '0' to reach a 16-byte aligned length.
1. Question: Is it also the case for the height of the Mesh LUT?
----------------
2. Also, I just would like to validate this method:
- meshWidth = ceil( (W / 2^m) + 1); // example: 441
- align16Bytes(meshWidth) // meshWidth = 448
- fill up with data from 0 to ceil( (W / 2^m) + 1) for every row
- fill up with padding ('0') from ceil( (W / 2^m) + 1) to meshWidth (now 448)
Thank you!