Home | History | Annotate | Download | only in src

Lines Matching refs:imgVectors

145     float *imgVectors = pObject->img_vecs;
154 imgVectors[i] = imagePoints[i + 1].x - imagePoints[0].x;
155 imgVectors[N + i] = imagePoints[i + 1].y - imagePoints[0].y;
173 old = imgVectors[i];
174 imgVectors[i] = imagePoints[i + 1].x * tmp - imagePoints[0].x;
176 diff = MAX( diff, (float) fabs( imgVectors[i] - old ));
178 old = imgVectors[N + i];
179 imgVectors[N + i] = imagePoints[i + 1].y * tmp - imagePoints[0].y;
181 diff = MAX( diff, (float) fabs( imgVectors[N + i] - old ));
193 rotation[3*i+j] /*[i][j]*/ += invMatrix[j * N + k] * imgVectors[i * N + k];