Spaces:
Sleeping
Sleeping
File size: 8,998 Bytes
e0fdb55 f17ccd4 e0fdb55 f17ccd4 e0fdb55 f17ccd4 e0fdb55 f17ccd4 e0fdb55 f17ccd4 e0fdb55 f17ccd4 e0fdb55 f17ccd4 e0fdb55 f17ccd4 e0fdb55 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 |
import streamlit as st
from transformers import ViTForImageClassification, ViTImageProcessor
from PIL import Image
import torch
import json
# Embedded knowledge base
KNOWLEDGE_BASE = {
"spalling": [
{
"severity": "High",
"description": "Severe concrete spalling with exposed reinforcement",
"repair_method": ["Remove damaged concrete", "Clean exposed reinforcement", "Apply rust inhibitor", "Apply bonding agent", "Patch with repair mortar"],
"estimated_cost": "High ($5,000-$10,000)",
"timeframe": "2-3 weeks",
"location": "Column/Beam",
"required_expertise": "Structural Engineer",
"immediate_action": "Area isolation and temporary support if structural",
"prevention": "Regular maintenance, waterproofing, proper concrete cover"
},
{
"severity": "Medium",
"description": "Surface spalling without exposed reinforcement",
"repair_method": ["Remove loose concrete", "Clean surface", "Apply repair mortar", "Surface treatment"],
"estimated_cost": "Medium ($2,000-$5,000)",
"timeframe": "1-2 weeks",
"location": "Non-structural elements",
"required_expertise": "Concrete Repair Specialist",
"immediate_action": "Mark affected areas and monitor",
"prevention": "Surface coating, regular inspections"
}
],
"reinforcement_corrosion": [
{
"severity": "Critical",
"description": "Advanced corrosion with significant section loss",
"repair_method": ["Install temporary support", "Remove damaged concrete", "Replace/supplement reinforcement", "Apply corrosion inhibitor", "Reconstruct concrete cover"],
"estimated_cost": "Very High ($15,000+)",
"timeframe": "3-4 weeks",
"location": "Primary structural elements",
"required_expertise": "Structural Engineer, Specialist Contractor",
"immediate_action": "Immediate area evacuation and temporary support",
"prevention": "Waterproofing, crack sealing, chloride protection"
}
],
"structural_crack": [
{
"severity": "High",
"description": "Load-bearing element cracks >3mm",
"repair_method": ["Structural assessment", "Crack injection with epoxy", "External reinforcement if needed", "Monitor crack progression"],
"estimated_cost": "High ($8,000-$15,000)",
"timeframe": "2-3 weeks",
"location": "Load-bearing walls/beams",
"required_expertise": "Structural Engineer",
"immediate_action": "Install crack gauges, temporary support",
"prevention": "proper design, load management, movement joints"
}
],
"dampness": [
{
"severity": "Medium",
"description": "Persistent moisture penetration",
"repair_method": ["Identify water source", "Install drainage system", "Apply waterproofing membrane", "Improve ventilation"],
"estimated_cost": "Medium ($3,000-$7,000)",
"timeframe": "1-2 weeks",
"location": "Walls, floors",
"required_expertise": "Waterproofing Specialist",
"immediate_action": "Improve ventilation, dehumidification",
"prevention": "Proper drainage, regular maintenance of water systems"
}
],
"no_damage": [
{
"severity": "Low",
"description": "No visible structural issues",
"repair_method": ["Regular inspection", "Preventive maintenance", "Document condition"],
"estimated_cost": "Low ($500-$1,000)",
"timeframe": "1-2 days",
"location": "General structure",
"required_expertise": "Building Inspector",
"immediate_action": "Continue regular maintenance",
"prevention": "Maintain inspection schedule"
}
]
}
DAMAGE_TYPES = {
0: {'name': 'spalling', 'risk': 'High'},
1: {'name': 'reinforcement_corrosion', 'risk': 'Critical'},
2: {'name': 'structural_crack', 'risk': 'High'},
3: {'name': 'dampness', 'risk': 'Medium'},
4: {'name': 'no_damage', 'risk': 'Low'}
}
@st.cache_resource
def load_model():
model = ViTForImageClassification.from_pretrained(
"google/vit-base-patch16-224",
num_labels=len(DAMAGE_TYPES),
ignore_mismatched_sizes=True
)
processor = ViTImageProcessor.from_pretrained("google/vit-base-patch16-224")
return model, processor
def analyze_damage(image, model, processor):
image = image.convert('RGB')
inputs = processor(images=image, return_tensors="pt")
outputs = model(**inputs)
probs = torch.nn.functional.softmax(outputs.logits, dim=1)[0]
return probs
def main():
st.set_page_config(
page_title="Structural Damage Analyzer",
page_icon="ποΈ",
layout="wide",
initial_sidebar_state="expanded"
)
# Custom CSS
st.markdown("""
<style>
.main {
padding: 2rem;
}
.stProgress > div > div > div > div {
background-image: linear-gradient(to right, #ff6b6b, #f06595);
}
.damage-card {
padding: 1.5rem;
border-radius: 0.5rem;
background: #f8f9fa;
margin-bottom: 1rem;
}
</style>
""", unsafe_allow_html=True)
col1, col2, col3 = st.columns([1, 3, 1])
with col2:
st.title("ποΈ Structural Damage Analyzer")
st.markdown("### Upload a photo of structural damage for instant analysis")
model, processor = load_model()
upload_col1, upload_col2, upload_col3 = st.columns([1, 2, 1])
with upload_col2:
uploaded_file = st.file_uploader("Choose an image file", type=['jpg', 'jpeg', 'png'])
if uploaded_file:
image = Image.open(uploaded_file)
analysis_col1, analysis_col2 = st.columns(2)
with analysis_col1:
st.image(image, caption="Uploaded Structure", use_column_width=True)
with analysis_col2:
with st.spinner("π Analyzing structural damage..."):
predictions = analyze_damage(image, model, processor)
st.markdown("### π Damage Assessment Results")
for idx, prob in enumerate(predictions):
confidence = float(prob) * 100
if confidence > 15:
damage_type = DAMAGE_TYPES[idx]['name']
cases = KNOWLEDGE_BASE[damage_type]
st.markdown(f"""
<div class="damage-card">
<h4>{damage_type.replace('_', ' ').title()} Detected</h4>
</div>
""", unsafe_allow_html=True)
col1, col2 = st.columns([3, 1])
with col1:
st.progress(confidence / 100)
with col2:
st.write(f"Confidence: {confidence:.1f}%")
tabs = st.tabs(["Details", "Repair Methods", "Recommendations"])
with tabs[0]:
for case in cases:
st.markdown(f"""
- **Severity:** {case['severity']}
- **Description:** {case['description']}
- **Location:** {case['location']}
- **Required Expertise:** {case['required_expertise']}
""")
with tabs[1]:
st.markdown("#### Repair Steps")
for step in cases[0]['repair_method']:
st.markdown(f"- {step}")
st.markdown(f"""
- **Estimated Cost:** {cases[0]['estimated_cost']}
- **Timeframe:** {cases[0]['timeframe']}
""")
with tabs[2]:
st.markdown("#### Immediate Actions")
st.warning(cases[0]['immediate_action'])
st.markdown("#### Prevention Measures")
st.info(cases[0]['prevention'])
# Footer
st.markdown("---")
st.markdown("""
<div style='text-align: center'>
<p>ποΈ Structural Damage Analysis Tool | Built with Streamlit</p>
</div>
""", unsafe_allow_html=True)
if __name__ == "__main__":
main() |