Update pages/3_Life Cycle Of ML Project.py
Browse files
pages/3_Life Cycle Of ML Project.py
CHANGED
|
@@ -313,7 +313,7 @@ elif st.session_state.page == "operations_using_opencv":
|
|
| 313 |
```python
|
| 314 |
cv2.imshow(window_name, image)
|
| 315 |
```
|
| 316 |
-
**Requirements:**
|
| 317 |
- Call `cv2.waitKey()` to keep the window open until a key is pressed.
|
| 318 |
- Call `cv2.destroyAllWindows()` to close the window(s).
|
| 319 |
**Behavior:**
|
|
@@ -355,6 +355,12 @@ elif st.session_state.page == "operations_using_opencv":
|
|
| 355 |
if st.button(":blue[Conversion of Images]"):
|
| 356 |
st.session_state.page = "Conversion_of_Images"
|
| 357 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 358 |
# Navigation Button
|
| 359 |
if st.button("Back to Data Collection"):
|
| 360 |
st.session_state.page = "data_collection"
|
|
@@ -481,8 +487,11 @@ elif st.session_state.page == "Conversion_of_Images":
|
|
| 481 |
if st.button(":blue[Video capture and explanation]"):
|
| 482 |
st.session_state.page = "Video_capture_and_explanation"
|
| 483 |
|
|
|
|
|
|
|
|
|
|
| 484 |
# Navigation Button
|
| 485 |
-
if st.button("Back to Data Collection"):
|
| 486 |
st.session_state.page = "data_collection"
|
| 487 |
|
| 488 |
|
|
@@ -607,7 +616,9 @@ This explanation provides both the purpose and practical use cases of `cv2.Video
|
|
| 607 |
|
| 608 |
st.link_button(":blue[HitHub project Link]","https://github.com/Jayasree417/Animation-Using-Open-CV")
|
| 609 |
|
| 610 |
-
|
|
|
|
|
|
|
| 611 |
# Navigation Button
|
| 612 |
if st.button(":red[Back to Data Collection]"):
|
| 613 |
st.session_state.page = "data_collection"
|
|
@@ -682,7 +693,7 @@ elif st.session_state.page == "Affine_Transformation_Matrix":
|
|
| 682 |
|
| 683 |
|
| 684 |
if st.button(":blue[Back to Unstructured Collection]"):
|
| 685 |
-
st.session_state.page = "
|
| 686 |
|
| 687 |
if st.button(":red[Back to Data Collection]"):
|
| 688 |
st.session_state.page = "data_collection"
|
|
|
|
| 313 |
```python
|
| 314 |
cv2.imshow(window_name, image)
|
| 315 |
```
|
| 316 |
+
**":blue[Requirements]":**
|
| 317 |
- Call `cv2.waitKey()` to keep the window open until a key is pressed.
|
| 318 |
- Call `cv2.destroyAllWindows()` to close the window(s).
|
| 319 |
**Behavior:**
|
|
|
|
| 355 |
if st.button(":blue[Conversion of Images]"):
|
| 356 |
st.session_state.page = "Conversion_of_Images"
|
| 357 |
|
| 358 |
+
if st.button(":blue[Back to operations_using_opencv]"):
|
| 359 |
+
st.session_state.page = "operations_using_opencv"
|
| 360 |
+
|
| 361 |
+
if st.button(":blue[Back to Unstructured Collection]"):
|
| 362 |
+
st.session_state.page = "unstructured_data"
|
| 363 |
+
|
| 364 |
# Navigation Button
|
| 365 |
if st.button("Back to Data Collection"):
|
| 366 |
st.session_state.page = "data_collection"
|
|
|
|
| 487 |
if st.button(":blue[Video capture and explanation]"):
|
| 488 |
st.session_state.page = "Video_capture_and_explanation"
|
| 489 |
|
| 490 |
+
if st.button(":blue[Back to Unstructured Collection]"):
|
| 491 |
+
st.session_state.page = "unstructured_data"
|
| 492 |
+
|
| 493 |
# Navigation Button
|
| 494 |
+
if st.button(":red[Back to Data Collection]"):
|
| 495 |
st.session_state.page = "data_collection"
|
| 496 |
|
| 497 |
|
|
|
|
| 616 |
|
| 617 |
st.link_button(":blue[HitHub project Link]","https://github.com/Jayasree417/Animation-Using-Open-CV")
|
| 618 |
|
| 619 |
+
if st.button(":blue[Back to Unstructured Collection]"):
|
| 620 |
+
st.session_state.page = "unstructured_data"
|
| 621 |
+
|
| 622 |
# Navigation Button
|
| 623 |
if st.button(":red[Back to Data Collection]"):
|
| 624 |
st.session_state.page = "data_collection"
|
|
|
|
| 693 |
|
| 694 |
|
| 695 |
if st.button(":blue[Back to Unstructured Collection]"):
|
| 696 |
+
st.session_state.page = "unstructured_data"
|
| 697 |
|
| 698 |
if st.button(":red[Back to Data Collection]"):
|
| 699 |
st.session_state.page = "data_collection"
|