how to obtain rms error
이전 댓글 표시
Please tell me how to calculate the rms error in image registration?
채택된 답변
추가 답변 (1개)
Daniel Shub
2012년 10월 11일
편집: Daniel Shub
2012년 10월 11일
Just to be a little bit difference. If you have the DSP system toolbox you can do
step(dsp.RMS('Dimension', 'all'), x)
where x is your error signal. So in the case of two imagines (image1 and image2)
image1 = randn(128);
image2 = randn(128);
x = image1-image2;
댓글 수: 6
Image Analyst
2012년 10월 11일
Would x = cat(3, image1, image2)?
Daniel Shub
2012년 10월 11일
IA what?
Image Analyst
2012년 10월 11일
He has two images, say image1 and image2 where image1 is the reference image and another image that is the misaligned one. He has attempted to "fix" (register) by aligning it with image1 and that "registered" image is image2. Where would those two images go into your formula?
Daniel Shub
2012년 10월 11일
I got it, dsp.RMS calculates the RMS of an n-d signal. So to get the RMS error, x needs to be the error signal. In the case of two images x is the difference between the images.
Ishara Nipuni
2019년 1월 25일
I calculated the RMS value of my image registration algorithm by using your code. But I can't understand how to do a validation for my registration algorithm with th RMS value. Can you tell me please how can I com to conclusions about the accuracy of my registration algorithm with the use of RMS values?
Ishara Nipuni
2019년 1월 25일
I calculated the RMS value with getting the same image as image1 and image2. But the value was not zero. But I think that it should be zero. Can you please explain me about it?
카테고리
도움말 센터 및 File Exchange에서 Geometric Transformation and Image Registration에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!