Spaces:
Sleeping
Sleeping
Update pages/Info _of_Image.py
Browse files- pages/Info _of_Image.py +9 -0
pages/Info _of_Image.py
CHANGED
@@ -154,6 +154,15 @@ with col1:
|
|
154 |
"</p>",
|
155 |
unsafe_allow_html=True
|
156 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
157 |
|
158 |
|
159 |
|
|
|
154 |
"</p>",
|
155 |
unsafe_allow_html=True
|
156 |
)
|
157 |
+
st.markdown("<h3 style='text-align: left; color: Black;'>splitting and merging the image colours </h3>", unsafe_allow_html=True)
|
158 |
+
st.markdown("<h4 style='text-align: left; color: Black;'>cv2.cvtColor() </h4>", unsafe_allow_html=True)
|
159 |
+
st.markdown(
|
160 |
+
"<p style='font-size: 16px; color: White; font-style: italic;'>"
|
161 |
+
"This function is used to convert images from one color space to another. You can convert from RGB to Grayscale, RGB to HSV, and many other color spaces."
|
162 |
+
"</p>",
|
163 |
+
unsafe_allow_html=True
|
164 |
+
)
|
165 |
+
|
166 |
|
167 |
|
168 |
|