Update pages/LIFE_CYCLE_OF_MACHINE_LEARNING.py
Browse files
pages/LIFE_CYCLE_OF_MACHINE_LEARNING.py
CHANGED
@@ -539,6 +539,8 @@ def Video_capture_and_explanation_page():
|
|
539 |
- cv2.destroyAllWindows(): Closes all OpenCV windows to free up resources.
|
540 |
""")
|
541 |
|
|
|
|
|
542 |
##----------##
|
543 |
|
544 |
st.header("⏱️ cv2.waitKey() for Key Event Handling")
|
@@ -631,6 +633,15 @@ This explanation provides both the purpose and practical use cases of `cv2.Video
|
|
631 |
if st.button("Back to Data Collection"):
|
632 |
st.session_state.page = "data_collection"
|
633 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
634 |
|
635 |
# ----- AFFINE TRANSFORMATION MATRIX -----
|
636 |
|
|
|
539 |
- cv2.destroyAllWindows(): Closes all OpenCV windows to free up resources.
|
540 |
""")
|
541 |
|
542 |
+
|
543 |
+
|
544 |
##----------##
|
545 |
|
546 |
st.header("⏱️ cv2.waitKey() for Key Event Handling")
|
|
|
633 |
if st.button("Back to Data Collection"):
|
634 |
st.session_state.page = "data_collection"
|
635 |
|
636 |
+
|
637 |
+
if st.button("View GitHub Project"):
|
638 |
+
st.markdown(
|
639 |
+
'<a href="https://github.com/Vamshi-183/Animation_project_using_opencv" target="_blank">'
|
640 |
+
'<button style="background-color:#4CAF50; color:white; padding:10px 20px; border:none; border-radius:5px; font-size:16px;">Go to GitHub Project</button>'
|
641 |
+
'</a>',
|
642 |
+
unsafe_allow_html=True
|
643 |
+
)
|
644 |
+
|
645 |
|
646 |
# ----- AFFINE TRANSFORMATION MATRIX -----
|
647 |
|