-
Notifications
You must be signed in to change notification settings - Fork 6
/
rgb.m
343 lines (307 loc) · 7.22 KB
/
rgb.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
% rgb.m: translates a colour from multiple formats into matlab colour format
% type 'rgb demo' to get started
%
% [matlabcolor]=rgb(col)
% matlab colors are in the format [R G B]
%
% if 'col' is a string, it is interpreted as
%
% [[modifier] descriptor] colour_name
%
% where
% modifier is one of (slightly, normal, very, extremely)
% descriptor is one of (light/pale, normal, dark)
% colorname is a name of a colour
% (type 'rgb list' or 'rgb demo' to see them all)
%
% if 'col' is an integer between 0 and &HFFFFFF inclusive,
% it is interpreted as a double word RGB value in the form
% [0][R][G][B]
%
% if 'col' is a negative integer between -1 and -&HFFFFFF
% inclusive, it is interpreted as the complement of a double
% word RGB value in the form [0][B][G][R]
%
% if 'col' is a string of the form 'qbX' or 'qbXX' where X
% is a digit then the number part is interpreted as a qbasic
% color
%
% if 'col' is one of {k,w,r,g,b,y,m,c} a sensible result is
% returned
%
% if 'col' is already in matlab format, it is unchanged
% VERSION: 06/06/2002
% AUTHOR: ben mitch
% CONTACT: [email protected]
% WWW: www.benmitch.co.uk\matlab (not yet)
% LOCATION: figures\colors\
function out=rgb(in)
if isa(in,'char') & length(in)>2 & length(in)<5 & strcmpi('qb',in(1:2))
out=qbcolor(sscanf(in(3:end),'%i'));
elseif isa(in,'char') & length(in)==1
out=translatecolorchar(in);
elseif isa(in,'char')
if strcmp(in,'demo') rgb_demo; return; end
if strcmp(in,'list') rgb_list; return; end
out=translatecolorstring(in);
elseif isa(in,'double') & size(in,1)==1 & size(in,2)==1 & abs(in)<16777216
out=translatecolorRGB(in);
elseif isa(in,'double') & size(in,1)==1 & size(in,2)==3
out=in;
else
warning('Unrecognised color format, black assumed');
out=[0 0 0];
end
function out=translatecolorchar(in)
switch(in)
case 'k', out=[0 0 0];
case 'w', out=[1 1 1];
case 'r', out=[1 0 0];
case 'g', out=[0 1 0];
case 'b', out=[0 0 1];
case 'y', out=[1 1 0];
case 'm', out=[1 0 1];
case 'c', out=[0 1 1];
otherwise
warning(['Unrecognised colour "' in '", black assumed'])
out=[0 0 0];
return;
end
function out=translatecolorstring(in)
args.tokens=rgb_parse(in);
args.N=length(args.tokens);
if args.N>3 warning('Too many words in color description, any more than 3 will be ignored'); end
while(args.N<3)
args.tokens=[{'normal'};args.tokens];
args.N=args.N+1;
end
cols=get_cols;
col=[];
for n=1:size(cols,1)
names=cols{n,1};
for m=1:length(names)
if strcmp(args.tokens{3},names{m}) col=cols{n,2}; break; end
end
if ~isempty(col) break; end
end
if isempty(col)
warning(['Unrecognised colour "' args.tokens{3} '", black assumed'])
out=[0 0 0];
return;
end
switch args.tokens{1}
case 'slightly', fac=0.75;
case 'normal', fac=0.5;
case 'very', fac=0.25;
case 'extremely', fac=0.125;
otherwise
warning(['Unrecognised modifier "' args.tokens{1} '", normal assumed'])
fac=0.5;
end
switch args.tokens{2}
case {'light','pale'}, out=1-(1-col)*fac;
case 'normal', out=col;
case 'dark', out=col*fac;
otherwise
warning(['Unrecognised descriptor "' args.tokens{2} '", normal assumed'])
out=col;
end
function out=translatecolorRGB(in)
BGR=0;
if in<0
in=-in;
BGR=1;
end
b=bytes4(in);
if BGR out=b(4:-1:2); else out=b(2:4); end
function out=qbcolor(in)
% rgb value from basic colour code
% 0-7 are normal, 8-15 are bright
% 0 - black
% 1 - red, 2 - green, 3 - blue
% 4 - cyan, 5 - magenta, 6 - yellow
% 7 - white
bright=0.5;
if in>7 in=in-8; bright=1; end
switch in
case 0, rgb=[0 0 0];
case 1, rgb=[1 0 0];
case 2, rgb=[0 1 0];
case 3, rgb=[0 0 1];
case 4, rgb=[0 1 1];
case 5, rgb=[1 0 1];
case 6, rgb=[1 1 0];
case 7, rgb=[1 1 1];
otherwise
warning('Unrecognised QBasic color, black assumed');
out=[0 0 0];
return;
end
out=rgb*bright;
function tokens=rgb_parse(str)
% parse string to obtain all tokens
% quoted strings count as single tokens
inquotes=0;
intoken=0;
pos=1;
l=length(str);
st=0;
ed=0;
token='';
tab=char(9);
tokens=cell(0);
while(pos<=l)
ch=str(pos);
if inquotes
if ch=='"'
inquotes=0;
tokens={tokens{:} token};
else
token=[token ch];
end
elseif intoken
if ch==' ' | ch==tab
intoken=0;
tokens={tokens{:} token};
elseif ch=='"'
error(['Quote misplace in <' str '>']);
else
token=[token ch];
end
else
if ch==' ' | ch==tab
% do nothing
elseif ch=='"'
token='';
inquotes=1;
else
token=ch;
intoken=1;
end
end
pos=pos+1;
end
if intoken tokens={tokens{:} token}; end
if inquotes error(['Unpaired quotes in <' str '>']); end
tokens=tokens';
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% DEMO
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function rgb_demo
figure(1)
clf
cols = get_cols;
cols = {cols{:,1}}';
cols = { cols{:}, ...
'k', ...
'r', ...
'g', ...
'b', ...
'y', ...
'm', ...
'c', ...
'w', ...
'', ...
'extremely dark green', ...
'very dark green', ...
'dark green', ...
'slightly dark green', ...
'green', ...
'slightly pale green', ...
'pale green', ...
'very pale green', ...
'extremely pale green', ...
};
height=9;
x=0;
y=0;
for n=1:length(cols)
rect(x,y,cols{n})
y=y+1;
if y==height
x=x+2;
y=0;
end
end
if y==0 x=x-2; end
axis([0 (x+2) 0 height])
title('names on different rows are alternates')
function rect(x,y,col)
if isempty(col) return; end
r=rectangle('position',[x+0.1 y+0.1 1.8 0.8]);
col_=col;
if iscell(col) col=col{1}; end
colrgb=rgb(col);
if strcmp(col(1),'u') & length(col)==2
t=text(x+1,y+0.5,{'unnamed',['colour (' col(2) ')']});
set(r,'facecolor',colrgb);
else
t=text(x+1,y+0.5,col_);
set(r,'facecolor',colrgb);
if sum(colrgb)<1.5 set(t,'color',[1 1 1]); end
end
set(t,'horizontalalignment','center')
set(t,'fontsize',10)
function rgb_list
cols=get_cols;
disp(' ')
for n=1:size(cols,1)
code=cols{n,2};
str=cols{n,1};
str_=[];
for m=1:length(str)
str_=[str_ str{m} ', '];
end
str_=str_(1:end-2);
if strcmp(str_(1),'u') & length(str_)==2
str_=['* (' str_(2) ')'];
end
disp([' [' sprintf('%.1f %.1f %.1f',code) '] - ' str_])
end
disp([10 '* colours marked thus are not named - if you know their' 10 ' designation, or if you feel sure a colour is mis-named,' 10 ' email me (address via help) or comment at' 10 ' www.mathworks.com/matlabcentral - "rgb demo" to see them' 10])
function cols=get_cols
cols={
'black', [0 0 0]; ...
'navy', [0 0 0.5]; ...
'blue', [0 0 1]; ...
'u1', [0 0.5 0]; ...
{'teal','turquoise'}, [0 0.5 0.5]; ...
'slateblue', [0 0.5 1]; ...
{'green','lime'}, [0 1 0]; ...
'springgreen', [0 1 0.5]; ...
{'cyan','aqua'}, [0 1 1]; ...
'maroon', [0.5 0 0]; ...
'purple', [0.5 0 0.5]; ...
'u2', [0.5 0 1]; ...
'olive', [0.5 0.5 0]; ...
{'gray','grey'}, [0.5 0.5 0.5]; ...
'u3', [0.5 0.5 1]; ...
{'mediumspringgreen','chartreuse'}, [0.5 1 0]; ...
'u4', [0.5 1 0.5]; ...
'sky', [0.5 1 1]; ...
'red', [1 0 0]; ...
'u5', [1 0 0.5]; ...
{'magenta','fuchsia'}, [1 0 1]; ...
'orange', [1 0.5 0]; ...
'u6', [1 0.5 0.5]; ...
'u7', [1 0.5 1]; ...
'yellow', [1 1 0]; ...
'u8', [1 1 0.5]; ...
'white', [1 1 1]; ...
};
for n=1:size(cols,1)
if ~iscell(cols{n,1}) cols{n,1}={cols{n,1}}; end
end
% converts a DWORD into a four byte row vector
function out=bytes4(in)
out=[0 0 0 0];
if in<0 | in>(2^32-1)
warning('DWORD out of range, zero assumed');
return;
end
N=4;
while(in>0)
out(N)=mod(in,256);
in=(in-out(N))/256;
N=N-1;
end