UOMOP

SSIM comparison (MR=75%) 본문

Main/Performance

SSIM comparison (MR=75%)

Happy PinGu 2024. 6. 9. 15:59
% SNR 값
x = [0, 10, 20, 30, 40];

% y축 값
y1 = [0.556, 0.786, 0.895, 0.931, 0.94]; % No masking
y2 = [0.5299, 0.7208, 0.8047, 0.8161, 0.8163]; % Proposed
y3 = [0.53, 0.675, 0.718, 0.735, 0.736]; % Random
y4 = [0.491, 0.62, 0.668, 0.668, 0.67]; % Variance
y5 = [0.509, 0.607, 0.639, 0.65, 0.655]; % Central
y6 = [0.376, 0.446, 0.454, 0.459, 0.462]; % Periphery

% 그래프 그리기
figure;
hold on;
plot(x, y1, '-o', 'DisplayName', 'No masking', 'LineWidth', 2, 'LineStyle', '-');
plot(x, y2, '-p', 'DisplayName', 'Proposed', 'Color', 'r', 'LineWidth', 2, 'LineStyle', '--');
plot(x, y3, '-d', 'DisplayName', 'Random', 'LineWidth', 2, 'LineStyle', '-.');
plot(x, y4, '-^', 'DisplayName', 'Variance', 'LineWidth', 2, 'LineStyle', ':');
plot(x, y5, '-v', 'DisplayName', 'Central', 'LineWidth', 2, 'LineStyle', '-');
plot(x, y6, '-*', 'DisplayName', 'Periphery', 'LineWidth', 2, 'LineStyle', '--');

% 그래프 설정
xlabel('SNR (dB)');
ylabel('SSIM');

legend('show', 'Location', 'southeast');
grid on;
ylim([0 1]);
hold off;

'Main > Performance' 카테고리의 다른 글

SSIM comparison (MR=50%)  (0) 2024.06.09
SSIM comparison (MR=25%)  (0) 2024.06.09
PSNR comparison (MR=75%)  (0) 2024.06.09
PSNR comparison (MR=50%)  (0) 2024.06.09
PSNR comparison (MR = 25%)  (0) 2024.06.09
Comments