| import streamlit as st
|
| from picchange import img_cryptography
|
| from stegnography import steganography_function
|
| from detection import steganography_detection
|
|
|
|
|
| st.sidebar.title("IMAGENIAS")
|
| st.sidebar.write("Choose a feature to proceed:")
|
|
|
|
|
| crypto_button = st.sidebar.button("Crypto")
|
| stego_button = st.sidebar.button("Steganography")
|
| detect_button = st.sidebar.button("Detection")
|
|
|
|
|
| st.title("IMAGNIAS: Image Processing Toolkit")
|
|
|
|
|
| if crypto_button:
|
| st.write("### Crypto Functionality")
|
| img_cryptography()
|
| elif stego_button:
|
| st.write("### Steganography Functionality")
|
| steganography_function()
|
| else:
|
| steganography_detection()
|
|
|
|
|