File size: 403 Bytes
6233336 |
1 2 3 4 5 6 7 8 9 10 |
import streamlit as st
def home_page():
st.title("eKYC using Computer Vision")
st.write("""
Welcome to the eKYC application! This project consists of two main modules:
1. **Data Extraction**: Upload an image of a CNIC card to extract data.
2. **Face Comparison**: Upload an image of a CNIC card and another image of the person to verify if they match.
""")
|