How to calculate the angular error
조회 수: 15 (최근 30일)
이전 댓글 표시
The angular error ε is defined as the angular distance between the algorithm’s estimate of the light source (ee) and the true illuminant vector (el) in normalized
ε= Cos -1(el . ee ) this is the formula for calculation of angular error
This is the formula for calculate the angular error please give the code for that
thanking you
댓글 수: 0
채택된 답변
Roger Stafford
2013년 8월 2일
Apparently you have two 3D vectors, each of unit magnitude, el and ee, and you wish to find the angle between them. One formula would be:
e = acos(dot(el,ee));
which gives e in radians. Another formula is:
e = atan2(norm(cross(el,ee)),dot(el,ee));
which also gives e in radians. Furthermore it doesn't require that el and ee have unit magnitude. It is more accurate when e is near 0 or pi where the 'acos' function suffers larger rounding errors.
댓글 수: 3
Roger Stafford
2013년 8월 3일
편집: Roger Stafford
2013년 8월 3일
No, Jan, I think it is a badly copied minus one superscript and refers to the inverse of the cosine function. It is the only thing that makes sense here.
Jan
2013년 8월 15일
Thanks, Roger. I've said already, that I agree that your suggestion make sense. But now your explanation where the minus comes from is such obvious that I cannot understand, why it was not clear to me initially.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Point Cloud Processing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!