Add markdown.
Browse files
app.py
CHANGED
@@ -503,6 +503,19 @@ if uploaded_file is not None:
|
|
503 |
st.error(f"Error generating Grad-CAM: {e}")
|
504 |
|
505 |
st.write("All of the AI Model and Cloud Data can be integrated in one web platform through Streamlit, so that radiologists can diagnose and store medical image data easily, quickly, accurately and securely and the problems previously can be solved.")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
506 |
|
507 |
model_detection = load_model_detection()
|
508 |
|
|
|
503 |
st.error(f"Error generating Grad-CAM: {e}")
|
504 |
|
505 |
st.write("All of the AI Model and Cloud Data can be integrated in one web platform through Streamlit, so that radiologists can diagnose and store medical image data easily, quickly, accurately and securely and the problems previously can be solved.")
|
506 |
+
st.markdown("""
|
507 |
+
**Overview**
|
508 |
+
- Image Enhancement
|
509 |
+
- Invert
|
510 |
+
- High Pass
|
511 |
+
- Unsharp Masking
|
512 |
+
- Histogram Equalization
|
513 |
+
- CLAHE
|
514 |
+
- GradCAM
|
515 |
+
- Object Detection
|
516 |
+
|
517 |
+
Feel free to upload your own image.
|
518 |
+
""")
|
519 |
|
520 |
model_detection = load_model_detection()
|
521 |
|