DELETE FROM KEYWORDS WHERE ID_DOMAINE=3086417DoneDoneDone
URL:structure.io
Cache-Control: no-store, no-cache, must-revalidate
Connection: keep-alive
Date: Thu, 16 Jan 2025 05:27:25 GMT
Transfer-Encoding: chunked
Content-Type: text/html; charset=UTF-8
Location: https://structure.io/
Server: cloudflare
Set-Cookie: __cf_bm=_ndwAVnO_FSii8zJDkZp7G_hs6VcDZTBIAYbl9Oco1A-1737005245-1.0.1.1-UcIYHi9gFt9ZFRVfamCk.l8x5TekD03jKQ1VUZTikRLbVCKdGeTLeeACOpUrS1wYHl0qBnRHaQzHUDKbs4mgzQ; path=/; expires=Thu, 16-Jan-25 05:57:25 GMT; domain=.structure.io; HttpOnly
x-content-type-options: nosniff
x-permitted-cross-domain-policies: none
strict-transport-security: max-age=300
x-frame-options: deny
x-request-id: bdb2e4741d6ea1b3ede0c3e0ec9a311d
CF-Cache-Status: DYNAMIC
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=qqm0%2BcE53UU%2BuVMpyY4%2FjBE4ofbW4cJs6zKCuKAkwdwSJa07pxII34e1vt6JPhG9J%2FDk4lfkSvhBpd1Woq94iV9pyvstO5C7ZZIehTpe%2FYc80V1f3ulsXO0yJndatw%3D%3D"}],"group":"cf-nel","max_age":604800}
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
BC-Ray: 1
CF-RAY: 902bb23d9dbb2a0a-CDG
alt-svc: h3=":443"; ma=86400
Location => https://structure.io/
Status => 301
This and all future requests should be directed to <a href="https://structure.io/">this URI</a>.
(vide) Tentative en https
<div class="st03-comp-banner" id="st03-comp-banner">
<div class="st03-comp-banner-text">
<div class="st03-comp-banner-content">
<img src="https://cdn11.bigcommerce.com/s-4fwfwlzl1t/stencil/b4d76140-b0dc-013d-3c35-2e2401c5fc0d/img/vendor/structure/icons/close.svg" id="st03-comp-banner-close-img" alt="close">
<div class="st03-comp-banner-wrapper">
<div class="st03-comp-banner-copy">
<p class="st03-comp-banner-byline">
<span class="st03-comp-banner-header">Please Note:</span> Your app may require an update to support Structure Sensor 3. Please contact your developer ASAP. Questions? Contact us at +1 650-744-0331 or email us at <a href="mailto:partners@structure.io">partners@structure.io</a>.
</p>
</div>
<div class="st03-comp-banner-close-wrapper">
<button id="st03-comp-banner-close-btn">Close</button>
</div>
</div>
</div>
</div>
</div>
<div class="str-discount-modal" id="str-discount-modal" style="display: none;">
<div class="str-discount-modal-content">
<div class="str-discount-modal-close" onclick="closeModal()">
<img src="https://cdn11.bigcommerce.com/s-4fwfwlzl1t/stencil/b4d76140-b0dc-013d-3c35-2e2401c5fc0d/img/vendor/structure/icons/close-blk.svg" alt="close" />
</div>
<h1 id="str-discount-modal-title"></h1>
<div id="str-discount-modal-countdown"></div>
<h2 id="str-discount-modal-subtitle">20% off Structure Sensor 3. Limited time offer!</h2>
<a href="/structure-sensor-3-for-ipad">
<button class="str-btn-primary">Let's Go</button>
</a>
</div>
</div>
<script>
const modal = document.getElementById("str-discount-modal");
const title = document.getElementById("str-discount-modal-title");
const countdownContainer = document.getElementById("str-discount-modal-countdown");
// Define important dates
const now = new Date();
const blackFriday = new Date('2024-11-30T00:00:00');
const cyberMonday = new Date('2024-12-16T00:00:00');
const newYear = new Date('2025-01-01T00:00:00');
// Function to set cookies
function setCookie(name, value, expiry) {
const expires = `expires=${expiry.toUTCString()}`;
document.cookie = `${name}=${value}; ${expires}; path=/`;
}
// Function to get cookies
function getCookie(name) {
const cookieArr = document.cookie.split(';');
for (const cookie of cookieArr) {
const [key, val] = cookie.split('=').map(str => str.trim());
if (key === name) return val;
}
return null;
}
// Close modal logic
function closeModal() {
modal.style.display = 'none';
// Determine next expiry
const expiry = now < blackFriday
? blackFriday
: now < cyberMonday
? cyberMonday
: newYear;
setCookie('modal_seen', true, expiry);
}
// Countdown logic
function calculateCountdown(targetDate) {
const diff = targetDate - new Date();
if (diff <= 0) return '0d 0h 0m 0s';
const days = Math.floor(diff / (1000 * 60 * 60 * 24));
const hours = Math.floor((diff % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
const minutes = Math.floor((diff % (1000 * 60 * 60)) / (1000 * 60));
const seconds = Math.floor((diff % (1000 * 60)) / 1000);
return `${days}d ${hours}h ${minutes}m ${seconds}s`;
}
function updateCountdown(targetDate) {
countdownContainer.innerHTML = calculateCountdown(targetDate);
setInterval(() => {
countdownContainer.innerHTML = calculateCountdown(targetDate);
}, 1000);
}
// Show modal logic
function showModal() {
if (now >= newYear) return;
const cookieExists = getCookie('modal_seen');
if (cookieExists) return;
let targetDate;
if (now < blackFriday) {
title.innerHTML = 'Black Friday Sale!';
targetDate = blackFriday;
} else if (now < cyberMonday) {
title.innerHTML = 'Cyber Monday Extended Sale!';
targetDate = cyberMonday;
} else if (now < newYear) {
title.innerHTML = 'Holiday Sale!';
targetDate = newYear;
}
updateCountdown(targetDate); // Preload the countdown
modal.style.display = 'flex'; // Show modal
}
// Close modal if clicked outside content
modal.addEventListener('click', (e) => {
if (e.target === modal) closeModal();
});
// Initialize modal on page load
document.addEventListener('DOMContentLoaded', () => {
setTimeout(showModal, 2000); // Show modal 2 seconds after page load
});
</script>
<div class="home-hero">
<div class="home-hero-controls">
</div>
<div class="home-hero-banner">
<span class="home-hero-new-cutout">New</span>
<h1>Structure Sensor 3</h1>
<p>The long awaited update. 3x the greatness, changing 3D scanning forever.</p>
<div class="home-hero-button-wrapper">
<a href="/structure-sensor-3-for-ipad"><button class="home-hero-button-left">Get Yours</button></a>
<a href="/structure-sensor-3"><button class="home-hero-button-right">Learn More</button></a>
</div>
</div>
</div>
<section class="home-section home-section-0">
<div class="home-video">
<iframe src="https://www.youtube.com/embed/3eqDHLkKa-k?si=jmpe3eZIqRtNbq64?rel=0&autoplay=1&mute=1&cc_load_policy=1" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</section>
<section class="home-section home-section-1">
<div class="home-sec1-header">
<h1>Our vision.</h1>
<p>Structure envisions a world where advanced 3D sensing technology transforms healthcare by making precise diagnostics and personalized care accessible to all. Our goal is to empower healthcare providers and developers to create innovative solutions that enhance patient outcomes, utilizing optimized scanning settings tailored for various medical environments, sensors, and anatomical regions.</p><p>By offering comprehensive SDKs across multiple platforms (iOS, Android, Windows, Linux, macOS), Structure aims to drive the adoption of 3D sensing in healthcare, enabling the development of cutting-edge applications that improve diagnosis, treatment, and patient monitoring across diverse devices and operating systems.</p>
</div>
<div class="home-twofer-container">
<div class="home-twofer-text">
<h2>Durability</h2>
<p>With 3x performance and longer battery life, Structure Sensor 3 offers consistent results with 20% less power consumption. Custom-designed for thermal efficiency, it's perfect for heavy workloads. perfect for creating detailed models and landmark detection in various environments. Ideal for developers and professionals who need reliable, powerful 3D capture.</p>
<p>Looking for durability?</p>
<a href="structure-sensor-3">Discover Structure Sensor 3 <img src="https://cdn11.bigcommerce.com/s-4fwfwlzl1t/stencil/b4d76140-b0dc-013d-3c35-2e2401c5fc0d/img/vendor/structure/icons/arrow-right.svg" alt="right arrow icon"></a>
</div>
<div class="home-twofer-image">
<img src="https://cdn11.bigcommerce.com/s-4fwfwlzl1t/stencil/b4d76140-b0dc-013d-3c35-2e2401c5fc0d/img/vendor/structure/structure-sensor-3/photos/st03-sensors.jpg" alt="Structure Sensor 3" />
</div>
</div>
<div class="home-twofer-container">
<div class="home-twofer-image">
<img src="https://cdn11.bigcommerce.com/s-4fwfwlzl1t/stencil/b4d76140-b0dc-013d-3c35-2e2401c5fc0d/img/vendor/structure/structure-sensor-3/photos/st03-sensors-2.jpg" alt="Structure Sensor 3" />
</div>
<div class="home-twofer-text">
<h2>Cloud-Enabled Landmark Detection</h2>
<p>The Structure Sensor 3, paired with the Structure SDK, delivers advanced landmark detection using cloud technology. Upload scans seamlessly via the Structure Capture app on iOS devices for quick, accurate analysis.</p>
<p>Ready to take your scans to the next level?</p>
<a href="structure-sensor-3">Discover Structure Sensor 3 <img src="https://cdn11.bigcommerce.com/s-4fwfwlzl1t/stencil/b4d76140-b0dc-013d-3c35-2e2401c5fc0d/img/vendor/structure/icons/arrow-right.svg" alt="right arrow icon"></a>
</div>
</div>
<div class="home-twofer-container">
<div class="home-twofer-text">
<h2>Capture your world</h2>
<p>Structure Capture is designed for iPhone and iPad users, offering an intuitive interface to capture high-quality 3D scans. Utilizing Apple's TrueDepth technology, Structure Capture integrates seamlessly into healthcare and field applications, helping users capture and process scans efficiently.</p>
<a href="structure-capture">Discover Structure Capture<img src="https://cdn11.bigcommerce.com/s-4fwfwlzl1t/stencil/b4d76140-b0dc-013d-3c35-2e2401c5fc0d/img/vendor/structure/icons/arrow-right.svg" alt="right arrow icon"></a>
</div>
<div class="home-twofer-image">
<img src="https://cdn11.bigcommerce.com/s-4fwfwlzl1t/stencil/b4d76140-b0dc-013d-3c35-2e2401c5fc0d/img/vendor/structure/structure-capture/Xrayhead-crop.jpg" alt="Structure Capture screenshot" />
</div>
</div>
</section>
<section class="home-section home-section-3">
<div class="home-journals-tag">Medical Journals</div>
<div class="home-journals-headline">Doctors and engineers around the world use Structure.</div>
<div class="home-journals-body">Read up on the myriad of incredible use cases these brilliant minds have discovered with Structure technologies.</div>
<div class="home-journals-studies-container">
<div class="home-journals-study">
<img src="https://cdn11.bigcommerce.com/s-4fwfwlzl1t/stencil/b4d76140-b0dc-013d-3c35-2e2401c5fc0d/img/vendor/structure/stock/breast-cancer.jpg" alt="hands with pink ribbon" />
<h3>Breast Cancer Research and Treatment</h3>
<p class="home-journals-study-headline">An exploratory clinical trial of preoperative non-invasive localization before breast-conserving surgery using augmented reality technology</p>
<p class="home-journals-study-biline">May 14, 2024</p>
<p class="home-journals-study-cta"><a href="https://link.springer.com/article/10.1007/s10549-024-07272-3" target="_blank">Read the medical journal <img src="https://cdn11.bigcommerce.com/s-4fwfwlzl1t/stencil/b4d76140-b0dc-013d-3c35-2e2401c5fc0d/img/vendor/structure/icons/arrow-right.svg" alt="right arrow icon"></a></p>
</div>
<div class="home-journals-study">
<img src="https://cdn11.bigcommerce.com/s-4fwfwlzl1t/stencil/b4d76140-b0dc-013d-3c35-2e2401c5fc0d/img/vendor/structure/stock/chest-xray.jpg" alt="doctor with xray" />
<h3>Interdisciplinary Cardiovascular and Thoracic Surgery</h3>
<p class="home-journals-study-headline">Efficiency of non-operative management for pectus deformities in children using an X-ray-free protocol</p>
<p class="home-journals-study-biline">June 9, 2023</p>
<p class="home-journals-study-cta"><a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC10275914/" target="_blank">Read the medical journal <img src="https://cdn11.bigcommerce.com/s-4fwfwlzl1t/stencil/b4d76140-b0dc-013d-3c35-2e2401c5fc0d/img/vendor/structure/icons/arrow-right.svg" alt="right arrow icon"></a></p>
</div>
<div class="home-journals-study">
<img src="https://cdn11.bigcommerce.com/s-4fwfwlzl1t/stencil/b4d76140-b0dc-013d-3c35-2e2401c5fc0d/img/vendor/structure/stock/foot-brace.jpg" alt="doctor with patient foot" />
<h3>The International Journal of Advanced Manufacturing Technology</h3>
<p class="home-journals-study-headline">Comparison of geometrical accuracy of active devices for 3D orthopaedic reconstructions</p>
<p class="home-journals-study-biline">March 12th, 2021</p>
<p class="home-journals-study-cta"><a href="https://link.springer.com/article/10.1007/s00170-021-06778-0" target="_blank">Read the medical journal <img src="https://cdn11.bigcommerce.com/s-4fwfwlzl1t/stencil/b4d76140-b0dc-013d-3c35-2e2401c5fc0d/img/vendor/structure/icons/arrow-right.svg" alt="right arrow icon"></a></p>
</div>
</div>
</section>
<section class="ticker-container">
<h1>Our Partners</h1>
<div class="ticker" id="ticker">
</div>
</section>
<script>
const partners = [
{
"id": 0,
"partnerName": "Qwadra",
"logoFile": "qwadra.svg"
},
{
"id": 1,
"partnerName": "HP",
"logoFile": "hp.svg"
},
{
"id": 2,
"partnerName": "Hanger",
"logoFile": "hanger.png"
},
{
"id": 3,
"partnerName": "Ottobock",
"logoFile": "ottobock.svg"
},
{
"id": 4,
"partnerName": "Ossur",
"logoFile": "ossur.svg"
},
{
"id": 5,
"partnerName": "Proteor",
"logoFile": "proteor.svg"
},
{
"id": 6,
"partnerName": "TechMed3D",
"logoFile": "techmed.svg"
},
{
"id": 7,
"partnerName": "Bauer",
"logoFile": "bauer.svg"
},
{
"id": 8,
"partnerName": "Spentys",
"logoFile": "spentys.svg"
},
{
"id": 9,
"partnerName": "Taika3D",
"logoFile": "taika.gif"
},
{
"id": 10,
"partnerName": "Forward Motion",
"logoFile": "forwardmotion.png"
},
{
"id": 11,
"partnerName": "Anodyne",
"logoFile": "anodyne.svg"
},
{
"id": 12,
"partnerName": "Spinal Technology",
"logoFile": "spinaltech.png"
},
{
"id": 13,
"partnerName": "LutraCAD",
"logoFile": "lutracad.svg"
},
{
"id": 14,
"partnerName": "Medi",
"logoFile": "medi.png"
},
{
"id": 15,
"partnerName": "eKare",
"logoFile": "ekare.png"
},
{
"id": 16,
"partnerName": "Arize by HP",
"logoFile": "arize.png"
},
{
"id": 17,
"partnerName": "OHI",
"logoFile": "ohi.jpg"
},
{
"id": 18,
"partnerName": "Voxelcare",
"logoFile": "voxelcare.svg"
},
];
function createTickerItems() {
const ticker = document.getElementById("ticker");
let content = "";
// Generate initial logos
partners.forEach(partner => {
content += `
<div class="ticker__item">
<img src="https://cdn11.bigcommerce.com/s-4fwfwlzl1t/stencil/b4d76140-b0dc-013d-3c35-2e2401c5fc0d/img/vendor/structure/partners/${partner.logoFile}" alt="${partner.partnerName} logo">
</div>
`;
});
// Duplicate the content for seamless looping
const duplicates = 3; // Add multiple copies for smooth looping
ticker.innerHTML = Array(duplicates).fill(content).join('');
}
function adjustAnimationDuration() {
const ticker = document.getElementById("ticker");
const totalWidth = ticker.scrollWidth; // Get full width of the ticker
const duration = totalWidth / 100; // Set speed: 100px/sec
ticker.style.animationDuration = `${duration}s`;
}
// Initialize ticker
createTickerItems();
window.addEventListener("load", adjustAnimationDuration);
</script>
<section class="str-developer-panel">
<h1>Calling All Developers</h1>
<p>Looking for documentation or other technical assets? Visit our developer portal.</p>
<a href="https://developer.structure.io/portal"><button>Visit the Developer Portal</button></a>
</section>
<section class="home-section home-section-6">
<h1>We are hiring!</h1>
<p>Want to work with a bunch of dedicated individuals? We are growing and looking for someone like you.</p>
<a href="/careers"><button>Visit the Careers Page</button></a>
</section>
<!DOCTYPE html>
<html class="no-js hidden" lang="en">
<head>
<title>Structure - The world's leading healthcare 3D scanning platform</title>
<link rel="dns-prefetch preconnect" href="https://cdn11.bigcommerce.com/s-4fwfwlzl1t" crossorigin>
<meta name="description" content="With the Structure Sensor, the future is in your hands. Rapid 3D scanning of objects and people, 3D maps of interior spaces, and mixed reality experiences where fantasy becomes impossible to tell from reality."><link rel='canonical' href='https://structure.io/' /><meta name='platform' content='bigcommerce.stencil' />
<link href="https://cdn11.bigcommerce.com/s-4fwfwlzl1t/product_images/favicon.ico?t=1724255125" rel="shortcut icon">
<meta property="og:title" content="Structure - The World's Leading Healthcare 3D Scanning Platform"/>
<meta property="og:type" content="website"/>
<meta property="og:image" content="https://cdn11.bigcommerce.com/s-4fwfwlzl1t/stencil/5133b560-d649-013b-1856-26744b75d744/img/vendor/structure/structure-sensor-pro/renders/st02b-partipad-angle.png" />
<meta property="og:description" content="With the Structure Sensor, the future is in your hands. Rapid 3D scanning of objects and people, 3D maps of interior spaces, and mixed reality experiences where fantasy becomes impossible to tell from reality." />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<style>
.hidden {display:none;}
</style>
<script>
document.addEventListener('DOMContentLoaded', function() {
document.documentElement.classList.remove('hidden');
});
</script>
<script>
document.documentElement.className = document.documentElement.className.replace('no-js', 'js');
</script>
<script>
function browserSupportsAllFeatures() {
return window.Promise
&& window.fetch
&& window.URL
&& window.URLSearchParams
&& window.WeakMap
// object-fit support
&& ('objectFit' in document.documentElement.style);
}
function loadScript(src) {
var js = document.createElement('script');
js.src = src;
js.onerror = function () {
console.error('Failed to load polyfill script ' + src);
};
document.head.appendChild(js);
}
if (!browserSupportsAllFeatures()) {
loadScript('https://cdn11.bigcommerce.com/s-4fwfwlzl1t/stencil/b4d76140-b0dc-013d-3c35-2e2401c5fc0d/dist/theme-bundle.polyfills.js');
}
</script>
<script>window.consentManagerTranslations = `{"locale":"en","locales":{"consent_manager.data_collection_warning":"en","consent_manager.accept_all_cookies":"en","consent_manager.gdpr_settings":"en","consent_manager.data_collection_preferences":"en","consent_manager.manage_data_collection_preferences":"en","consent_manager.use_data_by_cookies":"en","consent_manager.data_categories_table":"en","consent_manager.allow":"en","consent_manager.accept":"en","consent_manager.deny":"en","consent_manager.dismiss":"en","consent_manager.reject_all":"en","consent_manager.category":"en","consent_manager.purpose":"en","consent_manager.functional_category":"en","consent_manager.functional_purpose":"en","consent_manager.analytics_category":"en","consent_manager.analytics_purpose":"en","consent_manager.targeting_category":"en","consent_manager.advertising_category":"en","consent_manager.advertising_purpose":"en","consent_manager.essential_category":"en","consent_manager.esential_purpose":"en","consent_manager.yes":"en","consent_manager.no":"en","consent_manager.not_available":"en","consent_manager.cancel":"en","consent_manager.save":"en","consent_manager.back_to_preferences":"en","consent_manager.close_without_changes":"en","consent_manager.unsaved_changes":"en","consent_manager.by_using":"en","consent_manager.agree_on_data_collection":"en","consent_manager.change_preferences":"en","consent_manager.cancel_dialog_title":"en","consent_manager.privacy_policy":"en","consent_manager.allow_category_tracking":"en","consent_manager.disallow_category_tracking":"en"},"translations":{"consent_manager.data_collection_warning":"We use cookies (and other similar technologies) to collect data to improve your shopping experience.","consent_manager.accept_all_cookies":"Accept All Cookies","consent_manager.gdpr_settings":"Settings","consent_manager.data_collection_preferences":"Website Data Collection Preferences","consent_manager.manage_data_collection_preferences":"Manage Website Data Collection Preferences","consent_manager.use_data_by_cookies":" uses data collected by cookies and JavaScript libraries to improve your shopping experience.","consent_manager.data_categories_table":"The table below outlines how we use this data by category. To opt out of a category of data collection, select 'No' and save your preferences.","consent_manager.allow":"Allow","consent_manager.accept":"Accept","consent_manager.deny":"Deny","consent_manager.dismiss":"Dismiss","consent_manager.reject_all":"Reject all","consent_manager.category":"Category","consent_manager.purpose":"Purpose","consent_manager.functional_category":"Functional","consent_manager.functional_purpose":"Enables enhanced functionality, such as videos and live chat. If you do not allow these, then some or all of these functions may not work properly.","consent_manager.analytics_category":"Analytics","consent_manager.analytics_purpose":"Provide statistical information on site usage, e.g., web analytics so we can improve this website over time.","consent_manager.targeting_category":"Targeting","consent_manager.advertising_category":"Advertising","consent_manager.advertising_purpose":"Used to create profiles or personalize content to enhance your shopping experience.","consent_manager.essential_category":"Essential","consent_manager.esential_purpose":"Essential for the site and any requested services to work, but do not perform any additional or secondary function.","consent_manager.yes":"Yes","consent_manager.no":"No","consent_manager.not_available":"N/A","consent_manager.cancel":"Cancel","consent_manager.save":"Save","consent_manager.back_to_preferences":"Back to Preferences","consent_manager.close_without_changes":"You have unsaved changes to your data collection preferences. Are you sure you want to close without saving?","consent_manager.unsaved_changes":"You have unsaved changes","consent_manager.by_using":"By using our website, you're agreeing to our","consent_manager.agree_on_data_collection":"By using our website, you're agreeing to the collection of data as described in our ","consent_manager.change_preferences":"You can change your preferences at any time","consent_manager.cancel_dialog_title":"Are you sure you want to cancel?","consent_manager.privacy_policy":"Privacy Policy","consent_manager.allow_category_tracking":"Allow [CATEGORY_NAME] tracking","consent_manager.disallow_category_tracking":"Disallow [CATEGORY_NAME] tracking"}}`;</script>
<script>
window.lazySizesConfig = window.lazySizesConfig || {};
window.lazySizesConfig.loadMode = 1;
</script>
<script async src="https://cdn11.bigcommerce.com/s-4fwfwlzl1t/stencil/b4d76140-b0dc-013d-3c35-2e2401c5fc0d/dist/theme-bundle.head_async.js"></script>
<link rel="preload" href="https://cdn11.bigcommerce.com/s-4fwfwlzl1t/stencil/b4d76140-b0dc-013d-3c35-2e2401c5fc0d/dist/theme-bundle.font.js" as="script">
<script async src="https://cdn11.bigcommerce.com/s-4fwfwlzl1t/stencil/b4d76140-b0dc-013d-3c35-2e2401c5fc0d/dist/theme-bundle.font.js"></script>
<link data-stencil-stylesheet href="https://cdn11.bigcommerce.com/s-4fwfwlzl1t/stencil/b4d76140-b0dc-013d-3c35-2e2401c5fc0d/css/theme-d0c7efc0-b0dc-013d-c1fe-4a69f9dc6eb0.css" rel="stylesheet">
<!-- Start Tracking Code for analytics_facebook -->
<script data-bc-cookie-consent="4" type="text/plain">
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,document,'script','https://connect.facebook.net/en_US/fbevents.js');
fbq('set', 'autoConfig', 'false', '936101701347450');
fbq('dataProcessingOptions', []);
fbq('init', '936101701347450', {"external_id":"9dcf9931-ace8-4386-a223-2e9c3deed8dc"});
fbq('set', 'agent', 'bigcommerce', '936101701347450');
function trackEvents() {
var pathName = window.location.pathname;
fbq('track', 'PageView', {}, {"eventID":"store-9-prd-us-central1-129529102687"});
// Search events start -- only fire if the shopper lands on the /search.php page
if (pathName.indexOf('/search.php') === 0 && getUrlParameter('search_query')) {
fbq('track', 'Search', {
content_type: 'product_group',
content_ids: [],
search_string: getUrlParameter('search_query')
});
}
// Search events end
// Wishlist events start -- only fire if the shopper attempts to add an item to their wishlist
if (pathName.indexOf('/wishlist.php') === 0 && getUrlParameter('added_product_id')) {
fbq('track', 'AddToWishlist', {
content_type: 'product_group',
content_ids: []
});
}
// Wishlist events end
// Lead events start -- only fire if the shopper subscribes to newsletter
if (pathName.indexOf('/subscribe.php') === 0 && getUrlParameter('result') === 'success') {
fbq('track', 'Lead', {});
}
// Lead events end
// Registration events start -- only fire if the shopper registers an account
if (pathName.indexOf('/login.php') === 0 && getUrlParameter('action') === 'account_created') {
fbq('track', 'CompleteRegistration', {}, "");
}
// Registration events end
function getUrlParameter(name) {
var cleanName = name.replace(/[\[]/, '\[').replace(/[\]]/, '\]');
var regex = new RegExp('[\?&]' + cleanName + '=([^&#]*)');
var results = regex.exec(window.location.search);
return results === null ? '' : decodeURIComponent(results[1].replace(/\+/g, ' '));
}
}
if (window.addEventListener) {
window.addEventListener("load", trackEvents, false)
}
</script>
<noscript><img height="1" width="1" style="display:none" alt="null" src="https://www.facebook.com/tr?id=936101701347450&ev=PageView&noscript=1&a=plbigcommerce1.2&eid=store-9-prd-us-central1-129529102687"/></noscript>
<!-- End Tracking Code for analytics_facebook -->
<!-- Start Tracking Code for analytics_googleanalytics4 -->
<script data-cfasync="false" src="https://cdn11.bigcommerce.com/shared/js/google_analytics4_bodl_subscribers-358423becf5d870b8b603a81de597c10f6bc7699.js"></script>
<script data-cfasync="false">
(function () {
window.dataLayer = window.dataLayer || [];
function gtag(){
dataLayer.push(arguments);
}
function initGA4(event) {
function setupGtag() {
function configureGtag() {
gtag('js', new Date());
gtag('set', 'developer_id.dMjk3Nj', true);
gtag('config', 'G-VC2BPE2H42');
}
var script = document.createElement('script');
script.src = 'https://www.googletagmanager.com/gtag/js?id=G-VC2BPE2H42';
script.async = true;
script.onload = configureGtag;
document.head.appendChild(script);
}
setupGtag();
if (typeof subscribeOnBodlEvents === 'function') {
subscribeOnBodlEvents('G-VC2BPE2H42', true);
}
window.removeEventListener(event.type, initGA4);
}
gtag('consent', 'default', {"ad_storage":"denied","ad_user_data":"denied","ad_personalization":"denied","analytics_storage":"denied","functionality_storage":"denied"})
var eventName = document.readyState === 'complete' ? 'consentScriptsLoaded' : 'DOMContentLoaded';
window.addEventListener(eventName, initGA4, false);
})()
</script>
<!-- End Tracking Code for analytics_googleanalytics4 -->
<!-- Start Tracking Code for analytics_siteverification -->
<meta name="google-site-verification" content="8t0-q5oFUwpWR6LuVCIVZIuRbzIbSwHTC38oDK79dq0" />
<!-- End Tracking Code for analytics_siteverification -->
<script>window.consentManagerStoreConfig = function () { return {"storeName":"Structure","privacyPolicyUrl":"","writeKey":null,"improvedConsentManagerEnabled":true,"GA4ConsentModeEnabled":true,"BODLConsentLoadedEventInStorefront":true,"AlwaysIncludeScriptsWithConsentTag":true}; };</script>
<script type="text/javascript" src="https://cdn11.bigcommerce.com/shared/js/bodl-consent-eced236bd7d5d1675a7704c806ce0cb5b24e44fb.js" defer></script>
<script type="text/javascript" src="https://cdn11.bigcommerce.com/shared/js/storefront/consent-manager-config-0205627cb0b5544a157ee56e3da54f6932db237e.js" defer></script>
<script type="text/javascript" src="https://cdn11.bigcommerce.com/shared/js/storefront/consent-manager-08633fe15aba542118c03f6d45457262fa9fac88.js" defer></script>
<script type="text/javascript">
var BCData = {};
</script>
<script src='https://backorder-cdn-v2.grit.software/default-bundle_v2.js' ></script><script src='https://api.preproduct.io/preproduct-embed.js' async ></script><!-- Google Tag Manager -->
<script data-bc-cookie-consent="3" type="text/plain">(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-MDX8S38H');</script>
<!-- End Google Tag Manager --><script>
var { productId } = JSON.parse("{}");
window.token = "eyJ0eXAiOiJKV1QiLCJhbGciOiJFUzI1NiJ9.eyJjaWQiOlsxXSwiY29ycyI6WyJodHRwczovL3N0cnVjdHVyZS5pbyJdLCJlYXQiOjE3MzcxMjIyNTgsImlhdCI6MTczNjk0OTQ1OCwiaXNzIjoiQkMiLCJzaWQiOjEwMDI2OTU4MzIsInN1YiI6IkJDIiwic3ViX3R5cGUiOjAsInRva2VuX3R5cGUiOjF9.HFV-CvpdBaSn_is2WkVVeZqhpLYrKDMZ5TGLaOfqjh5YvlONZdFuFvoShyq91if6S4I5rcmfPPg3MCeKLuwlmw";
window.productId = productId;
window.is_restrict_login = "false";
window.customer_id = "";
</script><script>
window.storefrontSetting = "{\"backorder_description\":\"This product is on BackOrder and will be shipped later\",\"backorder_button_color\":\"\",\"backorder_button_text\":\"Back Order\",\"backorder_button_background_color\":\"\",\"packing_slip_message\":\"Please note that some products are back order which will be delivered in a later date\",\"cart_message\":\"{backorder_qty} will be backorder\",\"is_inventory_description_enabled\":false,\"in_stock_description\":\"{stock} in stock\",\"inventory_backorder_description\":\"Out of stock, only {salable_qty} available for backorder\",\"low_stock_description\":\"{stock} in stock. Backorder available\",\"low_stock\":5,\"is_mixed_cart_alert_enabled\":false,\"mix_cart_alert\":\"{buying_qty} added to cart, {backorder_qty} will be in Backorder. Please double check your cart before checkout.\",\"installed_time\":\"2023-04-28T19:47:33Z\",\"legacy_installed_time\":\"2023-04-28T19:47:33Z\",\"show_back_in_stock_date\":true,\"buying_over_threshold_message\":\"You're trying to buy {buying_qty} {item_name}, but only {threshold} will be added to the cart, since we only have {threshold} available for Backorder\",\"theme_selectors\":{\"cart\":{\"cartMsg\":\".bo-cart-message\",\"cartMsgWrapper\":\"table.cart tbody tr.cart-item:eq({index}) td:eq(1)\",\"productContainer\":\"table.cart tbody tr.cart-item:eq({index})\"},\"compare\":{\"productAddBtn\":\"table.compareTable tr:eq(1) td.compareTable-action:eq({index}) a[data-product-id]\",\"productContainer\":\"table.compareTable th.compareTable-product\",\"productImage\":\"img:eq(0)\",\"productsWrapper\":\"\"},\"detail\":{\"backInStockDateFormat\":\"MMM DD, YYYY\",\"cardAddBtn\":\"a[data-button-type=\\\"add-cart\\\"]\",\"cardBuyNowBtn\":\"\",\"cardContainer\":\"article.card\",\"inventoryDescriptionContainer\":\".form-field.form-field--increments\",\"productAddBtn\":\"input#form-action-addToCart\",\"productBuyNowBtn\":\"\",\"productContainer\":\".productView:not(.productView--quickView), .modal-body.quickView\",\"productImage\":\"img:eq(0)\",\"replaceInventoryDesc\":false,\"shippingDescriptionContainer\":\".productView-options\"},\"listing\":{\"productAddBtn\":\"a[data-button-type=\\\"add-cart\\\"]\",\"productBuyNowBtn\":\"\",\"productContainer\":\"article.card\",\"productImage\":\"img:eq(0)\"},\"quickSearch\":{\"productAddBtn\":\"a[data-button-type=\\\"add-cart\\\"]\",\"productBuyNowBtn\":\"\",\"productContainer\":\"article.card\",\"productImage\":\"img:eq(0)\",\"wrapper\":\".dropdown--quickSearch\"},\"stockLabel\":{\"detail\":[{\"bgColor\":\"rgba(18, 210, 58, 0.9)\",\"label\":\"inStock\",\"text\":\"In Stock\",\"textColor\":\"#ffffff\"},{\"bgColor\":\"rgba(210, 18, 54, 0.9)\",\"label\":\"outOfStock\",\"text\":\"Out Of Stock\",\"textColor\":\"#ffffff\"},{\"bgColor\":\"rgba(178, 29, 204, 0.9)\",\"label\":\"backorder\",\"text\":\"Backorder\",\"textColor\":\"#ffffff\"}],\"isEnable\":true}},\"enable\":true,\"channel_id\":1,\"customize_mixed_cart_button\":{},\"hide_backorder_products_from_guests\":false,\"backorder_description_color\":\"\",\"backorder_description_font_size\":\"\",\"is_list_all_backorders\":false,\"format_backorder_items_list_on_order_note\":\"\",\"separator_order_note_backorder_item_character\":\"\"}"
</script><script data-bc-cookie-consent="3" type="text/plain">!function(){var e=window.location.search;if(e&&e.length>1&&localStorage){var l,o,t=e.slice(1).split("&");for(l=0;l<t.length;l++)o=(e=t[l].split("="))[1],(e=e[0])&&o&&("gclid"===e||"msclkid"===e||0===e.indexOf("utm"))&&localStorage.setItem(e,decodeURIComponent(o))}}();</script><script type="quoteninja-results"></script><script data-bc-cookie-consent="3" type="text/plain">
(function(c,l,a,r,i,t,y){
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
})(window, document, "clarity", "script", "m8xgm2bbj9");
</script><!-- Global site tag (gtag.js) - Google Ads: AW-16495881006 -->
<script data-bc-cookie-consent="3" type="text/plain" async src="https://www.googletagmanager.com/gtag/js?id=AW-16495881006"></script>
<script data-bc-cookie-consent="3" type="text/plain">
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'AW-16495881006');
gtag('set', 'developer_id.dMjk3Nj', true);
</script>
<!-- GA4 Code Start: View Product Content -->
<script data-bc-cookie-consent="3" type="text/plain">
</script>
<script data-cfasync="false" src="https://microapps.bigcommerce.com/bodl-events/index.js"></script>
<script data-cfasync="false">
(function() {
function decodeBase64(base64) {
const text = atob(base64);
const length = text.length;
const bytes = new Uint8Array(length);
for (let i = 0; i < length; i++) {
bytes[i] = text.charCodeAt(i);
}
const decoder = new TextDecoder();
return decoder.decode(bytes);
}
window.bodl = JSON.parse(decodeBase64("eyJzZXNzaW9uIjp7ImlkIjoiMTM5ZTNmYTItMDFlZS00OWE4LWJhY2ItMjlkZDUxZDUwM2VhIiwiZmlyc3RfdG91Y2hfdGltZXN0YW1wIjoiMjAyNS0wMS0xNlQwNToyNzoyNSIsImZpcnN0X3RvdWNoX3JlZmVycmFsX3VybCI6IiIsImZpcnN0X3RvdWNoX3JlcXVlc3RfdXJsIjoiaHR0cHM6Ly9zdHJ1Y3R1cmUuaW8vIn0sInNob3BwZXIiOnsidmlzaXRvcl9pZCI6IiIsImN1c3RvbWVyX2lkIjpudWxsLCJlbWFpbCI6bnVsbCwiZmlyc3RfbmFtZSI6bnVsbCwibGFzdF9uYW1lIjpudWxsfSwiZGF0YV9jb25zZW50Ijp7ImZ1bmN0aW9uYWwiOmZhbHNlLCJhbmFseXRpY3MiOmZhbHNlLCJhZHZlcnRpc2luZyI6ZmFsc2V9LCJldmVudHMiOlt7ImJvZGxfdjFfY29uc2VudF9sb2FkZWQiOnsiZXZlbnRfaWQiOiIwYWUyZDc0ZC00OTNiLTQ4NWYtOTFjZi0zNzA4YWM1ZmM4ZGEiLCJhZHZlcnRpc2luZyI6ZmFsc2UsImFuYWx5dGljcyI6ZmFsc2UsImZ1bmN0aW9uYWwiOmZhbHNlfX1dfQ=="));
})()
</script>
<script>
(function () {
var xmlHttp = new XMLHttpRequest();
xmlHttp.open('POST', 'https://bes.gcp.data.bigcommerce.com/nobot');
xmlHttp.setRequestHeader('Content-Type', 'application/json');
xmlHttp.send('{"store_id":"1002695832","timezone_offset":"-6.0","timestamp":"2025-01-16T05:27:25.45183800Z","visit_id":"6bdfb7b2-b354-4e0b-9350-ebd54e61bab7","channel_id":1}');
})();
</script>
<script>
var theme_settings = {
show_fast_cart: true,
linksPerCol: 10,
};
</script>
<link rel="preload" href="https://cdn11.bigcommerce.com/s-4fwfwlzl1t/stencil/b4d76140-b0dc-013d-3c35-2e2401c5fc0d/dist/theme-bundle.main.js" as="script">
</head>
Structure - The world's leading healthcare 3D scanning platform
Recherche META Description de la page
With the Structure Sensor, the future is in your hands. Rapid 3D scanning of objects and people, 3D maps of interior spaces, and mixed reality experiences where fantasy becomes impossible to tell from reality.
Recherche META Keywords de la page
UPDATE DOMAINES SET server='cloudflare',redirection='https://structure.io/',Status='200',err='',[TITRE]=N'Structure - The world's leading healthcare 3D scanning platform',[DESCRIPTION]=N'With the Structure Sensor, the future is in your hands. Rapid 3D scanning of objects and people, 3D maps of interior spaces, and mixed reality experiences where fantasy becomes impossible to tell from reality.',[KEYWORDS]=N'' WHERE id=3086417
0 Structure - The world's leading healthcare 3D scanning platform With the Structure Sensor the future is in your hands. Rapid 3D scanning of objects and people 3D maps of interior spaces and mixed reality experiences where fantasy becomes impossible to tell from reality.
0. Structure (9)--------->0
1. - (1)--------->0
2. The (3)--------->0
3. world's (12)--------->0
4. leading (7)--------->0
5. healthcare (10)--------->0
6. 3D (2)--------->0
7. scanning (8)--------->0
8. platform (8)--------->0
9. With (4)--------->0
12. Sensor (6)--------->0
15. future (6)--------->0
16. is (2)--------->0
17. in (2)--------->0
18. your (4)--------->0
19. hands (5)--------->0
20. Rapid (5)--------->0
23. of (2)--------->0
24. objects (7)--------->0
25. and (3)--------->0
26. people (6)--------->0
29. maps (4)--------->0
31. interior (8)--------->0
32. spaces (6)--------->0
35. mixed (5)--------->0
36. reality (7)--------->0
37. experiences (11)--------->0
38. where (5)--------->0
39. fantasy (7)--------->0
40. becomes (7)--------->0
41. impossible (10)--------->0
42. to (2)--------->0
43. tell (4)--------->0
44. from (4)--------->0
INSERT INTO KEYWORDS (keyword,id_domaine) VALUES (N'Structure',3086417),(N'-',3086417),(N'The',3086417),(N'world's',3086417),(N'leading',3086417),(N'healthcare',3086417),(N'3D',3086417),(N'scanning',3086417),(N'platform',3086417),(N'With',3086417),(N'Sensor',3086417),(N'future',3086417),(N'is',3086417),(N'in',3086417),(N'your',3086417),(N'hands',3086417),(N'Rapid',3086417),(N'of',3086417),(N'objects',3086417),(N'and',3086417),(N'people',3086417),(N'maps',3086417),(N'interior',3086417),(N'spaces',3086417),(N'mixed',3086417),(N'reality',3086417),(N'experiences',3086417),(N'where',3086417),(N'fantasy',3086417),(N'becomes',3086417),(N'impossible',3086417),(N'to',3086417),(N'tell',3086417),(N'from',3086417)