Spaces:
Running
Running
Update app.py to add project and fund info
Browse files
app.py
CHANGED
|
@@ -231,17 +231,6 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
|
| 231 |
image_output = gr.Image(
|
| 232 |
type="pil", label="Detection Result", height="auto")
|
| 233 |
|
| 234 |
-
gr.Markdown(
|
| 235 |
-
"""
|
| 236 |
-
---
|
| 237 |
-
### **Reference**
|
| 238 |
-
**Paper Title:** Preliminary Study on Automating Rebar Detection in Reinforced Concrete Structures Using YOLOv11 and GPR Data
|
| 239 |
-
|
| 240 |
-
*Presented at The 13th International Workshop on Advanced Ground Penetrating Radar – IWAGPR2025*
|
| 241 |
-
|
| 242 |
-
**Models and Training Dataset:** [DOI: 10.5281/zenodo.15802541](https://doi.org/10.5281/zenodo.15802541)
|
| 243 |
-
"""
|
| 244 |
-
)
|
| 245 |
|
| 246 |
submit_btn.click(
|
| 247 |
fn=detect_rebars,
|
|
@@ -250,5 +239,38 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
|
| 250 |
outputs=[image_output, status_output]
|
| 251 |
)
|
| 252 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 253 |
if __name__ == "__main__":
|
| 254 |
demo.launch()
|
|
|
|
| 231 |
image_output = gr.Image(
|
| 232 |
type="pil", label="Detection Result", height="auto")
|
| 233 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 234 |
|
| 235 |
submit_btn.click(
|
| 236 |
fn=detect_rebars,
|
|
|
|
| 239 |
outputs=[image_output, status_output]
|
| 240 |
)
|
| 241 |
|
| 242 |
+
|
| 243 |
+
attribution_info = """
|
| 244 |
+
## 📜 Paper Information
|
| 245 |
+
This Space is based on the research presented in our paper for IWAGPR25:
|
| 246 |
+
```bibtex
|
| 247 |
+
@inproceedings{elseicy2025rebar,
|
| 248 |
+
title = {Preliminary Study on Automating Rebar Detection in Reinforced Concrete Structures Using YOLOv11 and GPR Data},
|
| 249 |
+
author = {Elseicy, Ahmed and Solla, Mercedes and Novo, Alexandre},
|
| 250 |
+
year = {2025},
|
| 251 |
+
month = {July},
|
| 252 |
+
booktitle = {2025 13th International Workshop on Advanced Ground Penetrating Radar (IWAGPR)},
|
| 253 |
+
publisher = {IEEE},
|
| 254 |
+
pages = {323--328},
|
| 255 |
+
isbn = {979-8-3315-2335-0},
|
| 256 |
+
issn = {2687-7899}
|
| 257 |
+
}
|
| 258 |
+
```
|
| 259 |
+
## 💾 Dataset Reference
|
| 260 |
+
|
| 261 |
+
The full models and the dataset used in the project are published in Zenodo [DOI: 10.5281/zenodo.16638791](https://doi.org/10.5281/zenodo.16638791).
|
| 262 |
+
|
| 263 |
+
## 💰 Funding Acknowledgement
|
| 264 |
+
|
| 265 |
+
This research and development were made possible through the OVERSIGHT project (PID2022-138526OB-I00) funded by MICIU/AEI/10.13039/501100011033/FEDER, UE.
|
| 266 |
+
Grant PREP2022-000030 for the training of predoctoral researchers funded by MICIU/
|
| 267 |
+
AEI/10.13039/501100011033 and by FSE+.
|
| 268 |
+
M. Solla acknowledges the Grant RYC2019–026604–I funded by MICIU/
|
| 269 |
+
AEI/10.13039/501100011033 and by “ESF Investing in
|
| 270 |
+
your future”.
|
| 271 |
+
"""
|
| 272 |
+
with gr.Accordion("Show Publication Info, Dataset & Funding Details", open=True):
|
| 273 |
+
gr.Markdown(attribution_info)
|
| 274 |
+
|
| 275 |
if __name__ == "__main__":
|
| 276 |
demo.launch()
|