Nikhithapotnuru commited on
Commit
5263d2f
Β·
verified Β·
1 Parent(s): 8499562

Update Home.py

Browse files
Files changed (1) hide show
  1. Home.py +23 -15
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
- - Transformation are of two types:
11
- 1. Affine Transformation
12
- 2. Non-Affine Transformation.""")
 
 
13
 
14
  st.header("πŸ” Why Use Image Augmentation?")
15
 
16
- st.markdown(""" - **Prevents overfitting** by exposing the model to varied inputs.
17
- - Improves generalization to unseen data.
18
- - Simulates real-world variability (e.g., rotation, lighting changes, noise).""")
 
 
19
 
20
  st.header("πŸŒ€πŸ“πŸ”€ What is Affine Transformation")
21
 
22
- st.markdown(""" - Preserved parallelsim between the lines.
23
- - Sometimes the angles are preserved.""")
 
 
24
 
25
  st.header(":red[Types Of Affine Transformation]")
26
 
27
- st.markdown(""" 1. Translation(Shifting)
28
- 2. Rotation
29
- 3. Fliping
30
- 4. Scaling
31
- 5. Cropping
32
- 6. Shearing(Stretching) """)
 
 
 
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
+ """)