Hi.
-
S10.5 is fixed pointer representation of a 16-bit number used to represent our motion vectors. MSB specifies the sign bit of the flow vector, Next 10 bits specify the integer value of the flow vector.
And Last 5 bits represents fractional value of the flow vector. Note that, though we are using 5 bits for fractional value, we only support quarter pixel precision. It means, of the 5 available bits, only 2 bits are used.
A simple article explaining fixed-point representation and conversion: http://www-inst.eecs.berkeley.edu/~cs61c/sp06/handout/fixedpt.html -
8-bit content means: each channel has a bit depth of 8 bits. This applies to all input formats supported by NVOF API. Just FYI, NVOF API supports Y8, NV12 and A8B8G8R8.
-
4x4 grid size means a square block of 4x4 pixels. Assume the below image to have 16x16 pixels. Each square is a grid(of size 4x4).
Thanks.