You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
streamlit
pix2tex
Pillow
torch
# اختيار مصدر الصورة: إما رفع ملف أو التقاط صورة بالكاميرا
source = st.radio("اختر طريقة إدخال الصورة:", ("رفع ملف", "التقاط صورة"))
if source == "رفع ملف":
img_file = st.file_uploader("ارفع صورة المعادلة", type=['png', 'jpg', 'jpeg'])
else:
img_file = st.camera_input("التقط صورة للمعادلة")
#40