1.) First Matlab Example - Loading & Saving Images
1.) First Matlab Example - Loading & Saving Images
B = double(A); B(:,:,3) = 3*B(:,:,3); B = uint8(B); imshow(B); To save your new blue image, use the imwrite command. imwrite(B, 'new_image.jpg', 'jpg');