Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ehzawad
Created September 7, 2020 05:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ehzawad/0fcdc379d36719cf3cb788dc86cb14ca to your computer and use it in GitHub Desktop.
Save ehzawad/0fcdc379d36719cf3cb788dc86cb14ca to your computer and use it in GitHub Desktop.
I_m1_1 = imread('10_random_saliency.png');
I_m1_2 = imread('27_random_saliency.png');
I_m2_1 = imread('10_Covsal.png');
I_m2_2 = imread('27_Covsal.png');
I_m3_1 = imread('10_LARK.png');
I_m3_2 = imread('27_LARK.png');
I_m4_1 = imread('10_UMH.png');
I_m4_2 = imread('27_UMH.png');
I_m5_1 = imread('10_s_TD.png');
I_m5_2 = imread('27_s_TD.png');
I_m6_1 = imread('10_s_ASD.png');
I_m6_2 = imread('27_s_ASD.png');
subplot(2, 6, 1);
imshow(I_m1_1);
title('random surround');
subplot(2, 6, 2);
imshow(I_m2_1);
title('CovSal');
subplot(2, 6, 3);
imshow(I_m3_1);
title('LARK');
subplot(2, 6, 4);
imshow(I_m4_1);
title('UMH');
subplot(2, 6, 5);
imshow(I_m5_1);
title('TD');
subplot(2, 6, 6);
imshow(I_m6_1);
title('ASD');
subplot(2, 6, 7);
imshow(I_m1_2);
title('random surround');
subplot(2, 6, 8);
imshow(I_m2_2);
title('CovSal');
subplot(2, 6, 9);
imshow(I_m3_2);
title('LARK');
subplot(2, 6, 10);
imshow(I_m4_2);
title('UMH');
subplot(2, 6, 11);
imshow(I_m5_2);
title('TD');
subplot(2, 6, 12);
imshow(I_m6_2);
title('ASD');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment