rgb2hsv conversion
can any one tell me what does each matrix of
rgb2hsv in matlab represent.
does h value represent value in radians.
what...
13 years 前 | 1 个回答 | 0
1
个回答
提问
how to declare array of variable size
Hi,
I need an array of variable size. for example
for i: 1:63
myArray(i) = zeros(a,b);
end
where a,b are changing its valu...
13 years 前 | 1 个回答 | 0
1
个回答
提问
how to generate hsv color and hsv range
Hi,
I want to generate hsv color automatically.
The process is i have a matrix
color=zeros([10,10,3],'double');
i want...
13 years 前 | 1 个回答 | 0
1
个回答
提问
matrix to rgb conversion
When we write
i=imread('test.jpg');
if test.jpg is a colored image then
it returns us i as a 3D matrix.
if we write
...