Measure distance/length and position from a single photo. By vanishing points: Vanishing points lie in a particular line called the horizon. Connecting these vanishing points gives you information whether the camera is tilted or not with respect to the ground floor, and also an idea about where the camera centerContinue Reading

An Orthogonal matrix is indicated with the letter Q, and each of its column’s has a magnitude(norm) of 1,  and each pair of its column’s are pairwise orthogonal(have a 0 dot product). <Q1,Q2>=Trans(Q).Q = I  –> Which means that if column Q1 is the same as column Q2 the dotContinue Reading

transpose(A)(b-Ax) = 0 (The zero vector because b-Ax is a vector) The above equals: transpose(A)(b) – transpose(A)Ax =0 transpose(A)(b) = transpose(A)Ax If the matrix is full column rank or of course full rank we can multiply the left inverse of transpose(A)A and get the identity matrix.   (transpose(A)A)¯¹*transpose(A)Ax   =  (transpose(A)A)¯¹*transpose(A)(b) Which leaves usContinue Reading

A square matrix that is not invertible is called singular or degenerate. A square matrix is singular if and only if its determinant is 0. The easiest way to compute the inverse of a matrix is using the formula of RREF, where you augment the matrix with it’s identity andContinue Reading

The Null space of a matrix is the set of vectors which post multiplying column wise or pre multiplying row wise produce the  zero vector, and are not the trivial zero vector themselves. The set of all Vectors basis coefficients * lambda = λ*v = the set of all vectorsContinue Reading