How to plot complete 3D RGB color space (gamut) in matlab?
7 次查看(过去 30 天)
显示 更早的评论
How to plot all the available RGB colors' gamut plot in matlab?
(The below plot is exactly what I wish to draw)
0 个评论
回答(1 个)
jonas
2020-8-22
vert = [0 0 0;1 0 0;1 1 0;0 1 0;0 0 1;1 0 1;1 1 1;0 1 1];
fac = [1 2 6 5;2 3 7 6;3 4 8 7;4 1 5 8;1 2 3 4;5 6 7 8];
colormap(vert)
patch('Vertices',vert,'Faces',fac,...
'FaceVertexCData',vert,'FaceColor','interp')
3 个评论
Image Analyst
2020-8-26
Click on the little popup rotation tool above the upper right corner of the image and then click and drag in the image to rotate the cube.
jonas
2020-8-27
What IA said. Alternatively you could add this:
view(3)
axis equal
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Red 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!