Spaces:
Sleeping
Sleeping
Update pages/Info _of_Image.py
Browse files- pages/Info _of_Image.py +9 -33
pages/Info _of_Image.py
CHANGED
@@ -80,6 +80,15 @@ st.markdown(
|
|
80 |
unsafe_allow_html=True
|
81 |
)
|
82 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
83 |
st.markdown("<h2 style='text-align: left; color: Black;'>Basic Operations in IMAGE</h2>", unsafe_allow_html=True)
|
84 |
st.markdown(
|
85 |
"<p style='font-size: 16px; color: White; font-style: italic;'>"
|
@@ -163,36 +172,3 @@ with col1:
|
|
163 |
"</p>",
|
164 |
unsafe_allow_html=True
|
165 |
)
|
166 |
-
|
167 |
-
if st.button("Video"):
|
168 |
-
st.markdown("<h2 style='text-align: left; color: Black;'>What is Video</h2>", unsafe_allow_html=True)
|
169 |
-
st.markdown(
|
170 |
-
"<p style='font-size: 16px; color: White; font-style: italic;'>"
|
171 |
-
"A video is a series of images (called frames) displayed sequentially at a certain speed, or frame rate, to create the illusion of motion. Videos can be captured through cameras, created by animation software, or generated from other digital sources."
|
172 |
-
"</p>",
|
173 |
-
unsafe_allow_html=True
|
174 |
-
)
|
175 |
-
st.markdown("<h2 style='text-align: left; color: Black;'>Converting Images into Videos</h2>", unsafe_allow_html=True)
|
176 |
-
st.markdown(
|
177 |
-
"<p style='font-size: 16px; color: White; font-style: italic;'>"
|
178 |
-
"Converting images into a video involves displaying a sequence of images (frames) in rapid succession to create the effect of motion. The key steps include"
|
179 |
-
"</p>",
|
180 |
-
unsafe_allow_html=True
|
181 |
-
)
|
182 |
-
st.markdown(
|
183 |
-
"<p style='font-size: 16px; color: White; font-style: italic;'>"
|
184 |
-
"Frame Rate: The number of frames shown per second (fps). Standard rates include 24 fps for cinema, 30 fps for TV, and 60 fps for high-definition videos."
|
185 |
-
"Resolution: The size of each frame (e.g., 1920x1080 pixels). All frames in a video must have the same resolution."
|
186 |
-
"Encoding: Video files are often compressed using encoding formats like H.264 or VP9 to reduce file sizes."
|
187 |
-
"</p>",
|
188 |
-
unsafe_allow_html=True
|
189 |
-
)
|
190 |
-
|
191 |
-
if st.button("Affine Methods"):
|
192 |
-
st.markdown("<h2 style='text-align: left; color: Black;'>Affine Transformations</h2>", unsafe_allow_html=True)
|
193 |
-
st.markdown(
|
194 |
-
"<p style='font-size: 16px; color: White; font-style: italic;'>"
|
195 |
-
"Affine transformations are a set of geometric transformations that preserve parallelism of lines, including translation, scaling, rotation, and shearing."
|
196 |
-
"</p>",
|
197 |
-
unsafe_allow_html=True
|
198 |
-
)
|
|
|
80 |
unsafe_allow_html=True
|
81 |
)
|
82 |
|
83 |
+
# Adding a link to Jupyter
|
84 |
+
st.markdown(
|
85 |
+
"<p style='font-size: 16px; color: White;'>"
|
86 |
+
"For more information on Jupyter, visit the official website: "
|
87 |
+
"<a href='https://jupyter.org' target='_blank' style='color: #FFD700;'>Jupyter</a>"
|
88 |
+
"</p>",
|
89 |
+
unsafe_allow_html=True
|
90 |
+
)
|
91 |
+
|
92 |
st.markdown("<h2 style='text-align: left; color: Black;'>Basic Operations in IMAGE</h2>", unsafe_allow_html=True)
|
93 |
st.markdown(
|
94 |
"<p style='font-size: 16px; color: White; font-style: italic;'>"
|
|
|
172 |
"</p>",
|
173 |
unsafe_allow_html=True
|
174 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|