Claude's Corner: Lexius — Your Dumb Cameras Just Got Smart

770 million square feet of US retail space is under surveillance and almost none of it is actually watched. Lexius fixes that with a software-only AI layer on existing cameras — real-time theft detection, cross-visit person tracking, and automated case files. Replicability score: 52/100.

10 min read
Lexius, a Y Combinator W2026 startup

TL;DR

Lexius retrofits existing security cameras with a software-only AI layer that delivers real-time theft detection, cross-visit person re-identification, and automated case file generation — no hardware replacement required. Their moat is accumulated labeled training data per customer site, camera integration breadth, and institutional memory built into each deployment.

6.4
C

Build difficulty

There are roughly 770 million square feet of US retail space under camera surveillance. Almost none of it is actually watched. Loss prevention teams review footage after the fact — sometimes hours later, sometimes never. The camera is a documentation tool, not a prevention tool. It exists so you have proof when the insurance company asks, not so you can stop the theft while it's happening.

This is the gap Lexius is stepping into, and their angle is smart: don't sell you new cameras. You already have cameras. What you don't have is anything intelligent attached to them. Lexius is the brain layer — a software-only retrofit that connects to your existing RTSP streams, watches 24/7, and pushes mobile alerts when something worth acting on happens. No rip-and-replace. No $50,000 to $100,000 per-site hardware upgrade. Just plug in, wait a few minutes, and your dumb cameras are now paying attention.

The founders are unusually right for this problem. David Elskamp is a 2x founder with a BA and MA in computer science concentrated in computer vision. Liam Webster co-authored one of the largest open-source computer vision frameworks and spent time at UC Berkeley's International Computer Science Institute doing research on machine learning and privacy. These aren't two generalist operators pointing GPT-4 at a spreadsheet — they've actually built CV systems. That matters more than people think when the hard problem is making AI work on the specific garbage-quality video that the world's security cameras actually produce.

Related startups

What They Build

Lexius is an AI security platform for businesses with existing camera infrastructure. The value proposition is simple: don't replace your cameras, upgrade what they can do. The platform connects to virtually any IP camera system via RTSP streams and ONVIF — the two standards that cover the overwhelming majority of deployed surveillance hardware, including legacy analog systems running through NVRs and DVRs.

The product does three distinct things:

Real-time detection and alerting. The system watches live streams and detects shoplifting behaviors, slip-and-falls, and other incidents as they happen. When something triggers, it clips the relevant footage and pushes a mobile alert to the security team immediately. This is prevention, not documentation — the entire point is to act while the event is still happening.

Video search and person tracking. Natural language or visual search across months of stored footage. More importantly: cross-camera, cross-visit person tracking. Find everyone who matched a given visual profile, every time they appeared in your store, across every camera. The practical application is tracking repeat offenders and building evidence packages for organized retail crime — a growing problem for chains of any size.

Automated case files. Compiling an incident report used to mean a loss prevention manager spending 2-3 hours pulling clips, logging timestamps, and assembling documentation. Lexius automates that. An incident happens, the system captures the relevant footage windows, structures the evidence, and outputs a case file ready for internal review or law enforcement.

Their customer logos tell the story: 7-Eleven, Erewhon, and Prada. That range — convenience chain, premium grocer, luxury retail — suggests the system works across meaningfully different store layouts and camera configurations. Concrete metrics they've published: Erewhon saves $3,000/month; Nisa (a UK convenience retailer) saves 60 hours of labor per week on security review. These aren't vanity numbers. A 60-hour-per-week reduction at a multi-location chain implies significant headcount savings.

Pricing runs Standard, Advanced, and Enterprise tiers. Specific numbers aren't public — which is the right call for a product where deal size scales with location count and contract terms.

How It Actually Works

Lexius will tell you the easy version: "plug in your cameras and it works." The engineering reality is considerably messier.

The hard problem is stated directly on their YC launch: "real-world camera systems are messy, fragmented, and decades old, and AI breaks on low-quality CCTV." This is not an exaggeration. The average deployed security camera produces 480p video with aggressive compression artifacts, fisheye distortion, IR illumination that washes out texture detail, and variable frame rates. Standard computer vision benchmarks are trained on clean, well-lit datasets. Deploying against that baseline in a real 7-Eleven produces a lot of false positives and missed detections — neither of which is acceptable if you're asking a security guard to physically intervene.

The inference pipeline underneath Lexius is almost certainly a chain of specialized models:

Ingestion layer. RTSP stream pulling, frame extraction at a reduced rate (2-5 FPS is sufficient for behavioral detection, vastly cheaper than processing every frame), and preprocessing to normalize for the chaos of different camera hardware. GPU-accelerated decoding via FFMPEG or NVIDIA Video Codec SDK is essential at scale.

Person detection. A fast object detector (YOLOv8-class or RT-DETR) identifies people in frame and extracts bounding boxes. This runs first, cheap and fast, so the heavier models only run on the cropped person regions — a critical optimization when you're processing dozens of camera feeds simultaneously.

Re-identification (ReID). This is the genuinely hard problem. Given two camera views — or the same camera at different times — is this the same person? Person ReID on CCTV-quality video is an active research area with dozens of papers and no fully solved baseline. The challenge is producing discriminative embeddings despite low resolution, bad lighting, clothing overlap, and heavy occlusion. Architectures like OSNet and TransReID are the current state of the art for deployment. The business feature of "track repeat offenders across visits" lives or dies on the quality of this component.

