📄 colordistplot.m
字号:
function color = ColorDistPlot(cb, cr)% plot the chromatic color distribution of the imagechroma = zeros(256);cb = round(cb);cr = round(cr);for i = 1:length(cb) chroma(cb(i), cr(i)) = chroma(cb(i), cr(i)) + 1;endsurf(chroma)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -