Sathwikchowdary commited on
Commit
c9bbaca
·
verified ·
1 Parent(s): fdfbba3

Update pages/Info _of_Image.py

Browse files
Files changed (1) hide show
  1. pages/Info _of_Image.py +3 -2
pages/Info _of_Image.py CHANGED
@@ -155,11 +155,12 @@ with col1:
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
 
 
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() & cv2.split() </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
+ "This function splits a color image into its individual channels (e.g., Blue, Green, Red for RGB images)."
163
+ "</p>",
164
  unsafe_allow_html=True
165
  )
166