Spaces:
Sleeping
Sleeping
Update Home.py
Browse files
Home.py
CHANGED
|
@@ -6,27 +6,35 @@ st.header("What is Augmented Image")
|
|
| 6 |
|
| 7 |
st.markdown(""" It is a techinque by using which we can apply a geometrical transform to create a **Augmented Image**
|
| 8 |
**Image Augmentation** is a technique used in computer vision and deep learning to artificially expand the size and diversity of a training dataset by applying various transformations to existing images.
|
| 9 |
-
This helps improve the robustness and generalization ability of models, especially when the amount of labeled data is limited.
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
|
|
|
|
|
|
| 13 |
|
| 14 |
st.header("π Why Use Image Augmentation?")
|
| 15 |
|
| 16 |
-
st.markdown("""
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
| 19 |
|
| 20 |
st.header("πππ What is Affine Transformation")
|
| 21 |
|
| 22 |
-
st.markdown("""
|
| 23 |
-
|
|
|
|
|
|
|
| 24 |
|
| 25 |
st.header(":red[Types Of Affine Transformation]")
|
| 26 |
|
| 27 |
-
st.markdown("""
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
|
|
|
|
|
|
|
|
| 6 |
|
| 7 |
st.markdown(""" It is a techinque by using which we can apply a geometrical transform to create a **Augmented Image**
|
| 8 |
**Image Augmentation** is a technique used in computer vision and deep learning to artificially expand the size and diversity of a training dataset by applying various transformations to existing images.
|
| 9 |
+
This helps improve the robustness and generalization ability of models, especially when the amount of labeled data is limited.""")
|
| 10 |
+
st.markdown("""
|
| 11 |
+
- Transformation are of two types:
|
| 12 |
+
1. Affine Transformation
|
| 13 |
+
2. Non-Affine Transformation.
|
| 14 |
+
""")
|
| 15 |
|
| 16 |
st.header("π Why Use Image Augmentation?")
|
| 17 |
|
| 18 |
+
st.markdown("""
|
| 19 |
+
- **Prevents overfitting** by exposing the model to varied inputs.
|
| 20 |
+
- Improves generalization to unseen data.
|
| 21 |
+
- Simulates real-world variability (e.g., rotation, lighting changes, noise).
|
| 22 |
+
""")
|
| 23 |
|
| 24 |
st.header("πππ What is Affine Transformation")
|
| 25 |
|
| 26 |
+
st.markdown("""
|
| 27 |
+
- Preserved parallelsim between the lines.
|
| 28 |
+
- Sometimes the angles are preserved.
|
| 29 |
+
""")
|
| 30 |
|
| 31 |
st.header(":red[Types Of Affine Transformation]")
|
| 32 |
|
| 33 |
+
st.markdown("""
|
| 34 |
+
1. Translation(Shifting)
|
| 35 |
+
2. Rotation
|
| 36 |
+
3. Fliping
|
| 37 |
+
4. Scaling
|
| 38 |
+
5. Cropping
|
| 39 |
+
6. Shearing(Stretching)
|
| 40 |
+
""")
|