This commit is contained in:
avinal
2021-01-20 23:31:31 +05:30
parent bae7955d3b
commit 024ccc6435

View File

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