-
Notifications
You must be signed in to change notification settings - Fork 45
/
color_spec.m
executable file
·32 lines (30 loc) · 1.95 KB
/
color_spec.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
function [color, marker, line_style] = color_spec()
% -------------------------------------------------------------------------
% Description:
% return color information to plot figures in our paper
%
% Citation:
% A Comparative Study for Single Image Blind Deblurring
% Wei-Sheng Lai, Jia-Bin Huang, Zhe Hu, Narendra Ahuja, and Ming-Hsuan Yang
% IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2016
%
% Contact:
% Wei-Sheng Lai
% wlai24@ucmerced.edu
% University of California, Merced
% -------------------------------------------------------------------------
color = {}; marker = {}; line_style = {};
color{end+1} = [1, 0.5, 39/255]; marker{end+1} = 'o'; line_style{end+1} = '--';
color{end+1} = [0, 1, 0]; marker{end+1} = 'o'; line_style{end+1} = '--';
color{end+1} = [136/255, 0, 21/255]; marker{end+1} = 'o'; line_style{end+1} = '--';
color{end+1} = [1, 0, 1]; marker{end+1} = 'o'; line_style{end+1} = '--';
color{end+1} = [0, 0, 1]; marker{end+1} = 'o'; line_style{end+1} = '--';
color{end+1} = [1, 0, 0]; marker{end+1} = 'o'; line_style{end+1} = '--';
color{end+1} = [0, 162/255, 232/255]; marker{end+1} = 'o'; line_style{end+1} = '--';
color{end+1} = [1, 0.5, 39/255]; marker{end+1} = 's'; line_style{end+1} = '-';
color{end+1} = [0, 1, 0]; marker{end+1} = 's'; line_style{end+1} = '-';
color{end+1} = [136/255, 0, 21/255]; marker{end+1} = 's'; line_style{end+1} = '-';
color{end+1} = [1, 0, 1]; marker{end+1} = 's'; line_style{end+1} = '-';
color{end+1} = [0, 0, 1]; marker{end+1} = 's'; line_style{end+1} = '-';
color{end+1} = [1, 0, 0]; marker{end+1} = 's'; line_style{end+1} = '-';
color{end+1} = [0, 162/255, 232/255]; marker{end+1} = 's'; line_style{end+1} = '-';