LakshmiHarika commited on
Commit
c19fa10
·
verified ·
1 Parent(s): cd9695f

Update pages/Data Collection.py

Browse files
Files changed (1) hide show
  1. pages/Data Collection.py +69 -0
pages/Data Collection.py CHANGED
@@ -1800,7 +1800,76 @@ elif st.session_state.current_page == "image_transformations":
1800
  if st.button("➡️ OpenCV Projects"):
1801
  navigate_to("opencv_projects")
1802
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1803
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1804
 
1805
  #--------------------------------------------------------- Audio--------------------------------------------------------------------------------
1806
 
 
1800
  if st.button("➡️ OpenCV Projects"):
1801
  navigate_to("opencv_projects")
1802
 
1803
+
1804
+ if st.session_state.current_page == "opencv_projects":
1805
+ st.markdown("""
1806
+ <h2 style="color: #BB3385;">OpenCV Projects</h2>
1807
+ """, unsafe_allow_html=True)
1808
+
1809
+ # Project 1: Converting an Image into Tabular Data
1810
+ st.markdown("""
1811
+ <h3 style="color: #5b2c6f;">🔹 Converting an Image into Tabular Data</h3>
1812
+ <p>
1813
+ This project explains how to convert an image into tabular data by extracting pixel values
1814
+ and representing them as structured rows and columns for analysis or machine learning tasks.
1815
+ </p>
1816
+ """, unsafe_allow_html=True)
1817
+ st.markdown("""
1818
+ <a href="https://github.com/lakshmiharikaa34/Machine-Learning/blob/main/Extract%20Images%20to%20Tabular%20Data.ipynb"
1819
+ target="_blank" style="color: #2a52be;">
1820
+ Check out the project on GitHub
1821
+ </a>
1822
+ """, unsafe_allow_html=True)
1823
+
1824
+ # Project 2: Converting a Video into Tabular Data
1825
+ st.markdown("""
1826
+ <h3 style="color: #5b2c6f;">🔹 Converting a Video into Tabular Data</h3>
1827
+ <p>
1828
+ Learn to process videos frame by frame and extract pixel data from each frame.
1829
+ This project demonstrates how to represent video data in a structured tabular format.
1830
+ </p>
1831
+ """, unsafe_allow_html=True)
1832
+ st.markdown("""
1833
+ <a href="https://github.com/lakshmiharikaa34/Machine-Learning/blob/main/Extract%20Videos%20to%20Tabular%20Data.ipynb"
1834
+ target="_blank" style="color: #2a52be;">
1835
+ Check out the project on GitHub
1836
+ </a>
1837
+ """, unsafe_allow_html=True)
1838
 
1839
+ # Project 3: Animation Project
1840
+ st.markdown("""
1841
+ <h3 style="color: #5b2c6f;">🔹 A Tale of Integrity: Finding Money, Choosing Honesty</h3>
1842
+ <p>
1843
+ This animation tells the story of a young boy who finds a bundle of money. Torn between keeping it or doing the right thing,
1844
+ he remembers his grandfather’s words: <em>"True character shines through in moments of choice."</em>
1845
+ He chooses integrity and returns the money to its rightful owner, reminding us all that honesty is priceless.
1846
+ </p>
1847
+ """, unsafe_allow_html=True)
1848
+ st.markdown("""
1849
+ <a href="https://github.com/lakshmiharikaa34/Machine-Learning/blob/main/Animation%20Project.ipynb"
1850
+ target="_blank" style="color: #2a52be;">
1851
+ Check out the animation on GitHub
1852
+ </a>
1853
+ """, unsafe_allow_html=True)
1854
+
1855
+ # Project 4: GIF Project
1856
+ st.markdown("""
1857
+ <h3 style="color: #5b2c6f;">🔹 The Coding Journey: Debugging Woes Turned Joy (GIF)</h3>
1858
+ <p>
1859
+ This humorous and relatable GIF portrays every coder’s struggle: A boy sits at his desk exclaiming,
1860
+ <em>"My code is not working; I don’t know what to do!"</em> Moments later, he joyfully discovers,
1861
+ <em>"It’s working perfectly!"</em> – capturing the emotional highs and lows of debugging.
1862
+ </p>
1863
+ """, unsafe_allow_html=True)
1864
+ st.markdown("""
1865
+ <a href="https://github.com/lakshmiharikaa34/Machine-Learning/blob/main/Giffy.ipynb"
1866
+ target="_blank" style="color: #2a52be;">
1867
+ Check out the GIF on GitHub
1868
+ </a>
1869
+ """, unsafe_allow_html=True)
1870
+
1871
+
1872
+
1873
 
1874
  #--------------------------------------------------------- Audio--------------------------------------------------------------------------------
1875