Spaces:
Sleeping
Sleeping
Update pages/Info _of_Image.py
Browse files- pages/Info _of_Image.py +13 -1
pages/Info _of_Image.py
CHANGED
@@ -183,4 +183,16 @@ with col1:
|
|
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:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
)
|