aieye/face_recognition_tutorial
0
1import streamlit as st2from utils.levels import complete_level, initialize_level, render_page, get_level3from utils.login import initialize_login4 5initialize_login()6initialize_level()7 8LEVEL = 09 10def intro_page():11 st.header("Face Recognition")12 st.subheader("Introduction")13 14 st.write(15 """16 Welcome to the interactive tutorial on creating your very own Face Recognition Application!17 """18 )19 20 st.image(21 "https://static.wixstatic.com/media/abb909_35aa4b27e4b840659a20fd69f0a18354~mv2.gif",22 use_column_width=True,23 )24 25 st.write(26 """27 In this tutorial, you will learn how to build a simple application that can detect and recognise faces from a given photo. Face recognition has revolutionized28 various industries, including security, entertainment, and personal identification. Are you ready to dive into the exciting world of face recognition?29 """30 )31 32 st.info(f"Click on the button below to start the tutorial!")33 34 if st.button("I am Ready!"):35 complete_level(LEVEL)36 37 38render_page(intro_page, LEVEL)39 