Introduction: The Limits of Traditional AI Inspection
Factory quality inspection has long faced a core problem: traditional AI inspectors only recognize what they were explicitly trained to detect. Teach a model to spot scratches, and it will only catch scratches — an unseen crack or stain goes unnoticed (the limitation of closed-set detection).
General-purpose large language/vision models know much more, but deployed on the production line they are prone to hallucination — mistaking a shadow for a crack. Letting such models run unsupervised inspection invites chaos.
The Core Problem
Industrial defects are often hairline-thin and deeply hidden:
- General models looking at a full-frame image easily miss tiny deformations in corners.
- They lack "industrial common sense" — they don't know what a specific part *should* look like, so they can only guess.
- Paper: IndusAgent: Reinforcing Open-Vocabulary Industrial Anomaly Detection with Agentic Tools
- Published: May 21, 2026
- arXiv: arXiv:2605.20682
- Core contribution: Solving the difficulty of recognizing novel defects and model hallucination in industrial anomaly detection.
- Mechanism: A tool-augmented agentic framework using dynamic cropping, feature enhancement, and knowledge retrieval for precise quality inspection.
> This is known in academia as Domain Misalignment: like a scholar entering a workshop, full of knowledge but unable to tell a wrench from pliers, or a defective part from a good one.
IndusAgent: A Toolbox Strategy
Released May 21, 2026, IndusAgent is not a lone model but a specialist agent carrying a full toolbox. Its core logic: if you can't see it clearly, use a tool.
1. Magnifying glass: dynamic local cropping to inspect suspicious regions closely. 2. Revealing mirror: high-frequency feature enhancement to expose defects hidden in textures. 3. Dictionary lookup: retrieval of prior knowledge about what qualified products should look like.
Its orchestration relies on gated reinforcement learning:
This means the model's objective (\(L\)) includes classifying correctly (\(cls\)), localizing accurately (\(loc\)), *and* learning to use tools sparingly (\(tool\)) — pulling out tools only when truly needed, for efficiency.
Head-to-Head Comparison
| Dimension | Traditional AI QC | General LLMs | IndusAgent | | :--- | :--- | :--- | :--- | | New defect types | Almost impossible | Prone to hallucination | Effortless (zero-shot) | | Inspection precision | Global only | Random | Precise local zoom | | Reasoning basis | None (black box) | Confused logic | Industrial priors (knowledge-grounded) |
Benchmark Results
Researchers evaluated IndusAgent on five international benchmarks, including MVTec-AD and VisA. In the zero-shot setting (never having seen these products before), IndusAgent set new state-of-the-art records across the board. It is not only accurate but also explains *why* something counts as a defect.
Where factories once needed years to train a veteran inspector's apprentice, IndusAgent stands on the line with its toolbox and keeps production stable.