sree4411 commited on
Commit
9166b7b
·
verified ·
1 Parent(s): 5efeb0b

Update pages/3_Life Cycle Of ML Project.py

Browse files
pages/3_Life Cycle Of ML Project.py CHANGED
@@ -184,7 +184,7 @@ elif st.session_state.page == "unstructured_data":
184
  # """, language='python')
185
 
186
  # Button to Navigate to Introduction to Image
187
- if st.button("Introduction to Image"):
188
  st.session_state.page = "Introduction_to_image"
189
 
190
  # ----------------- Introduction to Image -----------------
@@ -266,7 +266,7 @@ if st.session_state.page == "Introduction_to_image":
266
  """)
267
 
268
  # Button for navigating to the next section
269
- if st.button("Operations Using OpenCV"):
270
  st.session_state.page = "operations_using_opencv"
271
 
272
  # Button for navigating back
@@ -350,7 +350,7 @@ elif st.session_state.page == "operations_using_opencv":
350
  """)
351
 
352
  ##Navigation Button
353
- if st.button("Conversion of Images"):
354
  st.session_state.page = "Conversion_of_Images"
355
 
356
  # Navigation Button
@@ -476,7 +476,7 @@ elif st.session_state.page == "Conversion_of_Images":
476
 
477
 
478
  # Navigation Button
479
- if st.button("Video capture and explanation"):
480
  st.session_state.page = "Video_capture_and_explanation"
481
 
482
  # Navigation Button
@@ -486,7 +486,7 @@ elif st.session_state.page == "Conversion_of_Images":
486
 
487
  #---------VIDEO CAPTURE AND EXPLANATION OF CV2.WAITKEY-----------
488
 
489
- elif st.session_state.page == "Video_capture_and_explanation_page":
490
 
491
  st.header("🎥 Video Capture with `cv2.VideoCapture()`")
492
 
@@ -600,7 +600,7 @@ This explanation provides both the purpose and practical use cases of `cv2.Video
600
 
601
 
602
  # Navigation Button
603
- if st.button("Affine Transformation Matrix"):
604
  st.session_state.page = "Affine_Transformation_Matrix"
605
 
606
  # Navigation Button
@@ -620,7 +620,7 @@ This explanation provides both the purpose and practical use cases of `cv2.Video
620
 
621
 
622
 
623
- elif st.session_state.page == "affine_transformation_matrix":
624
  # Header for Affine Transformation Matrix
625
  st.header("Affine Transformation Matrix")
626
 
 
184
  # """, language='python')
185
 
186
  # Button to Navigate to Introduction to Image
187
+ if st.button(":blue[Introduction to Image]"):
188
  st.session_state.page = "Introduction_to_image"
189
 
190
  # ----------------- Introduction to Image -----------------
 
266
  """)
267
 
268
  # Button for navigating to the next section
269
+ if st.button(":blue[Operations Using OpenCV]"):
270
  st.session_state.page = "operations_using_opencv"
271
 
272
  # Button for navigating back
 
350
  """)
351
 
352
  ##Navigation Button
353
+ if st.button(":blue[Conversion of Images]"):
354
  st.session_state.page = "Conversion_of_Images"
355
 
356
  # Navigation Button
 
476
 
477
 
478
  # Navigation Button
479
+ if st.button(":blue[Video capture and explanation]"):
480
  st.session_state.page = "Video_capture_and_explanation"
481
 
482
  # Navigation Button
 
486
 
487
  #---------VIDEO CAPTURE AND EXPLANATION OF CV2.WAITKEY-----------
488
 
489
+ elif st.session_state.page == "Video_capture_and_explanation":
490
 
491
  st.header("🎥 Video Capture with `cv2.VideoCapture()`")
492
 
 
600
 
601
 
602
  # Navigation Button
603
+ if st.button(":blue[Affine Transformation Matrix]"):
604
  st.session_state.page = "Affine_Transformation_Matrix"
605
 
606
  # Navigation Button
 
620
 
621
 
622
 
623
+ elif st.session_state.page == "Affine_Transformation_Matrix":
624
  # Header for Affine Transformation Matrix
625
  st.header("Affine Transformation Matrix")
626