How to write Mean Square Error, Value in text file.
조회 수: 1 (최근 30일)
이전 댓글 표시
Hello Everyone..
I have dataset of image 5000. i want to check performance parameter of these images by MSE (Mean Square Error), PSNR, SSIM. so how can i write value of every MSE, PSNR or SSIM in text file or excel file or notepad. I need MATLAB code for this.
please Help
Thankuuu.
댓글 수: 0
채택된 답변
Image Analyst
2019년 4월 29일
Here's a start:
fid = fopen(fileName);
fprintf(fid, 'MSE = %f\nSNR = %f\nSSIM = %f\n', theMSE, thePSNR, theSSIM);
fclose(fid);
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!