UOMOP

DE dim = 256 본문

DE/Performance

DE dim = 256

Happy PinGu 2024. 8. 20. 16:24
% 데이터 입력
SNR = [40, 30, 20, 10, 0];

deep = [26.248, 25.997, 24.505, 21.318, 17.638];
Ori = [25.945, 25.63, 24.138, 21.506, 17.799];
MR_33 = [25.107, 24.855, 23.646, 21.461, 18.165];
MR_65 = [24.548, 24.33, 23.257, 21.058, 17.79];
MR_75 = [23.362, 23.221, 22.419, 20.533, 17.56];

% 그래프 그리기
figure;
hold on;


plot(SNR, Ori, '-s', 'DisplayName', 'Lv.1 transmission (Original image)', 'LineWidth', 2);
plot(SNR, MR_33, '-^', 'DisplayName', 'Lv.2 transmission (77% selection)', 'LineWidth', 2);
plot(SNR, MR_65, '-v', 'DisplayName', 'Lv.3 transmission (57% selection)', 'LineWidth', 2);
plot(SNR, MR_75, '-d', 'DisplayName', 'Lv.4 transmission (39% selection)', 'LineWidth', 2);
plot(SNR, deep, '--ko', 'DisplayName', 'Benchmark (DeepJSCC)', 'LineWidth', 2, 'MarkerFaceColor', 'k');

% 축 및 레이블 설정
xlabel('SNR (dB)');
ylabel('PSNR (dB)');
legend('show', 'Location', 'southwest');
xticks([0 10 20 30 40]);
ylim([0 40]);
grid on;
hold off;

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

Performance graph  (0) 2024.08.26
Lv.4 Dynamic encoder (Proposed, TopK, Random) performance  (0) 2024.08.26
Dynamic encoder performance  (0) 2024.08.20
Performance (Patch size = 1)  (0) 2024.08.08
Performance (Patch size = 2)  (0) 2024.08.08
Comments