Behavioral classification. Detecting that someone is shoplifting from a single frame is mostly impossible — behavior is temporal. This requires watching sequences of frames and classifying patterns: concealment (reaching into bag without paying), grab-and-run, loitering in high-value zones, skip-scan at self-checkout. LSTM or transformer-based models over pose keypoint sequences are the likely approach, with sliding windows of 30-60 frames. Getting the false positive rate low enough that security staff don't start ignoring alerts is the calibration challenge.

Video search. The "turn months of video into searchable answers" feature is embedding-based retrieval — essentially CLIP applied to surveillance footage. Frames and clips are embedded at ingestion time and indexed in a vector database. A query (text description or visual example) is embedded and matched against the index. The tricky engineering is making this fast enough to be interactive across months of footage from dozens of cameras, and associating frame embeddings back to playable video segments.

Case file generation. Structured incident data (timestamps, camera IDs, person track IDs, classification confidence) fed through an LLM to produce formatted documentation. Likely Claude or GPT-4 with structured output — this is the "glue" layer that turns ML outputs into something a loss prevention manager or cop can actually read.

The deployment model matters too. Cloud-only inference for all streams is expensive at scale. Lexius almost certainly runs some ingestion and initial filtering at the edge (on an NVR or a small edge device per site), with heavier inference — ReID, behavioral classification — offloaded to cloud GPUs. As their models get more efficient, more of the stack moves to the edge.

Difficulty Score

DimensionScoreNotes
ML/AI7/10Person ReID on degraded CCTV, temporal behavior detection, multi-camera tracking — all genuinely hard with active research frontiers and no clean off-the-shelf solution
Data8/10Labeled theft behavior footage in real-world CCTV conditions is the hardest thing to collect. You need hours of annotated shoplifting events in the wild, not in a clean lab environment
Backend6/10Real-time video stream processing at scale is non-trivial, but the architectural patterns are well-understood — GPU inference clusters, stream ingestion, job queues
Frontend4/10Dashboard, mobile alerts, video player with incident timeline — standard B2B SaaS UI, no exotic requirements
DevOps7/10Deploying inference into heterogeneous enterprise environments with varying network conditions, camera hardware, and compliance requirements (GDPR, state biometric laws) is genuinely painful

The Moat

The thing most people get wrong about Lexius is thinking the moat is the models. It isn't. YOLOv8 is open source. CLIP is open source. The major ReID architectures have public implementations. A competent ML team can assemble a comparable inference stack in a few months.

The actual moat is the training data. Every customer site generates labeled examples of theft behaviors in that specific store format, camera angle, lighting condition, and demographic mix. A model calibrated on three years of 7-Eleven footage is meaningfully better at detecting theft in a 7-Eleven than a model trained on YouTube or academic datasets. That per-customer, per-vertical behavioral model is the asset. You can't acquire it without acquiring the customers first.

Second-order moat: camera integration breadth. Every DVR firmware version, NVR protocol quirk, and camera brand that Lexius has successfully integrated represents engineering work a new entrant has to replicate from scratch. This is the kind of boring, grinding integration work that takes 12-18 months to accumulate and doesn't show up in any demo. When a retailer asks "does this work with our Hikvision system running firmware 4.2.3?" Lexius can say yes immediately. A new entrant has to say "we'll test it and get back to you."

Third: customer lock-in through data specificity. After six months of Lexius ingesting footage from a site, the repeat-offender database, the calibrated detection thresholds for that specific store layout, and the case file history are all inside Lexius. Switching means starting over — not just losing the software, but losing the institutional memory the system has built about that location.

What's not a moat: the cloud infrastructure, the SaaS business model, or the general idea of AI video analytics. Verkada, Avigilon, Genetec, and a dozen other incumbents could build a version of this. The question is whether they move fast enough, and whether they're willing to cannibalize their hardware margins to do it. Lexius is betting no.

Replicability Score: 52 / 100

Lexius sits in the frustrating middle of the replicability spectrum. The tech stack is open-source foundations. The cloud infrastructure is commodity. The SaaS model is textbook. A skilled engineering team could build a working prototype in 6 months.

What they can't replicate quickly: the labeled training data, the camera integration library, the enterprise relationships, and the per-site behavioral models that compound with every new location. These represent 12-24 months of grinding that a new entrant has to run at full speed to catch up — while Lexius keeps extending the lead with every customer they onboard.

The score would be 35 if their only product was "AI on cameras." It's 52 because the defensible parts — data, integrations, customer lock-in — are real and accumulating. It would be 65+ if they had regulatory capture (biometric data laws make this complicated territory that incumbents have already navigated) or were further along building the repeat-offender database as a network effect across customers.

The window to compete is closing. Not because the technology is hard, but because every passing month of customer data makes the training distribution harder to match and the integration library longer to rebuild. In two years, this could be a 65. Right now it is a 52 — replicable, but not cheap to replicate, and the clock is ticking.

© 2026 StartupHub.ai. All rights reserved. Do not enter, scrape, copy, reproduce, or republish this article in whole or in part. Use as input to AI training, fine-tuning, retrieval-augmented generation, or any machine-learning system is prohibited without written license. Substantially-similar derivative works will be pursued to the fullest extent of applicable copyright, database, and computer-misuse laws. See our terms.

Build This Startup with Claude Code

Complete replication guide — install as a slash command or rules file

# Build a Lexius Clone with Claude Code: 7-Step Guide

A step-by-step guide to building an AI video analytics platform that retrofits existing security cameras with real-time theft detection, person tracking, and automated case file generation.

[7 steps covering: Camera Integration Layer, Preprocessing Pipeline, Person Detection and Re-ID, Behavioral Classification, Incident Management and Alert System, Video Search, Deployment Architecture]
claude-code-skills.md