codes added

This commit is contained in:
avinal
2021-01-20 23:15:35 +05:30
parent 28c7557614
commit 0ae2856abc
2 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
**********************************
Digital Image Processing Practices
**********************************
1. Simple image read and write operations
.. literalinclude:: basic.m
:language: matlab
**Output**
.. image:: basic.png
:alt: A planet with twilight rings
:align: center

View File

@@ -0,0 +1,6 @@
image = imread("basic.png");
imshow(image)
imwrite(image, "copy.jpeg")
img2 = imread("copy.jpeg");
imshow(img2)