I am reading the source code of opencv about the function initUndistortRectifyMapComputer.
I am confused about the below codes, what does vecTilt(2) represent , I think vec3d type has no () member functions.
Vec3d vecTilt = matTilt*cv::Vec3d(xd, yd, 1);
double invProj = vecTilt(2) ? 1./vecTilt(2) : 1;