Coding Kalkulus
Coding Kalkulus
jpeg');
>> imtool (L)
>> R = L(:,:,1);
>> G = L(:,:,2);
>> B = L(:,:,3);
>> Red = cat (3,R,G*0,B*0);
>> Green = cat (3,R*0,G,B*0);
>> Blue = cat (3,R*0,G*0,B);
>> figure, imshow (Red);
>> figure, imshow (Green);
>> figure, imshow (Blue);
>> LAKK = imcrop (L,[1 12 50 2]);
>> imshow (LAKK);
>> imtool (LAKK);
>> R = LAKK(:,:,1);
>> G = LAKK(:,:,2);
>> B = LAKK(:,:,3);
>> Red = cat (3,R,G*0,B*0);
>> Green = cat (3,R*0,G,B*0);
>> Blue = cat (3,R*0,G*0,B);
>> figure, imshow (Green)
figure, imshow (Green)
↑
Error: Expression or statement is incorrect--possibly unbalanced (, {, or [.