This commit is contained in:
avinal
2021-01-20 23:30:52 +05:30
parent f281b51435
commit bae7955d3b

View File

@@ -4,8 +4,14 @@ Digital Image Processing Practices
1. Simple image read and write operations
.. include:: basic.m
:code: matlab
.. code-block:: matlab
image = imread("basic.png");
imshow(image)
imwrite(image, "copy.jpeg")
img2 = imread("copy.jpeg");
imshow(img2)
**Output**