Sathwikchowdary commited on
Commit
b3df844
·
verified ·
1 Parent(s): 536ee00

Update pages/Info _of_Image.py

Browse files
Files changed (1) hide show
  1. pages/Info _of_Image.py +4 -2
pages/Info _of_Image.py CHANGED
@@ -110,7 +110,7 @@ st.markdown("5. destroyAllWindows()")
110
 
111
  # Buttons for each stage
112
  st.markdown("###")
113
- col1, col2, col3 = st.columns(3)
114
 
115
  with col1:
116
  if st.button("Color Space"):
@@ -125,7 +125,9 @@ with col1:
125
  st.markdown("This model is often used in graphic design and image processing, as it aligns more closely with how humans perceive color. It allows for easier manipulation of color through hue (the type of color), saturation (the intensity), and value (brightness).")
126
  st.markdown("Each color space is suited for different applications, depending on the medium and technology used. Choosing the correct color space is crucial for ensuring that colors appear as intended, whether you're working with digital graphics, web design, or printed materials.")
127
  st.markdown("<h2 style='text-align: left; color: Black;'>Splitting and Merging the Image Colors</h2>", unsafe_allow_html=True)
128
-
 
 
129
  if st.button("Video Creation"):
130
  st.markdown("Video creation is used to generate a video from images or frames")
131
 
 
110
 
111
  # Buttons for each stage
112
  st.markdown("###")
113
+ col1 = st.columns(1)
114
 
115
  with col1:
116
  if st.button("Color Space"):
 
125
  st.markdown("This model is often used in graphic design and image processing, as it aligns more closely with how humans perceive color. It allows for easier manipulation of color through hue (the type of color), saturation (the intensity), and value (brightness).")
126
  st.markdown("Each color space is suited for different applications, depending on the medium and technology used. Choosing the correct color space is crucial for ensuring that colors appear as intended, whether you're working with digital graphics, web design, or printed materials.")
127
  st.markdown("<h2 style='text-align: left; color: Black;'>Splitting and Merging the Image Colors</h2>", unsafe_allow_html=True)
128
+ st.markdown("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.")
129
+ st.markdown("cv2.cvtColor()")
130
+ st.markdown("cv2.split()")
131
  if st.button("Video Creation"):
132
  st.markdown("Video creation is used to generate a video from images or frames")
133