Spaces:
Running
Running
Sathwikchowdary
commited on
Commit
•
515e3af
1
Parent(s):
47a6659
Update pages/Info_of_Video.py
Browse files- pages/Info_of_Video.py +22 -2
pages/Info_of_Video.py
CHANGED
@@ -49,9 +49,29 @@ st.markdown("<h2 style='text-align: left; color: Black;'>Common Methods Video Pr
|
|
49 |
st.markdown(
|
50 |
"<p style='font-size: 16px; color: White; font-style: italic;'>"
|
51 |
"Reading Videos: cv2.VideoCapture: Opens and reads video files or streams."
|
52 |
-
"
|
53 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
"Apply real-time frame manipulation, such as applying filters or transformations."
|
|
|
|
|
|
|
|
|
|
|
55 |
"Convert video frames to grayscale: cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)"
|
56 |
"</p>",
|
57 |
unsafe_allow_html=True
|
|
|
49 |
st.markdown(
|
50 |
"<p style='font-size: 16px; color: White; font-style: italic;'>"
|
51 |
"Reading Videos: cv2.VideoCapture: Opens and reads video files or streams."
|
52 |
+
"</p>",
|
53 |
+
unsafe_allow_html=True
|
54 |
+
)
|
55 |
+
st.markdown(
|
56 |
+
"<p style='font-size: 16px; color: White; font-style: italic;'>"
|
57 |
+
"Writing Videos: cv2.VideoWriter: Saves video frames into a file."
|
58 |
+
"</p>",
|
59 |
+
unsafe_allow_html=True
|
60 |
+
)
|
61 |
+
st.markdown(
|
62 |
+
"<p style='font-size: 16px; color: White; font-style: italic;'>"
|
63 |
+
"Displaying Video: Use cv2.imshow to display video frames as they are read."
|
64 |
+
"</p>",
|
65 |
+
unsafe_allow_html=True
|
66 |
+
)
|
67 |
+
st.markdown(
|
68 |
+
"<p style='font-size: 16px; color: White; font-style: italic;'>"
|
69 |
"Apply real-time frame manipulation, such as applying filters or transformations."
|
70 |
+
"</p>",
|
71 |
+
unsafe_allow_html=True
|
72 |
+
)
|
73 |
+
st.markdown(
|
74 |
+
"<p style='font-size: 16px; color: White; font-style: italic;'>"
|
75 |
"Convert video frames to grayscale: cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)"
|
76 |
"</p>",
|
77 |
unsafe_allow_html=True
|