markdown works 🥱

This commit is contained in:
Avinal Kumar
2021-01-20 23:43:26 +05:30
committed by GitHub
parent 40e94ed8fc
commit f0634fc197
2 changed files with 19 additions and 21 deletions

View File

@@ -0,0 +1,19 @@
# Digital Image Processing Practices
1. Simple image read and write operations
```python
image = imread("basic.png");
imshow(image)
imwrite(image, "copy.jpeg")
img2 = imread("copy.jpeg");
imshow(img2)
```
## Output
<img src="basic.png" alt="A planet with twilight rings" align=center>

View File

@@ -1,21 +0,0 @@
**********************************
Digital Image Processing Practices
**********************************
1. Simple image read and write operations
.. code-block:: python
image = imread("basic.png");
imshow(image)
imwrite(image, "copy.jpeg")
img2 = imread("copy.jpeg");
imshow(img2)
Output
------
.. figure:: basic.png
:alt: A planet with twilight rings
:align: center