File size: 7,792 Bytes
14889d7 7777fc7 14889d7 7777fc7 14889d7 7777fc7 14889d7 7777fc7 14889d7 7777fc7 14889d7 7777fc7 14889d7 02bbb64 14889d7 ecdbd04 14889d7 | 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 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 | """
Netra AI - Construction Material Classifier
MVP Demo using Claude Vision API
"""
import gradio as gr
import anthropic
import os
from PIL import Image
import base64
from io import BytesIO
# Material classification prompt
CLASSIFICATION_PROMPT = """
You are a construction material classifier for Netra AI. Classify this image into ONE of these 4 classes:
1. **Reet (Sand)**: All grades of sand - from fine powdery sand to coarse gritty sand. Shows smooth to granular texture.
2. **12mm VSI**: Uniform, small, cubical "clean" stones. Very consistent size (~10-15mm). Manufactured aggregate with sharp edges.
3. **Stone**: Large, irregular boulders. Significant size variation, deep voids between rocks. Raw, unprocessed appearance.
4. **GSB (Graded Stone Base)**: Mixed-size material with rocks, gravel, grit AND fine dust/sand filling gaps. Key indicator is fine dust matrix.
Respond in this exact format:
CLASS: [class name]
CONFIDENCE: [High/Medium/Low]
REASONING: [One sentence explanation of visual features that led to this classification]
"""
def classify_material(image):
"""Classify construction material from image using Netra AI"""
if image is None:
return "Please upload an image", "", ""
# Get API key from environment
api_key = os.getenv("ANTHROPIC_API_KEY", "")
if not api_key:
return "β System Error", "", "AI service not configured. Please contact support."
try:
# Configure Claude
client = anthropic.Anthropic(api_key=api_key)
# Convert to PIL Image if needed
if not isinstance(image, Image.Image):
image = Image.fromarray(image)
# Convert image to base64
buffered = BytesIO()
image.save(buffered, format="JPEG")
image_data = base64.b64encode(buffered.getvalue()).decode("utf-8")
# Generate classification
response = client.messages.create(
model="claude-opus-4-6",
max_tokens=150,
messages=[
{
"role": "user",
"content": [
{
"type": "image",
"source": {
"type": "base64",
"media_type": "image/jpeg",
"data": image_data,
},
},
{"type": "text", "text": CLASSIFICATION_PROMPT}
],
}
],
)
result_text = response.content[0].text.strip()
# Parse response
lines = result_text.split('\n')
class_name = ""
confidence = ""
reasoning = ""
for line in lines:
if line.startswith("CLASS:"):
class_name = line.replace("CLASS:", "").strip()
elif line.startswith("CONFIDENCE:"):
confidence = line.replace("CONFIDENCE:", "").strip()
elif line.startswith("REASONING:"):
reasoning = line.replace("REASONING:", "").strip()
# Format output
if class_name:
result = f"β
RESULT:\n\n{class_name}"
else:
result = "β³ AWAITING CLASSIFICATION"
confidence_display = f"Confidence: {confidence}" if confidence else ""
reasoning_display = f"π‘ **Analysis:** {reasoning}" if reasoning else result_text
return result, confidence_display, reasoning_display
except Exception as e:
error_msg = str(e)
if "API_KEY_INVALID" in error_msg or "401" in error_msg:
return "β Invalid API Key", "", "Please check your Gemini API key"
elif "quota" in error_msg.lower():
return "β API Quota Exceeded", "", "Your API key has exceeded its quota"
else:
return f"β Error: {error_msg[:100]}", "", "Please try again"
# Custom CSS
custom_css = """
#header {
text-align: center;
background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
padding: 20px;
border-radius: 10px;
color: white;
}
#result {
font-size: 72px;
font-weight: 900;
text-align: center;
padding: 50px 30px;
border-radius: 20px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
margin-bottom: 25px;
box-shadow: 0 8px 16px rgba(0,0,0,0.2);
text-transform: uppercase;
letter-spacing: 2px;
line-height: 1.2;
}
#confidence {
font-size: 24px;
font-weight: 600;
text-align: center;
padding: 15px;
background: #f0f9ff;
border-radius: 10px;
margin-bottom: 20px;
}
#reasoning {
font-size: 14px;
text-align: left;
padding: 15px;
background: #f9fafb;
border-radius: 8px;
margin-bottom: 20px;
color: #4b5563;
}
#about {
font-size: 13px;
color: #6b7280;
padding-top: 20px;
border-top: 1px solid #e5e7eb;
}
"""
# Build Gradio interface
with gr.Blocks(css=custom_css, title="Netra AI - Material Classifier") as demo:
gr.Markdown(
"""
<div id="header">
<h1>ποΈ Netra AI - Construction Material Classifier</h1>
<p>AI-powered material identification for construction sites</p>
</div>
""",
elem_id="header"
)
with gr.Row():
with gr.Column(scale=1):
gr.Markdown("### πΈ Upload Material Image")
image_input = gr.Image(
type="pil",
label="Construction Material Photo",
height=400
)
classify_btn = gr.Button("π Classify Material", variant="primary", size="lg")
gr.Markdown(
"""
**Supported Materials:**
- ποΈ Reet (Sand)
- π· 12mm VSI (Uniform Aggregate)
- πͺ¨ Stone (Large Boulders)
- ποΈ GSB (Mixed Graded Base)
"""
)
gr.Markdown("### π· Try Sample Images")
gr.Examples(
examples=[
["sanity_test_dataset/12mm_VSI_01.jpeg"],
["sanity_test_dataset/Reet_01_fine.jpeg"],
["sanity_test_dataset/Stone_01.jpeg"],
["sanity_test_dataset/GSB_01.jpeg"],
],
inputs=image_input,
label=""
)
with gr.Column(scale=1):
result_output = gr.Markdown("", elem_id="result")
confidence_output = gr.Markdown("", elem_id="confidence")
reasoning_output = gr.Markdown("", elem_id="reasoning")
gr.Markdown(
"""
<div id="about">
### π About This Demo
This is a proof-of-concept for **Netra AI's** automated material classification system.
**Technology:**
- Vision AI for real-time material identification
- Prevents grade fraud at construction sites
- Automates dispatch logging
**Use Cases:**
- Gate monitoring at crusher plants
- Dispatch verification
- Quality control
---
**Netra AI** - *Making every tonne count.*
For commercial inquiries: [Contact Us](mailto:guptaraghu321@gmail.com)
</div>
"""
)
# Connect button
classify_btn.click(
fn=classify_material,
inputs=[image_input],
outputs=[result_output, confidence_output, reasoning_output]
)
# Launch
if __name__ == "__main__":
demo.launch(
server_name="0.0.0.0",
server_port=7860,
share=True
)
|