48ea61cdcc
- Product documentation in docs/products/ - Updated MEMORY.md with product info - quiXzoom Auth Core as AAMOS Identity product
1983 lines
108 KiB
HTML
1983 lines
108 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>Glossary — quiXzoom</title>
|
||
<meta name="description" content="The complete Landvex Ecosystem Glossary. Technical terms for AAMOS, quiXzoom, and Landvex.">
|
||
<style>
|
||
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
||
|
||
:root {
|
||
--bg: #ffffff;
|
||
--bg-off: #f5f5f7;
|
||
--bg-card: #ffffff;
|
||
--text: #1d1d1f;
|
||
--text-secondary: #6e6e73;
|
||
--primary: #00a550;
|
||
--primary-light: #e6f7ee;
|
||
--primary-dark: #007a3d;
|
||
--green: #00a550;
|
||
--green-light: #e6f7ee;
|
||
--purple: #7b2fff;
|
||
--purple-light: #f0e8ff;
|
||
--orange: #e8660a;
|
||
--orange-light: #fff0e6;
|
||
--radius: 18px;
|
||
--radius-sm: 8px;
|
||
--border: #d2d2d7;
|
||
--nav-height: 64px;
|
||
--shadow-hover: 0 12px 40px rgba(0,0,0,.10);
|
||
--section-aamos: #0066FF;
|
||
--section-quixzoom: #00a550;
|
||
--section-landvex: #7b2fff;
|
||
}
|
||
|
||
@media (prefers-color-scheme: dark) {
|
||
:root {
|
||
--bg: #000000;
|
||
--bg-off: #1c1c1e;
|
||
--bg-card: #1c1c1e;
|
||
--text: #f5f5f7;
|
||
--text-secondary: #98989f;
|
||
--border: #3a3a3c;
|
||
--primary-light: rgba(0,102,255,.15);
|
||
--green-light: rgba(0,165,80,.15);
|
||
--purple-light: rgba(123,47,255,.15);
|
||
--orange-light: rgba(232,102,10,.15);
|
||
--shadow-hover: 0 12px 40px rgba(0,0,0,.5);
|
||
}
|
||
}
|
||
|
||
html { scroll-behavior: smooth; }
|
||
|
||
body {
|
||
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
|
||
background: var(--bg);
|
||
color: var(--text);
|
||
line-height: 1.6;
|
||
-webkit-font-smoothing: antialiased;
|
||
}
|
||
|
||
/* ─── NAV ─────────────────────────────────────────────────── */
|
||
.nav {
|
||
position: sticky;
|
||
top: 0;
|
||
z-index: 100;
|
||
height: var(--nav-height);
|
||
background: rgba(255,255,255,.82);
|
||
-webkit-backdrop-filter: blur(20px) saturate(180%);
|
||
backdrop-filter: blur(20px) saturate(180%);
|
||
border-bottom: 1px solid var(--border);
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 16px;
|
||
padding: 0 24px;
|
||
}
|
||
|
||
@media (prefers-color-scheme: dark) {
|
||
.nav { background: rgba(0,0,0,.82); }
|
||
}
|
||
|
||
.nav-logo {
|
||
font-size: 1.25rem;
|
||
font-weight: 800;
|
||
color: var(--text);
|
||
text-decoration: none;
|
||
letter-spacing: -.04em;
|
||
white-space: nowrap;
|
||
flex-shrink: 0;
|
||
}
|
||
.nav-logo .x { color: var(--primary); }
|
||
|
||
.nav-divider {
|
||
width: 1px;
|
||
height: 20px;
|
||
background: var(--border);
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
.nav-title {
|
||
font-size: .9375rem;
|
||
font-weight: 600;
|
||
color: var(--text-secondary);
|
||
white-space: nowrap;
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
.nav-search {
|
||
flex: 1;
|
||
max-width: 280px;
|
||
position: relative;
|
||
}
|
||
|
||
.nav-search input {
|
||
width: 100%;
|
||
padding: 8px 14px 8px 36px;
|
||
border-radius: 20px;
|
||
border: 1px solid var(--border);
|
||
background: var(--bg-off);
|
||
color: var(--text);
|
||
font-size: .875rem;
|
||
font-family: inherit;
|
||
outline: none;
|
||
transition: border-color .15s, box-shadow .15s;
|
||
}
|
||
|
||
.nav-search input:focus {
|
||
border-color: var(--primary);
|
||
box-shadow: 0 0 0 3px rgba(0,165,80,.12);
|
||
}
|
||
|
||
.nav-search-icon {
|
||
position: absolute;
|
||
left: 11px;
|
||
top: 50%;
|
||
transform: translateY(-50%);
|
||
color: var(--text-secondary);
|
||
pointer-events: none;
|
||
}
|
||
|
||
.nav-az {
|
||
display: flex;
|
||
gap: 2px;
|
||
overflow-x: auto;
|
||
scrollbar-width: none;
|
||
-ms-overflow-style: none;
|
||
}
|
||
.nav-az::-webkit-scrollbar { display: none; }
|
||
|
||
.nav-az a {
|
||
display: inline-block;
|
||
min-width: 24px;
|
||
padding: 3px 4px;
|
||
text-align: center;
|
||
font-size: .75rem;
|
||
font-weight: 600;
|
||
color: var(--text-secondary);
|
||
text-decoration: none;
|
||
border-radius: 5px;
|
||
transition: background .12s, color .12s;
|
||
line-height: 1.4;
|
||
}
|
||
.nav-az a:hover { background: var(--primary-light); color: var(--primary); }
|
||
.nav-az a.active { background: var(--primary); color: #fff; }
|
||
.nav-az a.empty { opacity: .25; pointer-events: none; }
|
||
|
||
/* ─── ECOSYSTEM HEADER ────────────────────────────────────── */
|
||
.ecosystem-header {
|
||
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
|
||
color: #fff;
|
||
padding: 48px 24px 32px;
|
||
text-align: center;
|
||
}
|
||
|
||
.ecosystem-header h1 {
|
||
font-size: clamp(1.75rem, 4vw, 2.5rem);
|
||
font-weight: 800;
|
||
letter-spacing: -.03em;
|
||
margin-bottom: 8px;
|
||
}
|
||
|
||
.ecosystem-header .subtitle {
|
||
font-size: 1rem;
|
||
opacity: .85;
|
||
margin-bottom: 20px;
|
||
}
|
||
|
||
.brand-pills {
|
||
display: flex;
|
||
justify-content: center;
|
||
gap: 12px;
|
||
flex-wrap: wrap;
|
||
}
|
||
|
||
.brand-pill {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
padding: 8px 18px;
|
||
border-radius: 24px;
|
||
font-size: .875rem;
|
||
font-weight: 600;
|
||
text-decoration: none;
|
||
transition: transform .15s, box-shadow .15s;
|
||
}
|
||
.brand-pill:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,.2); }
|
||
|
||
.brand-pill.aamos { background: rgba(255,255,255,.2); color: #fff; border: 1px solid rgba(255,255,255,.3); }
|
||
.brand-pill.quixzoom { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.2); }
|
||
.brand-pill.landvex { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.2); }
|
||
.brand-pill.aamos.active { background: #fff; color: var(--primary); }
|
||
|
||
/* ─── MAIN ────────────────────────────────────────────────── */
|
||
main {
|
||
max-width: 900px;
|
||
margin: 0 auto;
|
||
padding: 0 24px 80px;
|
||
}
|
||
|
||
.page-header {
|
||
padding: 48px 0 32px;
|
||
text-align: center;
|
||
}
|
||
|
||
.page-header h1 {
|
||
font-size: clamp(2rem, 5vw, 3rem);
|
||
font-weight: 800;
|
||
letter-spacing: -.04em;
|
||
line-height: 1.05;
|
||
color: var(--text);
|
||
margin-bottom: 12px;
|
||
}
|
||
|
||
.page-header p {
|
||
font-size: 1.0625rem;
|
||
color: var(--text-secondary);
|
||
max-width: 520px;
|
||
margin: 0 auto;
|
||
}
|
||
|
||
.search-empty {
|
||
display: none;
|
||
text-align: center;
|
||
padding: 64px 24px;
|
||
color: var(--text-secondary);
|
||
font-size: 1rem;
|
||
}
|
||
.search-empty.visible { display: block; }
|
||
|
||
/* ─── SECTION HEADER ──────────────────────────────────────── */
|
||
.section-header {
|
||
margin: 56px 0 28px;
|
||
padding: 20px 24px;
|
||
border-radius: var(--radius);
|
||
border-left: 4px solid var(--primary);
|
||
background: var(--primary-light);
|
||
}
|
||
|
||
.section-header h2 {
|
||
font-size: 1.5rem;
|
||
font-weight: 800;
|
||
letter-spacing: -.02em;
|
||
color: var(--text);
|
||
margin-bottom: 4px;
|
||
}
|
||
|
||
.section-header .section-tag {
|
||
display: inline-block;
|
||
padding: 3px 10px;
|
||
border-radius: 12px;
|
||
font-size: .6875rem;
|
||
font-weight: 700;
|
||
text-transform: uppercase;
|
||
letter-spacing: .06em;
|
||
background: var(--primary);
|
||
color: #fff;
|
||
margin-bottom: 8px;
|
||
}
|
||
|
||
.section-header p {
|
||
font-size: .9375rem;
|
||
color: var(--text-secondary);
|
||
}
|
||
|
||
/* ─── LETTER SECTION ──────────────────────────────────────── */
|
||
.letter-section {
|
||
margin-bottom: 48px;
|
||
}
|
||
|
||
.letter-heading {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 16px;
|
||
margin-bottom: 20px;
|
||
padding-bottom: 12px;
|
||
border-bottom: 1px solid var(--border);
|
||
}
|
||
|
||
.letter-heading h2 {
|
||
font-size: 2rem;
|
||
font-weight: 800;
|
||
color: var(--text-secondary);
|
||
letter-spacing: -.04em;
|
||
line-height: 1;
|
||
width: 36px;
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
.letter-count {
|
||
font-size: .8125rem;
|
||
color: var(--text-secondary);
|
||
}
|
||
|
||
/* ─── TERM CARD ───────────────────────────────────────────── */
|
||
.term-card {
|
||
background: var(--bg-card);
|
||
border: 1px solid var(--border);
|
||
border-radius: var(--radius);
|
||
padding: 28px 32px;
|
||
margin-bottom: 16px;
|
||
transition: box-shadow .2s, transform .2s;
|
||
}
|
||
|
||
.term-card:hover {
|
||
box-shadow: var(--shadow-hover);
|
||
transform: translateY(-2px);
|
||
}
|
||
|
||
.term-header {
|
||
display: flex;
|
||
align-items: flex-start;
|
||
justify-content: space-between;
|
||
gap: 12px;
|
||
margin-bottom: 10px;
|
||
flex-wrap: wrap;
|
||
}
|
||
|
||
.term-name {
|
||
font-size: 1.3125rem;
|
||
font-weight: 700;
|
||
color: var(--text);
|
||
letter-spacing: -.02em;
|
||
line-height: 1.2;
|
||
}
|
||
|
||
.term-category {
|
||
display: inline-block;
|
||
padding: 4px 12px;
|
||
border-radius: 20px;
|
||
font-size: .75rem;
|
||
font-weight: 600;
|
||
letter-spacing: .02em;
|
||
text-transform: uppercase;
|
||
white-space: nowrap;
|
||
flex-shrink: 0;
|
||
margin-top: 2px;
|
||
}
|
||
|
||
.cat-aamos { background: var(--primary-light); color: var(--primary); }
|
||
.cat-quixzoom { background: var(--green-light); color: var(--green); }
|
||
.cat-landvex { background: var(--purple-light); color: var(--purple); }
|
||
.cat-technical { background: var(--orange-light); color: var(--orange); }
|
||
.cat-legal { background: #ffe8e8; color: #c41e3a; }
|
||
.cat-payment { background: #fff8e1; color: #b8860b; }
|
||
|
||
.term-short {
|
||
font-size: 1rem;
|
||
font-weight: 500;
|
||
color: var(--text);
|
||
margin-bottom: 12px;
|
||
line-height: 1.5;
|
||
}
|
||
|
||
.term-long {
|
||
font-size: .9375rem;
|
||
color: var(--text-secondary);
|
||
line-height: 1.65;
|
||
margin-bottom: 16px;
|
||
}
|
||
|
||
.term-context {
|
||
background: var(--bg-off);
|
||
border-radius: var(--radius-sm);
|
||
padding: 14px 18px;
|
||
margin-bottom: 14px;
|
||
}
|
||
|
||
.term-context-label {
|
||
font-size: .75rem;
|
||
font-weight: 700;
|
||
text-transform: uppercase;
|
||
letter-spacing: .06em;
|
||
color: var(--primary);
|
||
display: block;
|
||
margin-bottom: 6px;
|
||
}
|
||
|
||
.term-context p {
|
||
font-size: .875rem;
|
||
color: var(--text-secondary);
|
||
line-height: 1.6;
|
||
}
|
||
|
||
.term-related {
|
||
display: flex;
|
||
align-items: center;
|
||
flex-wrap: wrap;
|
||
gap: 6px;
|
||
}
|
||
|
||
.term-related > span {
|
||
font-size: .8125rem;
|
||
color: var(--text-secondary);
|
||
}
|
||
|
||
.term-related a {
|
||
display: inline-block;
|
||
padding: 3px 10px;
|
||
border-radius: 20px;
|
||
font-size: .8125rem;
|
||
font-weight: 500;
|
||
color: var(--primary);
|
||
background: var(--primary-light);
|
||
text-decoration: none;
|
||
transition: background .12s, color .12s;
|
||
}
|
||
|
||
.term-related a:hover {
|
||
background: var(--primary);
|
||
color: #fff;
|
||
}
|
||
|
||
.cross-ref {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 4px;
|
||
font-size: .75rem;
|
||
color: var(--text-secondary);
|
||
margin-top: 8px;
|
||
}
|
||
|
||
.cross-ref a {
|
||
color: var(--primary);
|
||
text-decoration: none;
|
||
font-weight: 600;
|
||
}
|
||
|
||
/* ─── FOOTER ──────────────────────────────────────────────── */
|
||
.site-footer {
|
||
border-top: 1px solid var(--border);
|
||
padding: 40px 24px;
|
||
text-align: center;
|
||
background: var(--bg-off);
|
||
}
|
||
|
||
.footer-brands {
|
||
display: flex;
|
||
justify-content: center;
|
||
gap: 24px;
|
||
flex-wrap: wrap;
|
||
margin-bottom: 16px;
|
||
}
|
||
|
||
.footer-brands a {
|
||
font-size: .9375rem;
|
||
font-weight: 600;
|
||
color: var(--text-secondary);
|
||
text-decoration: none;
|
||
transition: color .15s;
|
||
}
|
||
.footer-brands a:hover { color: var(--primary); }
|
||
|
||
.footer-copy {
|
||
font-size: .8125rem;
|
||
color: var(--text-secondary);
|
||
}
|
||
|
||
/* ─── RESPONSIVE ──────────────────────────────────────────── */
|
||
@media (max-width: 600px) {
|
||
.nav { gap: 10px; padding: 0 16px; }
|
||
.nav-az { display: none; }
|
||
.nav-search { max-width: none; flex: 1; }
|
||
.term-card { padding: 20px 18px; }
|
||
.page-header { padding: 32px 0 24px; }
|
||
.ecosystem-header { padding: 32px 16px 24px; }
|
||
.section-header { padding: 16px 18px; }
|
||
}
|
||
|
||
@media (max-width: 900px) {
|
||
.nav-az { max-width: 200px; }
|
||
}
|
||
|
||
/* ─── HIGHLIGHT when anchor-targeted ─────────────────────── */
|
||
.term-card:target {
|
||
border-color: var(--primary);
|
||
box-shadow: 0 0 0 3px rgba(0,165,80,.15);
|
||
}
|
||
|
||
/* ─── HIDDEN during search ────────────────────────────────── */
|
||
.term-card.hidden { display: none; }
|
||
.letter-section.hidden { display: none; }
|
||
.section-header.hidden { display: none; }
|
||
</style>
|
||
<link rel="canonical" href="https://www.quixzoom.com/glossary">
|
||
<meta name="robots" content="index, follow">
|
||
<meta property="og:type" content="website">
|
||
<meta property="og:title" content="Glossary — Landvex Ecosystem">
|
||
<meta property="og:description" content="The complete ecosystem reference — AAMOS, quiXzoom, and Landvex terms defined.">
|
||
<meta property="og:url" content="https://www.quixzoom.com/glossary">
|
||
</head>
|
||
<body>
|
||
|
||
<nav class="nav">
|
||
<a href="/" class="nav-logo">qui<span class="x">X</span>zoom</a>
|
||
<div class="nav-divider"></div>
|
||
<span class="nav-title">Glossary</span>
|
||
<div class="nav-search">
|
||
<svg class="nav-search-icon" width="14" height="14" viewBox="0 0 16 16" fill="none">
|
||
<circle cx="6.5" cy="6.5" r="5" stroke="currentColor" stroke-width="1.5"/>
|
||
<path d="M10 10l4 4" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
||
</svg>
|
||
<input type="search" id="glossary-search" placeholder="Search terms…" autocomplete="off" aria-label="Search glossary">
|
||
</div>
|
||
<nav class="nav-az" id="az-nav" aria-label="Jump to letter">
|
||
<a href="#a">A</a><a href="#b">B</a><a href="#c">C</a><a href="#d">D</a>
|
||
<a href="#e">E</a><a href="#f">F</a><a href="#g">G</a><a href="#h">H</a>
|
||
<a href="#i">I</a><a href="#j">J</a><a href="#k">K</a><a href="#l">L</a>
|
||
<a href="#m">M</a><a href="#n">N</a><a href="#o">O</a><a href="#p">P</a>
|
||
<a href="#q">Q</a><a href="#r">R</a><a href="#s">S</a><a href="#t">T</a>
|
||
<a href="#u">U</a><a href="#v">V</a><a href="#w">W</a><a href="#x">X</a>
|
||
<a href="#y">Y</a><a href="#z">Z</a>
|
||
</nav>
|
||
</nav>
|
||
|
||
<div class="ecosystem-header">
|
||
<h1>Landvex Ecosystem Glossary</h1>
|
||
<p class="subtitle">One reference for the entire intelligence stack</p>
|
||
<div class="brand-pills">
|
||
<a href="https://aamos.ai/glossary/" class="brand-pill aamos">AAMOS</a>
|
||
<a href="https://www.quixzoom.com/glossary/" class="brand-pill quixzoom active">quiXzoom</a>
|
||
<a href="https://landvex.com/glossary/" class="brand-pill landvex">Landvex</a>
|
||
</div>
|
||
</div>
|
||
|
||
<main>
|
||
<header class="page-header">
|
||
<h1>Every term.<br>Defined.</h1>
|
||
<p>The complete ecosystem reference — from AI engines to field intelligence to decision systems.</p>
|
||
</header>
|
||
|
||
<div class="search-empty" id="search-empty">No terms match "<span id="search-query"></span>"</div>
|
||
|
||
<!-- ════════════════════════════════════════════════════════════════════ -->
|
||
<!-- SECTION 1: AAMOS — AI ENGINE LAYER -->
|
||
<!-- ════════════════════════════════════════════════════════════════════ -->
|
||
|
||
<div class="section-header" id="section-aamos">
|
||
<span class="section-tag">AI Engine Layer</span>
|
||
<h2>AAMOS</h2>
|
||
<p>Technical terms for developers building on the AMOS AI capability platform.</p>
|
||
</div>
|
||
|
||
<!-- A -->
|
||
<section class="letter-section" id="a">
|
||
<div class="letter-heading"><h2>A</h2><span class="letter-count"></span></div>
|
||
|
||
<article id="aamos" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">AAMOS</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">AI Capability Platform — the engine layer that transforms raw observations into structured intelligence through specialised AI engines.</p>
|
||
<p class="term-long">AAMOS (Adaptive Autonomous Multi-Observation System) is not a single AI system — it is a platform of composable AI engines. Each engine handles a specific domain: Vision for object detection, Identity for verification, Fraud for anomaly detection, Infrastructure for asset condition, and more. Developers access AAMOS through REST APIs that accept images, video, or structured data and return verified intelligence. AAMOS is developed and sold by Landvex Inc, Houston, TX — there is no "AAMOS Group."</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In the ecosystem</span>
|
||
<p>A municipality uploads 10,000 bridge photos to AAMOS Infrastructure. The engine detects cracking, corrosion, and structural anomalies, scoring each asset by severity. The output feeds directly into Landvex's Infrastructure Risk Index.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#amos-vision">AMOS Vision</a>
|
||
<a href="#api">API</a>
|
||
<a href="#onnx">ONNX</a>
|
||
<a href="#reality-engine">Reality Engine</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="ai-training-pipeline" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">AI Training Pipeline</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">The end-to-end process for training, validating, and deploying computer vision models across AAMOS engines.</p>
|
||
<p class="term-long">The AAMOS training pipeline ingests labelled datasets (from SceneNet, ContribNet, and verified field observations), trains models using YOLO and other architectures, validates against hold-out test sets, and exports production-ready ONNX models. The pipeline includes automated data augmentation, hyperparameter tuning, and model drift detection. Every deployed model carries a version tag and confidence calibration curve.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In AAMOS</span>
|
||
<p>A new facade-damage model is trained on 50,000 labelled images from ContribNet. After validation achieves 94% mAP, it is exported to ONNX and deployed to the Infrastructure Engine with a calibrated confidence threshold of 0.72.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#onnx">ONNX</a>
|
||
<a href="#yolo">YOLO</a>
|
||
<a href="#scene-net">SceneNet</a>
|
||
<a href="#contrib-net">ContribNet</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="api" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">API</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">Application Programming Interface — the programmatic interface through which developers access AAMOS engine capabilities.</p>
|
||
<p class="term-long">The AAMOS API is a REST-style HTTP API that exposes all engine capabilities as standardised endpoints. Authentication uses OAuth 2.0. Responses are JSON with structured confidence scores, bounding boxes, and provenance metadata. Webhooks deliver asynchronous results for batch operations. Rate limits and usage quotas are enforced per API key.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In AAMOS</span>
|
||
<p>An insurance platform integrates the AAMOS Fraud API. When a claim photo is uploaded, a POST to /detect returns object annotations, damage severity scores, and manipulation flags within 800ms — enabling real-time claims triage.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#webhook">Webhook</a>
|
||
<a href="#oauth">OAuth</a>
|
||
<a href="#json">JSON</a>
|
||
<a href="#hmac-sha256">HMAC-SHA256</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="amos-compliance" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">AMOS Compliance</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">AI engine for regulatory compliance checks, documentation verification, and standard adherence detection.</p>
|
||
<p class="term-long">AMOS Compliance analyses visual and document evidence against regulatory frameworks: safety signage requirements, accessibility standards, environmental permits, and building codes. It identifies missing elements, non-conforming installations, and documentation gaps. Outputs include compliance scores, violation lists with regulatory references, and remediation priorities.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In AAMOS</span>
|
||
<p>A construction site photo is analysed by AMOS Compliance. The engine detects missing hard-hat signage, an uncovered trench without barriers, and a fire extinguisher past inspection date — each flagged with the specific OSHA clause violated.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#amos-safety">AMOS Safety</a>
|
||
<a href="#amos-inspection">AMOS Inspection</a>
|
||
<a href="#verified-claim">Verified Claim</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="amos-fraud" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">AMOS Fraud</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">AI engine for detecting visual fraud: skimming devices, manipulated meters, forged documents, and insurance scams.</p>
|
||
<p class="term-long">AMOS Fraud applies computer vision and document analysis to detect tampering, overlays, and anomalous modifications in physical assets and documents. It identifies ATM skimmers by comparing against reference images, detects manipulated utility meters through seal verification, and flags forged identity documents via microprint and font analysis. Each finding includes a fraud probability score and recommended action.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In AAMOS</span>
|
||
<p>A bank submits daily ATM photos to AMOS Fraud. The engine flags one machine with a 97% fraud probability — a card reader overlay detected through dimensional analysis and texture inconsistency. The alert triggers immediate lockdown before any customer data is compromised.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#amos-identity">AMOS Identity</a>
|
||
<a href="#liveness">Liveness</a>
|
||
<a href="#risk-engine">Risk Engine</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="amos-identity" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">AMOS Identity</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">AI engine for identity verification, document authentication, liveness detection, and facial comparison.</p>
|
||
<p class="term-long">AMOS Identity verifies that a person is who they claim to be. It analyses government-issued IDs for forgery indicators, performs liveness checks to prevent spoofing (photos, masks, replay attacks), and compares facial biometrics against the ID photo. The engine outputs a verification confidence score, spoof probability, and document authenticity rating. It powers KYC flows for quiXzoom and enterprise customer onboarding.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In AAMOS</span>
|
||
<p>A Zoomer completes KYC via the quiXzoom app. AMOS Identity analyses their passport photo, performs a liveness challenge (blink, turn head), and compares the live face against the document — all in under 10 seconds with 99.2% confidence.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#liveness">Liveness</a>
|
||
<a href="#smart-scan">Smart Scan</a>
|
||
<a href="#kyc">KYC</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="amos-infrastructure" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">AMOS Infrastructure</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">AI engine for analysing roads, bridges, buildings, poles, signs, and other physical infrastructure assets.</p>
|
||
<p class="term-long">AMOS Infrastructure ingests visual observations of built assets and outputs condition assessments: crack detection, corrosion scoring, vegetation encroachment, signage legibility, and structural anomaly flags. It compares current observations against historical baselines to detect change and deterioration trends. Outputs include per-asset condition indices, maintenance priority rankings, and georeferenced anomaly maps.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In AAMOS</span>
|
||
<p>A county uploads 5,000 road segment observations. AMOS Infrastructure detects 312 potholes, 47 cracked culverts, and 23 faded road markings — each geotagged, severity-scored, and mapped for maintenance crew dispatch.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#amos-vision">AMOS Vision</a>
|
||
<a href="#change-engine">Change Engine</a>
|
||
<a href="#infrastructure-risk-index">Infrastructure Risk Index</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="amos-inspection" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">AMOS Inspection</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">General-purpose AI engine for quality control, industrial inspection, and defect detection across manufacturing and logistics.</p>
|
||
<p class="term-long">AMOS Inspection applies computer vision to quality assurance scenarios: surface defect detection on production lines, packaging integrity verification, assembly completeness checks, and logistics damage assessment. Unlike Infrastructure (which focuses on civil assets), Inspection handles manufactured goods, equipment, and industrial processes. It integrates with conveyor systems, drone feeds, and handheld inspection devices.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In AAMOS</span>
|
||
<p>A manufacturer feeds conveyor-belt camera streams to AMOS Inspection. The engine detects paint scratches, dimensional deviations, and missing components in real time — rejecting 0.3% of units with 99.7% accuracy, reducing manual QC headcount by 60%.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#amos-vision">AMOS Vision</a>
|
||
<a href="#amos-safety">AMOS Safety</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="amos-safety" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">AMOS Safety</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">AI engine for detecting PPE compliance, workplace hazards, and safety protocol violations.</p>
|
||
<p class="term-long">AMOS Safety analyses visual feeds from construction sites, factories, and field operations to identify safety risks: missing hard hats, unguarded machinery, blocked emergency exits, improper ladder use, and chemical storage violations. It generates real-time alerts for immediate intervention and compiles safety scorecards for management review. The engine learns site-specific safety protocols and adapts detection rules per environment.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In AAMOS</span>
|
||
<p>A construction site safety officer receives an alert: AMOS Safety detected a worker without a harness at height in Zone B. The alert includes a timestamped photo, GPS location, and worker ID (if visible). Response time from detection to alert: 3.2 seconds.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#amos-compliance">AMOS Compliance</a>
|
||
<a href="#amos-inspection">AMOS Inspection</a>
|
||
<a href="#reality-alerts">Reality Alerts</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="amos-vision" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">AMOS Vision</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">Core AI engine for object recognition, anomaly detection, and damage classification in visual data.</p>
|
||
<p class="term-long">AMOS Vision is the foundational computer vision engine powering all other AAMOS modules. It performs object detection (YOLO-based), instance segmentation, image classification, and anomaly detection on visual inputs. The engine runs on ONNX-exported models for cross-platform deployment (cloud, edge, mobile). It is the first processing layer for every visual observation entering the AAMOS pipeline.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In AAMOS</span>
|
||
<p>A drone captures aerial imagery of a solar farm. AMOS Vision detects 12 panels with hot-spot anomalies, 3 with physical cracks, and flags one inverter housing with corrosion — all in a single pass, processed in 2.1 seconds per image.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#yolo">YOLO</a>
|
||
<a href="#onnx">ONNX</a>
|
||
<a href="#ai-training-pipeline">AI Training Pipeline</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="authenticate" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">/authenticate</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">API endpoint that verifies identity by comparing a live capture against a trusted reference (ID photo, enrolled biometric).</p>
|
||
<p class="term-long">The /authenticate endpoint accepts a live image or video stream and a reference image (e.g., passport photo, previously enrolled face), then returns a match confidence score, liveness verification result, and spoof detection flag. It is the core of identity verification flows and access control systems. The endpoint supports 1:1 comparison only; for 1:N identification, use /identify.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">API Usage</span>
|
||
<p>POST /authenticate with {reference_image: "base64...", capture: "base64...", challenge_type: "blink"} returns {match_confidence: 0.987, liveness_passed: true, spoof_probability: 0.002}.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#amos-identity">AMOS Identity</a>
|
||
<a href="#liveness">Liveness</a>
|
||
<a href="#verify">/verify</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="avo" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">AVO</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">AMOS Vision Orchestrator — real-time guidance system that directs field capture to ensure sufficient evidence quality.</p>
|
||
<p class="term-long">AVO is an orchestration layer that guides field data collection through two phases: Phase A (live guidance) provides real-time feedback to the capture device — "move closer," "adjust angle," "increase lighting" — ensuring the captured media meets quality thresholds before submission. Phase B (post-capture) validates that the submitted evidence satisfies the verified_claim requirements for the specific knowledge pack (vehicle_wheel, building_facade, passport, etc.). AVO is the bridge between raw capture and verified evidence.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In quiXzoom</span>
|
||
<p>A Zoomer photographs a building facade. AVO Phase A guides them: "Step back 2 metres," "Centre the entrance," "Wait for shadow to pass." After capture, AVO Phase B confirms the image contains sufficient detail for crack detection — trust_achieved = 0.91, exceeding the 0.85 threshold.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#smart-scan">Smart Scan</a>
|
||
<a href="#verified-claim">Verified Claim</a>
|
||
<a href="#sufficiency">Sufficiency</a>
|
||
</div>
|
||
</article>
|
||
|
||
</section>
|
||
|
||
<!-- B -->
|
||
<section class="letter-section" id="b">
|
||
<div class="letter-heading"><h2>B</h2><span class="letter-count"></span></div>
|
||
|
||
<article id="batch-mission" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Batch Mission</h3>
|
||
<span class="term-category cat-quixzoom">quiXzoom</span>
|
||
</div>
|
||
<p class="term-short">A grouped set of missions in the same geographic area, designed for efficient multi-stop field collection.</p>
|
||
<p class="term-long">Batch missions aggregate individual data collection tasks into optimised routes. A Zoomer can complete 8–12 observations in a single 45-minute round, dramatically increasing earnings per hour and reducing travel overhead. Batch missions are the primary mechanism for building corridor density in the quiXzoom network. They appear as a single claimable unit with a unified time window and payout.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In quiXzoom</span>
|
||
<p>A Zoomer claims a batch of 10 storefront observations in central Stockholm. The app provides an optimised walking route. They complete all 10 in 52 minutes, earning $45 — versus $12 for a single mission.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#mission">Mission</a>
|
||
<a href="#zoomer">Zoomer</a>
|
||
<a href="#coverage-map">Coverage Map</a>
|
||
</div>
|
||
</article>
|
||
|
||
</section>
|
||
|
||
<!-- C -->
|
||
<section class="letter-section" id="c">
|
||
<div class="letter-heading"><h2>C</h2><span class="letter-count"></span></div>
|
||
|
||
<article id="change-engine" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Change Engine</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">AMOS engine that detects differences between current observations and historical baseline data — surfacing what has changed in the physical world.</p>
|
||
<p class="term-long">The Change Engine compares new observations against prior data to identify additions, removals, or modifications to physical assets. It operates at multiple scales: pixel-level differences in repeated photographs, structural changes through computer vision, and semantic changes (e.g., "this was a parking lot, now it's construction"). Each detected change is scored by confidence and severity, and flagged as a Contradiction when it represents an unexpected deviation. The Change Engine powers infrastructure monitoring, property condition tracking, and environmental surveillance.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In AAMOS</span>
|
||
<p>A quarterly observation of a retail park shows three new storefronts and one demolished unit compared to the baseline from six months ago. The Change Engine automatically flags these modifications, updates the asset registry, and alerts the property manager.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#reality-engine">Reality Engine</a>
|
||
<a href="#risk-engine">Risk Engine</a>
|
||
<a href="#contradiction-analysis">Contradiction Analysis</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="classify" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">/classify</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">API endpoint that categorises an image or object into predefined classes with confidence scores.</p>
|
||
<p class="term-long">The /classify endpoint assigns input media to one or more categories from a trained taxonomy. Unlike /detect (which finds objects), /classify answers "what is this?" for the entire input. It supports multi-label classification (an image can belong to multiple classes) and hierarchical taxonomies (e.g., Vehicle → Car → Sedan). Confidence scores are calibrated and include an "unknown" class for inputs that don't match any trained category.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">API Usage</span>
|
||
<p>POST /classify with {image: "base64...", taxonomy: "infrastructure_damage"} returns {classes: [{label: "crack", confidence: 0.94}, {label: "spalling", confidence: 0.71}], top_class: "crack"}.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#detect">/detect</a>
|
||
<a href="#segment">/segment</a>
|
||
<a href="#score">/score</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="compare" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">/compare</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">API endpoint that analyses two images of the same asset and reports differences, similarities, and change severity.</p>
|
||
<p class="term-long">The /compare endpoint is the programmatic interface to the Change Engine. It accepts a baseline image and a current image (plus optional GPS and timestamp metadata), aligns them geometrically, and outputs a structured change report: added elements, removed elements, modified regions, severity scores per change, and an overall change index. It is used for automated condition monitoring, insurance claims validation, and regulatory compliance verification.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">API Usage</span>
|
||
<p>POST /compare with {baseline: "base64...", current: "base64...", asset_id: "BR-2847"} returns {changes: 3, severity: "moderate", details: [...], change_index: 0.34}.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#change-engine">Change Engine</a>
|
||
<a href="#detect">/detect</a>
|
||
<a href="#track">/track</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="control-intelligence" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Control Intelligence</h3>
|
||
<span class="term-category cat-landvex">Landvex</span>
|
||
</div>
|
||
<p class="term-short">Descriptive intelligence that tells you the current state of your physical assets — what is, not what to do.</p>
|
||
<p class="term-long">Control Intelligence answers the question: "What is the current condition of my assets?" It is the foundational layer of insight derived from observations, describing reality as it exists today: which bridges are sound, which buildings have damage, which roads need repair. Control Intelligence is objective, measurable, and verifiable. It is the raw material from which Decision Intelligence is forged — you cannot decide what to do until you know what is. Landvex delivers Control Intelligence as indices, scores, and contradiction flags.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In Landvex</span>
|
||
<p>A municipality receives Control Intelligence showing that 12% of its road bridges have surface cracking, 3% have structural concerns, and 85% are in good condition. This descriptive baseline is the starting point for all maintenance and investment decisions.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#decision-intelligence">Decision Intelligence</a>
|
||
<a href="#infrastructure-risk-index">Infrastructure Risk Index</a>
|
||
<a href="#reality-gap">Reality Gap</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="coverage-map" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Coverage Map</h3>
|
||
<span class="term-category cat-quixzoom">quiXzoom</span>
|
||
</div>
|
||
<p class="term-short">A geographic visualisation showing where quiXzoom observations have been collected, updated, and verified.</p>
|
||
<p class="term-long">The Coverage Map displays observation density, freshness, and quality across geographic regions. It answers the critical question for PBOI customers: "How complete is my data?" Coverage is expressed as a percentage of target assets observed within a defined polygon, with colour-coding by refresh SLA compliance. Green = observed within SLA, Yellow = approaching expiry, Red = stale or missing. Coverage Maps are a core component of Landvex subscription offerings.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In Landvex</span>
|
||
<p>A property manager views the Coverage Map for their retail portfolio: 94% of storefronts have observations within 30 days, 4% are approaching refresh, and 2% have no recent data. They order targeted missions for the red zones.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#refresh-sla">Refresh SLA</a>
|
||
<a href="#pboi">PBOI</a>
|
||
<a href="#batch-mission">Batch Mission</a>
|
||
</div>
|
||
</article>
|
||
|
||
</section>
|
||
|
||
<!-- D -->
|
||
<section class="letter-section" id="d">
|
||
<div class="letter-heading"><h2>D</h2><span class="letter-count"></span></div>
|
||
|
||
<article id="decision-intelligence" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Decision Intelligence</h3>
|
||
<span class="term-category cat-landvex">Landvex</span>
|
||
</div>
|
||
<p class="term-short">Actionable recommendations derived from observations through AMOS — the end product of the Landvex ecosystem.</p>
|
||
<p class="term-long">Decision Intelligence is not data. It is not reports. It is the answer to a specific question: Which asset should I repair first? Where should I open my next store? Which claims are fraudulent? Landvex delivers Decision Intelligence by combining quiXzoom observations, AMOS analysis, and domain expertise into structured recommendations that directly enable decisions. Every output includes a confidence score and traceable source data. Decision Intelligence transforms Control Intelligence (what is) into prescriptive guidance.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In Landvex</span>
|
||
<p>An insurance underwriter receives Decision Intelligence showing that a commercial property's roof condition has degraded from Index 78 to Index 52 over 18 months. The recommendation: require a professional inspection before renewal, with a premium adjustment of +12% if repairs are not completed within 90 days.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#control-intelligence">Control Intelligence</a>
|
||
<a href="#amos">AAMOS</a>
|
||
<a href="#pboi">PBOI</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="detect" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">/detect</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">API endpoint that finds and locates objects within an image, returning bounding boxes, labels, and confidence scores.</p>
|
||
<p class="term-long">The /detect endpoint is the primary object detection interface. It accepts an image and a model identifier, runs inference using the specified YOLO/ONNX model, and returns a list of detected objects with normalised bounding box coordinates (x, y, width, height), class labels, and confidence scores. It supports batch processing for high-throughput scenarios and can be configured with confidence thresholds and NMS (non-maximum suppression) parameters.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">API Usage</span>
|
||
<p>POST /detect with {image: "base64...", model: "amos-vision-v2.3", confidence_threshold: 0.5} returns {detections: [{label: "pothole", confidence: 0.94, bbox: [0.12, 0.45, 0.23, 0.18]}, ...]}.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#amos-vision">AMOS Vision</a>
|
||
<a href="#segment">/segment</a>
|
||
<a href="#yolo">YOLO</a>
|
||
</div>
|
||
</article>
|
||
|
||
</section>
|
||
|
||
<!-- E -->
|
||
<section class="letter-section" id="e">
|
||
<div class="letter-heading"><h2>E</h2><span class="letter-count"></span></div>
|
||
|
||
<article id="evidence-engine" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Evidence Engine</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">AMOS engine that builds traceable evidence chains for audit, insurance, and legal proceedings.</p>
|
||
<p class="term-long">The Evidence Engine constructs immutable, cryptographically signed chains of custody for every observation and analysis result. Each link in the chain includes: the original capture (with EXIF, GPS, timestamp), the processing pipeline version, the model version used, the analyst (human or AI), and the output. Chains are append-only and tamper-evident — any modification breaks the signature. The Evidence Engine ensures that Landvex outputs are admissible in legal and regulatory contexts.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In AAMOS</span>
|
||
<p>An insurer disputes a claim denial. The Evidence Engine produces the complete chain: original storm-damage photo (GPS: 59.3312°N, 18.0685°E, 09:47:23 UTC), AMOS Vision v2.3 analysis, human reviewer confirmation, and final decision — all signed with Ed25519 and timestamped on the immutable ledger.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#verified-claim">Verified Claim</a>
|
||
<a href="#reality-engine">Reality Engine</a>
|
||
<a href="#exif">EXIF</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="explain" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">/explain</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">API endpoint that generates human-readable explanations for AI decisions, including visual attention maps and reasoning traces.</p>
|
||
<p class="term-long">The /explain endpoint addresses the "black box" problem of AI. For any detection, classification, or scoring result, it produces: a saliency map (which pixels influenced the decision), a textual rationale ("classified as 'crack' because of linear dark region with edge discontinuity"), and a confidence breakdown (which features contributed how much). Explanations are essential for regulatory compliance, customer trust, and model debugging. The endpoint supports multiple explanation methods: LIME, SHAP, and integrated gradients.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">API Usage</span>
|
||
<p>POST /explain with {image: "base64...", result_id: "det-28471", method: "shap"} returns {saliency_map: "base64...", rationale: "Detected crack: linear feature 43px long, contrast 0.34, edges sharp", feature_importance: [{feature: "linearity", weight: 0.41}, ...]}.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#score">/score</a>
|
||
<a href="#detect">/detect</a>
|
||
<a href="#confidence-score">Confidence Score</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="extract" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">/extract</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">API endpoint that pulls structured data from unstructured visual inputs — OCR, barcode reading, serial number recognition, and form field extraction.</p>
|
||
<p class="term-long">The /extract endpoint transforms visual information into structured data. It performs OCR on documents and signs, reads QR codes and barcodes, recognises serial numbers and VINs, and extracts form fields from structured documents. It handles rotated, skewed, and low-contrast inputs through preprocessing pipelines. Output is JSON with normalised text, bounding boxes per field, and confidence per extraction.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">API Usage</span>
|
||
<p>POST /extract with {image: "base64...", extraction_type: "serial_number", region_of_interest: [0.2, 0.3, 0.5, 0.4]} returns {serial_number: "SN-2847193", confidence: 0.97, bbox: [0.25, 0.35, 0.15, 0.05]}.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#amos-identity">AMOS Identity</a>
|
||
<a href="#verify">/verify</a>
|
||
</div>
|
||
</article>
|
||
|
||
</section>
|
||
|
||
<!-- F -->
|
||
<section class="letter-section" id="f">
|
||
<div class="letter-heading"><h2>F</h2><span class="letter-count"></span></div>
|
||
|
||
<article id="field-data" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Field Data</h3>
|
||
<span class="term-category cat-quixzoom">quiXzoom</span>
|
||
</div>
|
||
<p class="term-short">Structured observations captured on location by verified Zoomers — the raw material of the Landvex intelligence pipeline.</p>
|
||
<p class="term-long">Field Data is not just photos. It is a complete, verified record of physical reality at a specific place and time: geolocation (GPS coordinates with accuracy estimate), timestamp (when captured), media (images or video), and metadata (device, conditions, mission context). Field Data is quality-checked by AI before entering the dataset. It is the foundational input from which all AAMOS analysis and Landvex intelligence is derived. Without Field Data, there is no intelligence.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In quiXzoom</span>
|
||
<p>A Zoomer captures 6 images of a road segment. Each image becomes part of a Field Data record that includes GPS, timestamp, and mission context. AI review verifies the record before it enters the AMOS dataset.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#observation">Observation</a>
|
||
<a href="#raw-data">Raw Data</a>
|
||
<a href="#geotagged">Geotagged</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="fraud" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Fraud</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">See <a href="#amos-fraud" style="color:var(--primary);font-weight:600;">AMOS Fraud</a>.</p>
|
||
</article>
|
||
|
||
</section>
|
||
|
||
<!-- G -->
|
||
<section class="letter-section" id="g">
|
||
<div class="letter-heading"><h2>G</h2><span class="letter-count"></span></div>
|
||
|
||
<article id="geotagged" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Geotagged</h3>
|
||
<span class="term-category cat-quixzoom">quiXzoom</span>
|
||
</div>
|
||
<p class="term-short">An image embedded with GPS coordinates at capture time, proving where the photo was physically taken.</p>
|
||
<p class="term-long">Geotagging writes latitude, longitude, and altitude into the image's EXIF metadata at the moment of capture. All quiXzoom submissions must be geotagged — this is enforced by the app. Submissions without GPS data are rejected before upload. Geotagging is the foundation of location verification: without it, there is no way to confirm the observation was captured at the correct mission location.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In quiXzoom</span>
|
||
<p>The quiXzoom app requires location permissions. When a Zoomer captures a photo, GPS coordinates are written to EXIF automatically. A photo from a regular camera app without geotagging would fail AI review immediately.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#exif">EXIF</a>
|
||
<a href="#gps">GPS</a>
|
||
<a href="#timestamped">Timestamped</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="guided-evidence" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Guided Evidence</h3>
|
||
<span class="term-category cat-quixzoom">quiXzoom</span>
|
||
</div>
|
||
<p class="term-short">A structured capture protocol where AVO guides the Zoomer to collect specific evidence types from defined vantage points.</p>
|
||
<p class="term-long">Guided Evidence is the quiXzoom capture mode for complex missions. Instead of free-form photography, the Zoomer follows a step-by-step protocol: "Photograph the north facade from 5 metres," "Capture the serial number plate," "Document the damage area with a reference object." AVO validates each step in real time and prevents submission until all required evidence is collected. Guided Evidence produces higher-quality, more consistent data than unstructured capture.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In quiXzoom</span>
|
||
<p>A bridge inspection mission uses Guided Evidence. The Zoomer is prompted for 6 specific shots: approach view, deck surface, underside, railing, expansion joint, and reference marker. AVO confirms each shot meets quality standards before allowing submission.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#avo">AVO</a>
|
||
<a href="#smart-scan">Smart Scan</a>
|
||
<a href="#verified-claim">Verified Claim</a>
|
||
</div>
|
||
</article>
|
||
|
||
</section>
|
||
|
||
<!-- H -->
|
||
<section class="letter-section" id="h">
|
||
<div class="letter-heading"><h2>H</h2><span class="letter-count"></span></div>
|
||
|
||
<article id="hmac-sha256" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">HMAC-SHA256</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">A cryptographic signature method used to verify that webhook payloads and API responses were genuinely sent by AAMOS and not tampered with in transit.</p>
|
||
<p class="term-long">HMAC (Hash-based Message Authentication Code) with SHA-256 combines the payload with a shared secret key to produce a unique signature. AAMOS attaches this signature to every webhook request and sensitive API response. The receiving system recomputes the signature and compares — if they match, the payload is authentic and unmodified. This is industry-standard practice used by Stripe, GitHub, and other major API providers.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In AAMOS</span>
|
||
<p>An enterprise customer's system receives a webhook when a batch analysis completes. Before processing, their server verifies the HMAC-SHA256 signature against their shared secret — confirming the event genuinely originated from AAMOS.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#webhook">Webhook</a>
|
||
<a href="#api">API</a>
|
||
</div>
|
||
</article>
|
||
|
||
</section>
|
||
|
||
<!-- I -->
|
||
<section class="letter-section" id="i">
|
||
<div class="letter-heading"><h2>I</h2><span class="letter-count"></span></div>
|
||
|
||
<article id="identity" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Identity</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">See <a href="#amos-identity" style="color:var(--primary);font-weight:600;">AMOS Identity</a>.</p>
|
||
</article>
|
||
|
||
<article id="infrastructure" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Infrastructure</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">See <a href="#amos-infrastructure" style="color:var(--primary);font-weight:600;">AMOS Infrastructure</a>.</p>
|
||
</article>
|
||
|
||
<article id="infrastructure-risk-index" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Infrastructure Risk Index</h3>
|
||
<span class="term-category cat-landvex">Landvex</span>
|
||
</div>
|
||
<p class="term-short">A composite score (0–100) representing the overall risk level of an infrastructure asset based on visual condition, historical trends, and environmental factors.</p>
|
||
<p class="term-long">The Infrastructure Risk Index aggregates multiple signals from AMOS analysis: surface condition scores, structural anomaly counts, change severity, age estimates, and environmental stress factors (freeze-thaw cycles, traffic load, proximity to water). A score of 0–30 indicates low risk (routine maintenance), 31–60 moderate risk (monitor closely), 61–80 high risk (plan intervention), and 81–100 critical risk (immediate action required). The index is recalculated with every new observation and includes confidence intervals.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In Landvex</span>
|
||
<p>A county's bridge inventory shows an average Risk Index of 42. Three bridges score above 75: one with accelerating crack propagation, one with severe spalling, and one with scour damage. The county prioritises these three for detailed engineering inspection.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#amos-infrastructure">AMOS Infrastructure</a>
|
||
<a href="#risk-engine">Risk Engine</a>
|
||
<a href="#control-intelligence">Control Intelligence</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="inspection" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Inspection</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">See <a href="#amos-inspection" style="color:var(--primary);font-weight:600;">AMOS Inspection</a>.</p>
|
||
</article>
|
||
|
||
</section>
|
||
|
||
<!-- J K -->
|
||
<section class="letter-section" id="j">
|
||
<div class="letter-heading"><h2>J</h2><span class="letter-count"></span></div>
|
||
<article id="json" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">JSON</h3>
|
||
<span class="term-category cat-technical">Technical</span>
|
||
</div>
|
||
<p class="term-short">JavaScript Object Notation — the standard data format for all AAMOS API requests and responses.</p>
|
||
<p class="term-long">JSON is a lightweight, human-readable data interchange format used throughout the AAMOS API. All endpoints accept JSON payloads and return JSON responses. Structured outputs include nested objects for complex results (e.g., a detection with bounding box, label, confidence, and child objects). GeoJSON (RFC 7946) is used for geographic data structures.</p>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#api">API</a>
|
||
<a href="#geojson">GeoJSON</a>
|
||
</div>
|
||
</article>
|
||
</section>
|
||
|
||
<!-- L -->
|
||
<section class="letter-section" id="l">
|
||
<div class="letter-heading"><h2>L</h2><span class="letter-count"></span></div>
|
||
|
||
<article id="landvex" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Landvex</h3>
|
||
<span class="term-category cat-landvex">Landvex</span>
|
||
</div>
|
||
<p class="term-short">Control Intelligence company operating through Landvex AB (EU) and Landvex Inc. (US) — the decision layer of the ecosystem.</p>
|
||
<p class="term-long">Landvex combines field-verified intelligence from quiXzoom, AI-driven analysis from AAMOS, and cross-market operational coverage through its European and North American entities. The Landvex platform enables infrastructure owners, governments, utilities, and enterprises to identify risks, opportunities, deficiencies, and emerging conditions before they become operational problems. Landvex does not sell AI — it sells intelligence based on AMOS engines. Key products: VIMS, Reality Alerts, RIOS, and Control Intelligence APIs.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In the ecosystem</span>
|
||
<p>quiXzoom collects 12,000 observations of bridge conditions across Sweden. AMOS processes these into condition scores. Landvex aggregates them into an Infrastructure Risk Index, adds historical trends and environmental data, and delivers a prioritised maintenance plan to the county — complete with cost estimates and confidence intervals.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#control-intelligence">Control Intelligence</a>
|
||
<a href="#decision-intelligence">Decision Intelligence</a>
|
||
<a href="#vims">VIMS</a>
|
||
<a href="#rios">RIOS</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="liveness" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Liveness</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">The verification that a captured biometric (face, fingerprint) comes from a live person, not a photo, mask, or replay.</p>
|
||
<p class="term-long">Liveness detection prevents spoofing attacks in identity verification. AAMOS Identity uses multiple liveness signals: challenge-response (blink, turn head, smile), texture analysis (detecting screen glare, paper edges, or mask seams), depth estimation (3D face geometry), and temporal consistency (natural micro-movements). A liveness score above the threshold is required for authentication to proceed. Liveness is critical for KYC, access control, and fraud prevention.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In AAMOS</span>
|
||
<p>A fraudster attempts to verify using a high-quality printed photo of a passport holder. AMOS Identity's liveness detection flags the attempt: texture analysis detects paper fibre patterns, depth estimation shows flat geometry, and the challenge-response fails (no natural blink). Spoof probability: 0.97. Verification denied.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#amos-identity">AMOS Identity</a>
|
||
<a href="#authenticate">/authenticate</a>
|
||
<a href="#smart-scan">Smart Scan</a>
|
||
</div>
|
||
</article>
|
||
|
||
</section>
|
||
|
||
<!-- M -->
|
||
<section class="letter-section" id="m">
|
||
<div class="letter-heading"><h2>M</h2><span class="letter-count"></span></div>
|
||
|
||
<article id="mission" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Mission</h3>
|
||
<span class="term-category cat-quixzoom">quiXzoom</span>
|
||
</div>
|
||
<p class="term-short">A defined data collection task on the quiXzoom platform — the atomic unit of field work.</p>
|
||
<p class="term-long">A mission specifies what to observe, where to observe it, how to capture it, and by when. It includes: a geofence (GPS boundary), a time window, a capture protocol (number of photos, required angles), a compensation amount (in USD/QZ Token), and quality criteria. Missions are created by orderers (customers) and claimed by Zoomers (field collectors). When completed and approved, the mission triggers payout and delivers the observation package to the orderer.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In quiXzoom</span>
|
||
<p>A property manager creates a mission: "Photograph the facade of 123 Main St from 3 angles, within 48 hours, compensation $8." A nearby Zoomer claims it, captures the photos, and submits. AI review approves within 90 seconds. The Zoomer earns $8; the property manager receives geotagged, timestamped facade images.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#zoomer">Zoomer</a>
|
||
<a href="#batch-mission">Batch Mission</a>
|
||
<a href="#surge-event">Surge Event</a>
|
||
</div>
|
||
</article>
|
||
|
||
</section>
|
||
|
||
<!-- O -->
|
||
<section class="letter-section" id="o">
|
||
<div class="letter-heading"><h2>O</h2><span class="letter-count"></span></div>
|
||
|
||
<article id="oauth" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">OAuth 2.0</h3>
|
||
<span class="term-category cat-technical">Technical</span>
|
||
</div>
|
||
<p class="term-short">The authentication protocol used by the AAMOS API — industry-standard delegated access without sharing passwords.</p>
|
||
<p class="term-long">AAMOS uses OAuth 2.0 with bearer tokens for API authentication. Developers register applications to receive client credentials, then exchange them for short-lived access tokens. Refresh tokens enable long-lived integrations without storing passwords. Scopes control which engines and endpoints an application can access. OAuth 2.0 is the same protocol used by Google, GitHub, and Stripe.</p>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#api">API</a>
|
||
<a href="#webhook">Webhook</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="observation" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Observation</h3>
|
||
<span class="term-category cat-quixzoom">quiXzoom</span>
|
||
</div>
|
||
<p class="term-short">A verified field record captured through quiXzoom — the fundamental unit of reality data.</p>
|
||
<p class="term-long">An observation is a structured, verified record of physical reality at a specific place and time. Every observation includes: geolocation (GPS coordinates with accuracy estimate), timestamp (when captured), media (images or video), and metadata (device, conditions, mission context). Observations are quality-checked by AI before entering the dataset. They are the raw material from which all Landvex intelligence is derived.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In quiXzoom</span>
|
||
<p>A Zoomer captures 6 images of a road segment. Each image becomes part of an observation that includes GPS, timestamp, and mission context. AI review verifies the observation before it enters the dataset.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#field-data">Field Data</a>
|
||
<a href="#amos">AAMOS</a>
|
||
<a href="#reality-signal">Reality Signal</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="onnx" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">ONNX</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">Open Neural Network Exchange — the standard format for AAMOS model deployment, enabling cross-platform inference.</p>
|
||
<p class="term-long">ONNX is an open standard for representing machine learning models. AAMOS trains models in PyTorch, then exports to ONNX for deployment. ONNX models run on multiple backends: NVIDIA GPUs (via TensorRT), Intel CPUs (via OpenVINO), mobile devices (via ONNX Runtime), and cloud instances. This flexibility allows AAMOS to deploy the same model to edge devices (quiXzoom app), on-premise servers (enterprise customers), and cloud infrastructure (high-throughput API) without retraining.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In AAMOS</span>
|
||
<p>A new crack-detection model is trained in PyTorch, validated at 94% mAP, exported to ONNX, and deployed simultaneously to: (1) the cloud API for batch processing, (2) an edge device for real-time construction site monitoring, and (3) the quiXzoom app for offline AVO guidance.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#yolo">YOLO</a>
|
||
<a href="#ai-training-pipeline">AI Training Pipeline</a>
|
||
<a href="#amos-vision">AMOS Vision</a>
|
||
</div>
|
||
</article>
|
||
|
||
</section>
|
||
|
||
<!-- P -->
|
||
<section class="letter-section" id="p">
|
||
<div class="letter-heading"><h2>P</h2><span class="letter-count"></span></div>
|
||
|
||
<article id="pboi" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">PBOI</h3>
|
||
<span class="term-category cat-landvex">Landvex</span>
|
||
</div>
|
||
<p class="term-short">Physical Business Opportunity Intelligence — proactively identified commercial needs in the built environment, delivered as qualified leads.</p>
|
||
<p class="term-long">PBOI is Landvex's highest-value product. Instead of waiting for customers to request observations, Landvex continuously monitors the built environment through the quiXzoom network and identifies business opportunities: dirty storefront windows (for cleaning services), faded facades (for painters), damaged parking signs (for maintenance contractors), vacant lots (for developers). Each opportunity is geotagged, photographed, severity-scored, and packaged as a qualified lead. PBOI transforms Landvex from a data vendor into a lead-generation platform.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In Landvex</span>
|
||
<p>A cleaning service subscribes to PBOI for Stockholm city centre. They receive a weekly report: 847 dirty storefront windows, 234 faded awnings, 89 graffiti tags — each with address, photo, severity score, and estimated job value. Their sales team prioritises the high-severity, high-value leads.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#coverage-map">Coverage Map</a>
|
||
<a href="#refresh-sla">Refresh SLA</a>
|
||
<a href="#decision-intelligence">Decision Intelligence</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="prediction-engine" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Prediction Engine</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">AMOS engine that estimates the likely future evolution of asset conditions, risk levels, and maintenance needs.</p>
|
||
<p class="term-long">The Prediction Engine combines historical observation trends, environmental data, material science models, and usage patterns to forecast future asset states. It answers questions like: "Given current crack propagation rates and freeze-thaw exposure, when will this bridge deck require repair?" Outputs include time-to-failure estimates, probability distributions for intervention windows, and scenario modelling (what-if traffic increases 20%?). Predictions include explicit uncertainty bounds — they are estimates, not guarantees.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In AAMOS</span>
|
||
<p>A road authority receives a prediction for Bridge 2847: "At current deterioration rates, the deck will reach critical condition (Index >75) in 18–24 months with 80% confidence. If winter salting increases, the window shortens to 12–16 months. Recommended action: detailed inspection within 6 months."</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#risk-engine">Risk Engine</a>
|
||
<a href="#infrastructure-risk-index">Infrastructure Risk Index</a>
|
||
<a href="#amos-infrastructure">AMOS Infrastructure</a>
|
||
</div>
|
||
</article>
|
||
|
||
</section>
|
||
|
||
<!-- Q -->
|
||
<section class="letter-section" id="q">
|
||
<div class="letter-heading"><h2>Q</h2><span class="letter-count"></span></div>
|
||
|
||
<article id="qx-credits" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">QX Credits</h3>
|
||
<span class="term-category cat-quixzoom">quiXzoom</span>
|
||
</div>
|
||
<p class="term-short">The internal currency unit of the quiXzoom platform, used for mission pricing, Zoomer compensation, and platform accounting.</p>
|
||
<p class="term-long">QX Credits are quiXzoom's internal accounting unit. All mission prices, Zoomer earnings, and platform transactions are denominated in QX Credits. 1 QX Credit = 1 USD (fixed exchange rate, no speculation). QX Credits provide a stable, platform-native unit of account that simplifies global operations — Zoomers in any country earn QX Credits, which are converted to their local currency at payout via Stripe Connect. Orderers purchase QX Credit packages to fund missions.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In quiXzoom</span>
|
||
<p>A mission pays 8.0 QX Credits. A Zoomer in Thailand completes and gets approval — their account is credited 8.0 QX. At Monday payout, Stripe Connect converts 8.0 USD to THB at the day's exchange rate and deposits to their Thai bank account.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#qz-token">QZ Token</a>
|
||
<a href="#zoomer">Zoomer</a>
|
||
<a href="#mission">Mission</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="qz-token" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">QZ Token</h3>
|
||
<span class="term-category cat-quixzoom">quiXzoom</span>
|
||
</div>
|
||
<p class="term-short">Blockchain-tracked token representing earned value on the quiXzoom platform — immutable, auditable, and non-speculative.</p>
|
||
<p class="term-long">The QZ Token is a blockchain-based representation of quiXzoom earnings. Each token is created when a mission is approved and stored on an immutable ledger. The ledger provides complete auditability: every token's origin (which mission, which Zoomer, which timestamp), transfer history, and redemption record is permanently recorded. QZ Tokens are NOT a cryptocurrency for trading — they are an accounting and transparency mechanism. 1 QZ Token = 1 USD = 1 QX Credit.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In quiXzoom</span>
|
||
<p>A Zoomer completes 50 missions in a month, earning 420 QZ Tokens. The blockchain ledger records each token's provenance: mission ID, approval timestamp, AI review score, and payout transaction hash. An auditor can trace every token from mission creation to bank deposit.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#qx-credits">QX Credits</a>
|
||
<a href="#zoomer">Zoomer</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="quixzoom" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">quiXzoom</h3>
|
||
<span class="term-category cat-quixzoom">quiXzoom</span>
|
||
</div>
|
||
<p class="term-short">Field Intelligence Network — the global crowdsourced data collection platform that feeds the Landvex ecosystem.</p>
|
||
<p class="term-long">quiXzoom is a marketplace where orderers (customers) post data collection missions and Zoomers (verified field contributors) complete them for compensation. It is a standalone product and brand, not a module of AAMOS. quiXzoom uses AAMOS engines under the hood for AI review and quality control, but presents itself as an independent field intelligence platform. quiXzoom's purpose is to collect verified, geotagged, timestamped observations of physical reality at global scale.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In the ecosystem</span>
|
||
<p>quiXzoom collects 50,000 observations per month across 12 countries. These feed into AAMOS for analysis and Landvex for intelligence products. The same Zoomer, app, and infrastructure serve both commercial (SME) and enterprise (government) customers.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#zoomer">Zoomer</a>
|
||
<a href="#mission">Mission</a>
|
||
<a href="#field-data">Field Data</a>
|
||
</div>
|
||
</article>
|
||
|
||
</section>
|
||
|
||
<!-- R -->
|
||
<section class="letter-section" id="r">
|
||
<div class="letter-heading"><h2>R</h2><span class="letter-count"></span></div>
|
||
|
||
<article id="raw-data" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Raw Data</h3>
|
||
<span class="term-category cat-quixzoom">quiXzoom</span>
|
||
</div>
|
||
<p class="term-short">Unprocessed visual captures from field operations — the input state before AI review, geotag validation, or structured packaging.</p>
|
||
<p class="term-long">Raw Data refers to the initial media files captured by Zoomers before any processing: the original JPEG/HEIC from the camera, with native EXIF, before AI review, before quality scoring, before packaging into an observation. Raw Data is retained for a limited period for dispute resolution and audit purposes, then purged according to the data retention policy. Customers never receive Raw Data — they receive processed, verified observations.</p>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#field-data">Field Data</a>
|
||
<a href="#observation">Observation</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="reality-alerts" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Reality Alerts</h3>
|
||
<span class="term-category cat-landvex">Landvex</span>
|
||
</div>
|
||
<p class="term-short">Real-time notifications triggered when AAMOS detects significant changes, contradictions, or anomalies in monitored assets.</p>
|
||
<p class="term-long">Reality Alerts are Landvex's proactive notification system. When the Change Engine or Risk Engine detects a condition that exceeds a customer's configured threshold, a Reality Alert is generated and delivered via webhook, email, SMS, or in-app notification. Alert types include: Contradiction Alert (unexpected change detected), Risk Escalation (index crossed a threshold), Coverage Gap (area hasn't been observed within SLA), and Opportunity Signal (PBOI lead identified). Each alert includes the evidence, confidence score, recommended action, and a link to the full analysis.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In Landvex</span>
|
||
<p>A property manager receives a Reality Alert: "Contradiction detected at Property 2847. New water staining on north facade not present in baseline (6 months ago). Risk Index elevated from 34 to 67. Recommended action: schedule inspection within 14 days." The alert includes the before/after comparison and the observation photo.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#change-engine">Change Engine</a>
|
||
<a href="#risk-engine">Risk Engine</a>
|
||
<a href="#contradiction-analysis">Contradiction Analysis</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="reality-engine" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Reality Engine</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">AMOS engine that verifies an image shows actual reality — not a manipulated, synthetic, or replayed scene.</p>
|
||
<p class="term-long">The Reality Engine is AAMOS's first line of defence against fraudulent or manipulated inputs. It analyses images for signs of tampering: inconsistent lighting, unnatural shadows, compression artefacts at edit boundaries, cloned regions, and AI-generated content (deepfakes). It also verifies EXIF integrity, GPS consistency, and timestamp plausibility. The Reality Engine does not determine what the image shows — it determines whether the image is trustworthy. A failed Reality Engine check blocks the observation from entering downstream analysis.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In AAMOS</span>
|
||
<p>A claim photo is submitted showing severe flood damage. The Reality Engine flags it: EXIF timestamp predates the flood event by 3 days, GPS coordinates are 200km from the claimed location, and shadow analysis suggests the photo was taken under different lighting conditions than reported. The observation is quarantined for manual review.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#evidence-engine">Evidence Engine</a>
|
||
<a href="#liveness">Liveness</a>
|
||
<a href="#amos-fraud">AMOS Fraud</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="reality-gap" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Reality Gap</h3>
|
||
<span class="term-category cat-landvex">Landvex</span>
|
||
</div>
|
||
<p class="term-short">The measurable difference between reported or planned reality and observed reality — Landvex's core detection target.</p>
|
||
<p class="term-long">The Reality Gap is the space between what should be and what is. It manifests as: infrastructure that is reported maintained but observed deteriorated, buildings that are permitted as safe but show structural concerns, or urban plans that describe green spaces but deliver concrete. Landvex's Contradiction Analysis systematically identifies Reality Gaps by comparing official records, design specifications, and historical baselines against current observations. The Reality Gap Index (RGI) quantifies this gap per asset or region.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In Landvex</span>
|
||
<p>A municipality's asset register shows Bridge 2847 as "good condition, last inspected 2024." Landvex observations reveal active crack propagation and spalling. The Reality Gap is flagged: reported condition ≠ observed condition. The Contradiction triggers a Reality Alert and updates the Infrastructure Risk Index.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#contradiction-analysis">Contradiction Analysis</a>
|
||
<a href="#reality-alerts">Reality Alerts</a>
|
||
<a href="#control-intelligence">Control Intelligence</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="reality-signal" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Reality Signal</h3>
|
||
<span class="term-category cat-quixzoom">quiXzoom</span>
|
||
</div>
|
||
<p class="term-short">A measurable, verifiable observation that describes a specific aspect of the physical world.</p>
|
||
<p class="term-long">A Reality Signal is any observation that carries information about the state of physical reality: a photo of a cracked bridge deck, a GPS-tagged image of flood damage, a timestamped record of a building's facade. Reality Signals are distinguished from synthetic or inferred data by their direct connection to physical measurement — a Zoomer was there, the camera captured light from the actual scene, the GPS recorded the actual coordinates. Reality Signals are the antidote to assumptions and desk-based estimates.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In quiXzoom</span>
|
||
<p>An insurer receives a Reality Signal showing hail damage to a factory roof — captured 6 hours after the storm, with GPS confirming the location, timestamp proving immediacy, and image quality enabling damage severity assessment. This Reality Signal replaces the traditional adjuster visit.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#observation">Observation</a>
|
||
<a href="#field-data">Field Data</a>
|
||
<a href="#confidence-score">Confidence Score</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="refresh-sla" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Refresh SLA</h3>
|
||
<span class="term-category cat-quixzoom">quiXzoom</span>
|
||
</div>
|
||
<p class="term-short">Service Level Agreement governing how frequently observations must be updated to remain current — a core component of PBOI subscriptions.</p>
|
||
<p class="term-long">The Refresh SLA defines the maximum age of observations for a given asset class and geographic area. Different asset types have different refresh requirements: dirty storefront windows need weekly refresh (conditions change fast), while building facades can be quarterly (deterioration is slower). The Coverage Map visualises SLA compliance: green = within SLA, yellow = approaching expiry, red = stale. Refresh SLA is a contractual commitment in Landvex subscription agreements.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In Landvex</span>
|
||
<p>A retail chain's PBOI subscription specifies: storefront windows = 7-day refresh, parking lots = 14-day, building exteriors = 90-day. The Coverage Map shows 96% compliance for windows, 89% for parking, and 94% for exteriors. Landvex schedules batch missions for the non-compliant zones.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#coverage-map">Coverage Map</a>
|
||
<a href="#pboi">PBOI</a>
|
||
<a href="#batch-mission">Batch Mission</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="rios" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">RIOS</h3>
|
||
<span class="term-category cat-landvex">Landvex</span>
|
||
</div>
|
||
<p class="term-short">Reality Intelligence Operating System — Landvex's platform for orchestrating data collection, analysis, and decision delivery.</p>
|
||
<p class="term-long">RIOS is the operating system that coordinates the entire Landvex intelligence pipeline. It manages: mission scheduling and dispatch to quiXzoom, data ingestion from field operations, AMOS engine orchestration, index computation, alert generation, and customer dashboard delivery. RIOS is not a product sold separately — it is the infrastructure that powers all Landvex intelligence products. Think of it as the "OS" that runs on top of the quiXzoom + AAMOS stack.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In Landvex</span>
|
||
<p>A municipal customer subscribes to Infrastructure Intelligence. RIOS automatically schedules quarterly observation missions via quiXzoom, routes the results through AMOS Infrastructure, computes Infrastructure Risk Index updates, generates Reality Alerts for anomalies, and delivers a monthly dashboard to the customer's operations team.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#vims">VIMS</a>
|
||
<a href="#landvex">Landvex</a>
|
||
<a href="#reality-alerts">Reality Alerts</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="risk-engine" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Risk Engine</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">AMOS engine that transforms observations into risk scores, probability estimates, and prioritised action lists.</p>
|
||
<p class="term-long">The Risk Engine ingests observation data (condition scores, anomaly counts, change severity) and combines it with contextual factors (asset age, material type, environmental exposure, usage intensity) to produce risk assessments. It outputs: per-asset risk scores, portfolio-level risk distributions, time-to-intervention estimates, and cost-weighted priority rankings. The Risk Engine supports multiple risk models: structural failure, insurance claim likelihood, maintenance cost escalation, and safety incident probability.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In AAMOS</span>
|
||
<p>A property portfolio of 500 buildings is analysed. The Risk Engine identifies 23 buildings in the top risk decile, prioritises them by cost-of-failure × probability, and recommends: 5 immediate inspections, 12 planned repairs within 6 months, and 6 monitoring-only cases. Total estimated avoided cost: $2.3M.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#prediction-engine">Prediction Engine</a>
|
||
<a href="#infrastructure-risk-index">Infrastructure Risk Index</a>
|
||
<a href="#amos-infrastructure">AMOS Infrastructure</a>
|
||
</div>
|
||
</article>
|
||
|
||
</section>
|
||
|
||
<!-- S -->
|
||
<section class="letter-section" id="s">
|
||
<div class="letter-heading"><h2>S</h2><span class="letter-count"></span></div>
|
||
|
||
<article id="safety" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Safety</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">See <a href="#amos-safety" style="color:var(--primary);font-weight:600;">AMOS Safety</a>.</p>
|
||
</article>
|
||
|
||
<article id="score" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">/score</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">API endpoint that assigns a numerical score to an image, object, or asset based on trained quality, risk, or condition models.</p>
|
||
<p class="term-long">The /score endpoint produces calibrated numerical assessments. Unlike /classify (which assigns categories), /score returns a continuous value on a defined scale. Score types include: condition score (0–100, where 100 = perfect), risk score (0–100, where 100 = critical), quality score (0–100, where 100 = publication-ready), and custom scores trained for specific domains. Each score includes confidence intervals and the contributing feature breakdown.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">API Usage</span>
|
||
<p>POST /score with {image: "base64...", score_type: "facade_condition"} returns {score: 67, confidence: 0.91, scale: "0-100", breakdown: [{feature: "crack_density", contribution: -12}, {feature: "cleanliness", contribution: +8}, ...]}.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#explain">/explain</a>
|
||
<a href="#classify">/classify</a>
|
||
<a href="#confidence-score">Confidence Score</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="segment" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">/segment</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">API endpoint that performs instance segmentation — identifying the exact pixel boundaries of objects within an image.</p>
|
||
<p class="term-long">The /segment endpoint goes beyond /detect (bounding boxes) to produce pixel-accurate masks for each detected object. Segmentation enables precise area measurement (e.g., "crack covers 0.34 m²"), damage quantification, and detailed visual analysis. It supports both semantic segmentation (class per pixel) and instance segmentation (individual object masks). Output includes polygon coordinates, mask area, and per-pixel confidence.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">API Usage</span>
|
||
<p>POST /segment with {image: "base64...", model: "amos-infrastructure-v3.1", classes: ["crack", "spall", "stain"]} returns {segments: [{class: "crack", mask: "base64...", area_px: 2847, confidence: 0.93, polygon: [...]}, ...]}.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#detect">/detect</a>
|
||
<a href="#amos-vision">AMOS Vision</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="smart-scan" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Smart Scan</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">AI-guided capture mode that automatically detects when sufficient visual evidence has been collected and signals completion.</p>
|
||
<p class="term-long">Smart Scan is the entry-level AVO mode. As the Zoomer captures images, AMOS Vision analyses them in real time and provides feedback: "Damage detected — capture closer," "Insufficient lighting — retry," "Object complete — move to next." When the sufficiency threshold is reached (trust_achieved ≥ trust_threshold), Smart Scan signals completion with a green indicator. This removes guesswork from field capture and ensures consistent evidence quality across different Zoomers and conditions.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In quiXzoom</span>
|
||
<p>A Zoomer photographs a damaged road surface. Smart Scan guides: "Crack detected. Step closer." They move closer. "Good. Capture 2 more angles." They do. "Evidence sufficient. Submit." The entire interaction takes 45 seconds and produces analysis-ready imagery.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#avo">AVO</a>
|
||
<a href="#sufficiency">Sufficiency</a>
|
||
<a href="#verified-claim">Verified Claim</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="sufficiency" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Sufficiency</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">The determination that enough evidence has been collected to support a verified claim — calculated per-claim, never globally.</p>
|
||
<p class="term-long">Sufficiency is AVO's core decision function. For each verified_claim, the system accumulates evidence quality signals: image sharpness, coverage of required angles, presence of key features, liveness confirmation, and cross-validation consistency. The sufficiency formula is: trust_achieved = Σ (weight_i × confidence_i × liveness_factor). When trust_achieved ≥ trust_threshold, the claim is marked sufficient. The threshold is set per knowledge pack and per claim type — never globally. This ensures that a passport verification requires different evidence than a facade inspection.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In AAMOS</span>
|
||
<p>A vehicle wheel inspection requires: full tread visible, sidewall captured, valve stem readable, and reference object present. AVO accumulates trust for each element. After 4 photos, trust_achieved = 0.91, exceeding the 0.85 threshold. The claim is marked sufficient and the Zoomer is prompted to submit.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#avo">AVO</a>
|
||
<a href="#smart-scan">Smart Scan</a>
|
||
<a href="#verified-claim">Verified Claim</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="surge-event" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Surge Event</h3>
|
||
<span class="term-category cat-quixzoom">quiXzoom</span>
|
||
</div>
|
||
<p class="term-short">High-urgency mission deployment after acute events — storms, floods, accidents — offering elevated compensation for rapid documentation.</p>
|
||
<p class="term-long">Surge events are time-critical mission activations triggered by disasters or emergencies. They carry 2–5× standard compensation to incentivise rapid response. Surge alerts are pushed as priority notifications to all Zoomers in the affected zone, with Professional tier Zoomers notified first. Surge missions typically have tighter specifications and stricter AI review given their legal and claims significance. They are the primary mechanism for post-disaster damage documentation.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In quiXzoom</span>
|
||
<p>A severe storm hits coastal Sweden. An insurer activates 40 surge missions across 12 postcodes within 20 minutes. Zoomers receive priority push notifications — missions pay $35 each (vs. $12 standard) with a 3-hour time window. 38 of 40 missions are claimed within 45 minutes.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#mission">Mission</a>
|
||
<a href="#zoomer">Zoomer</a>
|
||
<a href="#reality-alerts">Reality Alerts</a>
|
||
</div>
|
||
</article>
|
||
|
||
</section>
|
||
|
||
<!-- T -->
|
||
<section class="letter-section" id="t">
|
||
<div class="letter-heading"><h2>T</h2><span class="letter-count"></span></div>
|
||
|
||
<article id="timestamped" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Timestamped</h3>
|
||
<span class="term-category cat-quixzoom">quiXzoom</span>
|
||
</div>
|
||
<p class="term-short">An observation or image that carries a precise capture time, proving when the data was collected.</p>
|
||
<p class="term-long">Timestamps are embedded in image EXIF metadata at capture time and cross-validated by server-side ingestion timestamps. They prove that an observation was made within a required time window — critical for insurance claims, regulatory compliance, and legal evidence. Timestamp verification includes: EXIF timestamp vs. server time drift check (rejecting images with suspicious future or past dates), mission time window compliance, and chain-of-custody timestamping on the immutable ledger.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In quiXzoom</span>
|
||
<p>An insurer requires flood documentation within 6 hours of a storm. The EXIF timestamp on each photo, cross-referenced with server ingestion time, provides tamper-evident proof that documentation falls within the required window.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#geotagged">Geotagged</a>
|
||
<a href="#exif">EXIF</a>
|
||
<a href="#evidence-engine">Evidence Engine</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="track" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">/track</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">API endpoint that follows an object or asset across multiple observations over time, maintaining identity and building a temporal history.</p>
|
||
<p class="term-long">The /track endpoint enables longitudinal analysis by associating observations of the same asset across time. It uses visual features, GPS proximity, and metadata matching to establish identity persistence. Output includes: a timeline of observations, condition trend graphs, change event logs, and predictive trajectories. /track is essential for infrastructure monitoring, where understanding deterioration rates requires comparing the same asset across quarters or years.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">API Usage</span>
|
||
<p>POST /track with {asset_id: "BR-2847", observations: ["obs-1284", "obs-3957", "obs-4102"]} returns {timeline: [...], trend: "deteriorating", rate: "+0.12 index points/month", prediction: "critical in 18-24 months"}.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#compare">/compare</a>
|
||
<a href="#prediction-engine">Prediction Engine</a>
|
||
<a href="#change-engine">Change Engine</a>
|
||
</div>
|
||
</article>
|
||
|
||
</section>
|
||
|
||
<!-- U -->
|
||
<section class="letter-section" id="u">
|
||
<div class="letter-heading"><h2>U</h2><span class="letter-count"></span></div>
|
||
|
||
<article id="urban-intelligence-score" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Urban Intelligence Score</h3>
|
||
<span class="term-category cat-landvex">Landvex</span>
|
||
</div>
|
||
<p class="term-short">A composite metric (0–100) evaluating the overall condition, safety, and functionality of an urban area based on multi-source observations.</p>
|
||
<p class="term-long">The Urban Intelligence Score aggregates multiple sub-indices into a single comparable metric: Infrastructure Risk Index, Sanitation Index, Safety Score, Commercial Vitality, and Environmental Quality. It enables city-to-city comparison, neighbourhood ranking, and trend tracking over time. The score is computed from quiXzoom observations, AMOS analysis, and external data sources (weather, traffic, public records). It is a key output for municipal customers and urban planners.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In Landvex</span>
|
||
<p>Stockholm's Norrmalm district scores 78 (up from 71 six months ago). The breakdown: Infrastructure 82, Sanitation 74, Safety 89, Commercial Vitality 81, Environmental 65. The Environmental drag is driven by construction dust and reduced green space — flagged for attention.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#infrastructure-risk-index">Infrastructure Risk Index</a>
|
||
<a href="#control-intelligence">Control Intelligence</a>
|
||
<a href="#reality-gap">Reality Gap</a>
|
||
</div>
|
||
</article>
|
||
|
||
</section>
|
||
|
||
<!-- V -->
|
||
<section class="letter-section" id="v">
|
||
<div class="letter-heading"><h2>V</h2><span class="letter-count"></span></div>
|
||
|
||
<article id="verified-claim" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Verified Claim</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">A cryptographically signed, immutable assertion about physical reality — the unit of truth in the AAMOS evidence system.</p>
|
||
<p class="term-long">A Verified Claim is not the image, not the evidence package, but the assertion itself: "Bridge 2847 has a crack 43cm long on the north facade, confidence 94%, observed 2026-07-12 09:47 UTC by Zoomer Z-2847." Each claim is signed with Ed25519, stored append-only, and includes provenance (who observed, what model analysed, what human reviewed). Corrections create new claims with backward references — the original remains immutable. Verified Claims are the currency of trust in the Landvex ecosystem.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In AAMOS</span>
|
||
<p>A bridge inspection produces 6 Verified Claims: "No structural damage (confidence 97%)", "Surface crack detected, 12cm (confidence 91%)", "Railing intact (confidence 99%)"... Each claim is signed, timestamped, and stored. An auditor can verify any claim's provenance back to the original observation.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#evidence-engine">Evidence Engine</a>
|
||
<a href="#sufficiency">Sufficiency</a>
|
||
<a href="#smart-scan">Smart Scan</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="verify" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">/verify</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">API endpoint that checks whether an image, document, or asset meets specified criteria — the general-purpose validation interface.</p>
|
||
<p class="term-long">The /verify endpoint is a flexible validation tool. It accepts criteria definitions ("must contain a face", "must show a readable serial number", "must be captured after 2026-01-01") and returns a pass/fail result with detailed reasoning. It is used for document verification, quality gate checks, compliance validation, and custom business rules. Criteria can be predefined (from knowledge packs) or custom (supplied in the API request).</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">API Usage</span>
|
||
<p>POST /verify with {image: "base64...", criteria: [{type: "contains", object: "face"}, {type: "readable", field: "serial_number"}, {type: "timestamp_after", date: "2026-01-01"}]} returns {passed: true, checks: [{criterion: "contains face", passed: true, confidence: 0.99}, ...]}.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#authenticate">/authenticate</a>
|
||
<a href="#extract">/extract</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="vims" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">VIMS</h3>
|
||
<span class="term-category cat-landvex">Landvex</span>
|
||
</div>
|
||
<p class="term-short">Visual Infrastructure Monitoring System — Landvex product for continuous, AI-powered monitoring of critical infrastructure assets.</p>
|
||
<p class="term-long">VIMS applies the AAMOS engine stack to critical infrastructure: bank ATMs, EV charging stations, traffic signals, utility meters, and safety equipment. It creates a visual baseline per object, then compares new observations against that baseline to detect tampering, damage, wear, or unauthorised modifications. Each anomaly is risk-classified (Green/Yellow/Orange/Red) and triggers appropriate alerts. VIMS combines quiXzoom field collection with AMOS analysis and Landvex decision delivery into a complete monitoring solution.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In Landvex</span>
|
||
<p>A bank deploys VIMS across 200 ATMs. Daily photos are compared against baselines. On day 47, VIMS flags one ATM with an Orange alert: the card reader area shows a new overlay not present in the baseline. A technician is dispatched within 2 hours. The overlay is a skimming device — caught before any customer data is compromised.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#amos-fraud">AMOS Fraud</a>
|
||
<a href="#reality-alerts">Reality Alerts</a>
|
||
<a href="#change-engine">Change Engine</a>
|
||
</div>
|
||
</article>
|
||
|
||
<article id="vision" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Vision</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">See <a href="#amos-vision" style="color:var(--primary);font-weight:600;">AMOS Vision</a>.</p>
|
||
</article>
|
||
|
||
</section>
|
||
|
||
<!-- W -->
|
||
<section class="letter-section" id="w">
|
||
<div class="letter-heading"><h2>W</h2><span class="letter-count"></span></div>
|
||
|
||
<article id="webhook" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Webhook</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">An automatic HTTP POST notification sent by AAMOS when a defined event occurs — enabling real-time integration without polling.</p>
|
||
<p class="term-long">Webhooks enable event-driven integration between AAMOS and customer systems. When a batch analysis completes, a model is deployed, or an alert threshold is crossed, AAMOS sends a JSON payload to the customer's configured webhook URL. The payload includes event type, timestamps, result summaries, and links to full results. Customers verify webhook authenticity using HMAC-SHA256 signature verification. Undelivered webhooks are retried with exponential backoff over 24 hours.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In AAMOS</span>
|
||
<p>A municipality's asset management system has an AAMOS webhook endpoint. When the quarterly bridge analysis completes, AAMOS sends a POST within seconds. The system receives the updated Risk Index, automatically re-prioritises the maintenance queue, and generates work orders for the top 10 critical assets.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#api">API</a>
|
||
<a href="#hmac-sha256">HMAC-SHA256</a>
|
||
<a href="#reality-alerts">Reality Alerts</a>
|
||
</div>
|
||
</article>
|
||
|
||
</section>
|
||
|
||
<!-- Y -->
|
||
<section class="letter-section" id="y">
|
||
<div class="letter-heading"><h2>Y</h2><span class="letter-count"></span></div>
|
||
|
||
<article id="yolo" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">YOLO</h3>
|
||
<span class="term-category cat-aamos">AAMOS</span>
|
||
</div>
|
||
<p class="term-short">You Only Look Once — the real-time object detection architecture used as the foundation for AAMOS Vision models.</p>
|
||
<p class="term-long">YOLO is a family of deep learning models designed for fast, accurate object detection in images and video. AAMOS uses YOLOv8 and YOLOv9 variants, trained on domain-specific datasets (infrastructure, safety, fraud), and exported to ONNX for cross-platform deployment. YOLO's single-pass architecture enables real-time inference: a typical AAMOS model processes a 1920×1080 image in 15–40ms on a modern GPU. This speed is essential for real-time AVO guidance and high-throughput batch processing.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In AAMOS</span>
|
||
<p>A construction site safety camera streams 30fps video to AMOS Safety. The YOLO-based model processes each frame in 22ms, enabling real-time PPE detection with <100ms end-to-end latency. A worker without a hard hat is detected and alerted within 3 frames (100ms).</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#onnx">ONNX</a>
|
||
<a href="#amos-vision">AMOS Vision</a>
|
||
<a href="#ai-training-pipeline">AI Training Pipeline</a>
|
||
</div>
|
||
</article>
|
||
|
||
</section>
|
||
|
||
<!-- Z -->
|
||
<section class="letter-section" id="z">
|
||
<div class="letter-heading"><h2>Z</h2><span class="letter-count"></span></div>
|
||
|
||
<article id="zoomer" class="term-card">
|
||
<div class="term-header">
|
||
<h3 class="term-name">Zoomer</h3>
|
||
<span class="term-category cat-quixzoom">quiXzoom</span>
|
||
</div>
|
||
<p class="term-short">A verified field data collector on the quiXzoom platform — an individual who claims missions, captures on-location photography, and earns compensation per approved submission.</p>
|
||
<p class="term-long">Zoomers are the supply side of the quiXzoom marketplace. Anyone with a compatible smartphone, a willingness to be verified (KYC via AMOS Identity), and a linked bank account can become a Zoomer. Zoomers work independently, on their own schedule, within their chosen zone. They earn per approved submission — there is no hourly pay, no minimum hours, and no obligation. Zoomers progress through tiers (Supplementary → Active → Professional) as they build volume and quality.</p>
|
||
<div class="term-context">
|
||
<span class="term-context-label">In quiXzoom</span>
|
||
<p>A freelance photographer becomes a quiXzoom Zoomer, completing identity verification and bank setup in 10 minutes. They begin claiming road survey and building inspection missions near their home, earning $8–15 per approved submission. Within 6 weeks, consistent quality qualifies them for Active tier.</p>
|
||
</div>
|
||
<div class="term-related">
|
||
<span>Related:</span>
|
||
<a href="#mission">Mission</a>
|
||
<a href="#qx-credits">QX Credits</a>
|
||
<a href="#kyc">KYC</a>
|
||
</div>
|
||
</article>
|
||
|
||
</section>
|
||
|
||
</main>
|
||
|
||
<footer class="site-footer">
|
||
<div class="footer-brands">
|
||
<a href="https://aamos.ai">AAMOS</a>
|
||
<a href="https://www.quixzoom.com">quiXzoom</a>
|
||
<a href="https://landvex.com">Landvex</a>
|
||
</div>
|
||
<p class="footer-copy">Landvex Ecosystem Glossary · A Landvex Company</p>
|
||
</footer>
|
||
|
||
<script>
|
||
// ─── Add letter counts ────────────────────────────────────────────────
|
||
document.querySelectorAll('.letter-section').forEach(section => {
|
||
const cards = section.querySelectorAll('.term-card');
|
||
const countEl = section.querySelector('.letter-count');
|
||
if (countEl) countEl.textContent = cards.length + ' term' + (cards.length !== 1 ? 's' : '');
|
||
});
|
||
|
||
// ─── Live search ──────────────────────────────────────────────────────
|
||
const searchInput = document.getElementById('glossary-search');
|
||
const emptyMsg = document.getElementById('search-empty');
|
||
const querySpan = document.getElementById('search-query');
|
||
|
||
searchInput.addEventListener('input', () => {
|
||
const q = searchInput.value.trim().toLowerCase();
|
||
|
||
if (!q) {
|
||
document.querySelectorAll('.term-card, .letter-section, .section-header').forEach(el => el.classList.remove('hidden'));
|
||
emptyMsg.classList.remove('visible');
|
||
return;
|
||
}
|
||
|
||
let anyVisible = false;
|
||
|
||
document.querySelectorAll('.letter-section').forEach(section => {
|
||
let sectionHasVisible = false;
|
||
section.querySelectorAll('.term-card').forEach(card => {
|
||
const text = card.textContent.toLowerCase();
|
||
const id = card.id.toLowerCase();
|
||
const match = text.includes(q) || id.includes(q);
|
||
card.classList.toggle('hidden', !match);
|
||
if (match) sectionHasVisible = true;
|
||
});
|
||
section.classList.toggle('hidden', !sectionHasVisible);
|
||
if (sectionHasVisible) anyVisible = true;
|
||
});
|
||
|
||
// Hide section headers during search
|
||
document.querySelectorAll('.section-header').forEach(h => h.classList.add('hidden'));
|
||
|
||
querySpan.textContent = searchInput.value.trim();
|
||
emptyMsg.classList.toggle('visible', !anyVisible);
|
||
});
|
||
|
||
// ─── A–Z active letter tracking ──────────────────────────────────────
|
||
const azLinks = document.querySelectorAll('.nav-az a');
|
||
const sections = Array.from(document.querySelectorAll('.letter-section[id]'));
|
||
|
||
const observer = new IntersectionObserver(entries => {
|
||
entries.forEach(entry => {
|
||
if (entry.isIntersecting) {
|
||
const id = entry.target.id;
|
||
azLinks.forEach(a => {
|
||
a.classList.toggle('active', a.getAttribute('href') === '#' + id);
|
||
});
|
||
}
|
||
});
|
||
}, { rootMargin: '-40% 0px -55% 0px', threshold: 0 });
|
||
|
||
sections.forEach(s => observer.observe(s));
|
||
</script>
|
||
|
||
</body>
|
||
</html>
|