minor fix
Browse files
app.py
CHANGED
|
@@ -128,7 +128,7 @@ def measure_molar(image_file):
|
|
| 128 |
# Load model and images
|
| 129 |
model = keras.models.load_model(MODEL_PATH)
|
| 130 |
images = os.listdir(IMAGE_DIR)
|
| 131 |
-
images = [f'{IMAGE_DIR}/image' for image in images]
|
| 132 |
|
| 133 |
# UserInterface
|
| 134 |
st.header("3rdMolar Segmentation")
|
|
|
|
| 128 |
# Load model and images
|
| 129 |
model = keras.models.load_model(MODEL_PATH)
|
| 130 |
images = os.listdir(IMAGE_DIR)
|
| 131 |
+
images = [f'{IMAGE_DIR}/{image}' for image in images]
|
| 132 |
|
| 133 |
# UserInterface
|
| 134 |
st.header("3rdMolar Segmentation")
|