{"id":1733,"date":"2026-07-13T00:38:32","date_gmt":"2026-07-13T00:38:32","guid":{"rendered":"https:\/\/www.nvixeon.com\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\/"},"modified":"2026-07-13T01:39:16","modified_gmt":"2026-07-13T01:39:16","slug":"getting-started-with-stm32n6-vision-running-your-first-object-detection-model","status":"publish","type":"post","link":"https:\/\/www.nvixeon.com\/fr\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\/","title":{"rendered":"Getting Started with STM32N6 Vision: Running Your First Object Detection Model"},"content":{"rendered":"<p>In our previous article we explained what the STM32N6&#8217;s NPU actually is and why it matters. This guide is the hands-on follow-up: getting a real object detection model running on the chip, from a fresh toolchain install to live detections off a camera feed.<\/p>\n<h2>What You Need<\/h2>\n<ul>\n<li>An STM32N6-based board (our NVX-N6 Vision or an equivalent eval board)<\/li>\n<li>A MIPI CSI-2 or DCMI camera module compatible with your board<\/li>\n<li>STM32CubeIDE and the STM32Cube.AI expansion pack installed<\/li>\n<li>A pretrained YOLOv8n model, or your own trained in PyTorch\/TensorFlow<\/li>\n<\/ul>\n<h2>Setting Up the Toolchain<\/h2>\n<p>Install STM32CubeIDE, then add the STM32Cube.AI expansion pack through the package manager. This is what handles converting a standard ONNX or TensorFlow Lite model into instructions the NPU can actually execute \u2014 you are not writing NPU assembly by hand. Cube.AI analyzes your model graph and maps supported operations onto the Neural-ART accelerator, falling back to the Cortex-M55 core for anything it cannot offload.<\/p>\n<h2>Converting the Model<\/h2>\n<p>Export your YOLOv8n model to ONNX format, then run it through the Cube.AI analyzer:<\/p>\n<pre><code>stm32ai analyze --model yolov8n.onnx --target stm32n6\n\nstm32ai generate --model yolov8n.onnx --target stm32n6 \\\n  --output .\/generated --compression int8\n<\/code><\/pre>\n<p>The <code>--compression int8<\/code> flag quantizes the model to 8-bit integers, which is what lets the NPU hit its rated 600 GOPS and keeps the model small enough to fit in the STM32N6&#8217;s onboard RAM. Expect a small accuracy drop versus the full-precision model \u2014 usually a percentage point or two on standard benchmarks \u2014 which is a reasonable tradeoff for running entirely on-chip with no cloud round-trip.<\/p>\n<h2>Integrating the Camera Pipeline<\/h2>\n<p>The STM32N6&#8217;s dedicated image signal processor (ISP) handles camera input independently of the NPU, so frames flow: camera sensor \u2192 ISP \u2192 memory buffer \u2192 NPU inference \u2192 your application code. In STM32CubeIDE, configure the DCMI or CSI-2 peripheral for your specific sensor&#8217;s resolution and pixel format, then set up a double-buffered DMA transfer so one frame is being processed while the next is captured.<\/p>\n<pre><code>HAL_DCMI_Start_DMA(&hdcmi, DCMI_MODE_CONTINUOUS,\n                    (uint32_t)&frame_buffer[0], FRAME_SIZE);\n\n\/\/ In the frame-ready callback:\nvoid HAL_DCMI_FrameEventCallback(DCMI_HandleTypeDef *hdcmi) {\n  ai_run_inference(active_buffer, detection_results);\n  swap_buffers();\n}\n<\/code><\/pre>\n<h2>Reading the Results<\/h2>\n<p>YOLOv8n outputs bounding boxes, class IDs, and confidence scores per detected object. Filter results below a confidence threshold (0.5 is a reasonable starting point) and apply non-maximum suppression to collapse overlapping boxes around the same object before acting on the output \u2014 most Cube.AI generated code includes a post-processing helper for this so you are not implementing NMS from scratch.<\/p>\n<h2>Realistic Expectations<\/h2>\n<p>At INT8 precision on a 640&#215;480 input, expect roughly 20\u201325fps for YOLOv8n on the STM32N6 \u2014 enough for real-time detection in robotics, security, and industrial inspection applications, though larger input resolutions or heavier model variants will trade frame rate for accuracy. If you need more headroom, cropping the ISP output to a smaller region of interest before inference is often more effective than shrinking the whole frame.<\/p>\n<h2>Next Steps<\/h2>\n<p>Once a pretrained model runs reliably, the natural next step is training on your own dataset \u2014 swapping in domain-specific classes rather than the generic COCO categories YOLOv8n ships with by default \u2014 which is a good subject for a follow-up guide.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>A hands-on walkthrough for deploying a pretrained YOLOv8n model to the STM32N6&#8217;s onboard NPU, from toolchain setup to reading live detection results off a camera feed.<\/p>","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_post_was_ever_published":false},"categories":[61,62],"tags":[],"class_list":["post-1733","post","type-post","status-publish","format-standard","hentry","category-stm32n6","category-tutorials-guides"],"blocksy_meta":[],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"A hands-on walkthrough for deploying a pretrained YOLOv8n model to the STM32N6&#039;s onboard NPU, from toolchain setup to reading live detection results off a camera feed.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Vincent Nyanzu Kwofie\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.nvixeon.com\/fr\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"fr_FR\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Nvixeon - Custom STM32 Development Boards \u2014 Built in Ghana, Shipped Worldwide\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Getting Started with STM32N6 Vision: Running Your First Object Detection Model - Nvixeon\" \/>\n\t\t<meta property=\"og:description\" content=\"A hands-on walkthrough for deploying a pretrained YOLOv8n model to the STM32N6&#039;s onboard NPU, from toolchain setup to reading live detection results off a camera feed.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.nvixeon.com\/fr\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/www.nvixeon.com\/wp-content\/uploads\/2026\/06\/Nvixeon-Logo-Black-With-outline-4-Transparent.webp\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/www.nvixeon.com\/wp-content\/uploads\/2026\/06\/Nvixeon-Logo-Black-With-outline-4-Transparent.webp\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2026-07-13T00:38:32+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-07-13T01:39:16+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Getting Started with STM32N6 Vision: Running Your First Object Detection Model - Nvixeon\" \/>\n\t\t<meta name=\"twitter:description\" content=\"A hands-on walkthrough for deploying a pretrained YOLOv8n model to the STM32N6&#039;s onboard NPU, from toolchain setup to reading live detection results off a camera feed.\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/www.nvixeon.com\/wp-content\/uploads\/2026\/06\/Nvixeon-Logo-Black-With-outline-4-Transparent.webp\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/fr\\\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\\\/#blogposting\",\"name\":\"Getting Started with STM32N6 Vision: Running Your First Object Detection Model - Nvixeon\",\"headline\":\"Getting Started with STM32N6 Vision: Running Your First Object Detection Model\",\"author\":{\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/fr\\\/author\\\/vincentkwofie123gmail-com\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/fr\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.nvixeon.com\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/Nvixeon-Logo-Black-With-outline-Transparent.webp\",\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/fr\\\/#articleImage\",\"width\":1536,\"height\":1024},\"datePublished\":\"2026-07-13T00:38:32+00:00\",\"dateModified\":\"2026-07-13T01:39:16+00:00\",\"inLanguage\":\"fr-FR\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/fr\\\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/fr\\\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\\\/#webpage\"},\"articleSection\":\"STM32N6, Tutorials &amp; Guides\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/fr\\\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/fr#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.nvixeon.com\\\/fr\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/fr\\\/category\\\/stm32n6\\\/#listItem\",\"name\":\"STM32N6\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/fr\\\/category\\\/stm32n6\\\/#listItem\",\"position\":2,\"name\":\"STM32N6\",\"item\":\"https:\\\/\\\/www.nvixeon.com\\\/fr\\\/category\\\/stm32n6\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/fr\\\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\\\/#listItem\",\"name\":\"Getting Started with STM32N6 Vision: Running Your First Object Detection Model\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/fr#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/fr\\\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\\\/#listItem\",\"position\":3,\"name\":\"Getting Started with STM32N6 Vision: Running Your First Object Detection Model\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/fr\\\/category\\\/stm32n6\\\/#listItem\",\"name\":\"STM32N6\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/fr\\\/#organization\",\"name\":\"Nvixeon\",\"description\":\"Custom STM32 Development Boards \\u2014 Built in Ghana, Shipped Worldwide\",\"url\":\"https:\\\/\\\/www.nvixeon.com\\\/fr\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.nvixeon.com\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/Nvixeon-Logo-Black-With-outline-Transparent.webp\",\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/fr\\\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\\\/#organizationLogo\",\"width\":1536,\"height\":1024},\"image\":{\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/fr\\\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\\\/#organizationLogo\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/fr\\\/author\\\/vincentkwofie123gmail-com\\\/#author\",\"url\":\"https:\\\/\\\/www.nvixeon.com\\\/fr\\\/author\\\/vincentkwofie123gmail-com\\\/\",\"name\":\"Vincent Nyanzu Kwofie\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/fr\\\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e656f896e9c830369e61ccecbdefb5e9ffbe544962a13983f2ae009448338ce5?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Vincent Nyanzu Kwofie\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/fr\\\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\\\/#webpage\",\"url\":\"https:\\\/\\\/www.nvixeon.com\\\/fr\\\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\\\/\",\"name\":\"Getting Started with STM32N6 Vision: Running Your First Object Detection Model - Nvixeon\",\"description\":\"A hands-on walkthrough for deploying a pretrained YOLOv8n model to the STM32N6's onboard NPU, from toolchain setup to reading live detection results off a camera feed.\",\"inLanguage\":\"fr-FR\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/fr\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/fr\\\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/fr\\\/author\\\/vincentkwofie123gmail-com\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/fr\\\/author\\\/vincentkwofie123gmail-com\\\/#author\"},\"datePublished\":\"2026-07-13T00:38:32+00:00\",\"dateModified\":\"2026-07-13T01:39:16+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/fr\\\/#website\",\"url\":\"https:\\\/\\\/www.nvixeon.com\\\/fr\\\/\",\"name\":\"Nvixeon\",\"description\":\"Custom STM32 Development Boards \\u2014 Built in Ghana, Shipped Worldwide\",\"inLanguage\":\"fr-FR\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/fr\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Getting Started with STM32N6 Vision: Running Your First Object Detection Model - Nvixeon","description":"A hands-on walkthrough for deploying a pretrained YOLOv8n model to the STM32N6's onboard NPU, from toolchain setup to reading live detection results off a camera feed.","canonical_url":"https:\/\/www.nvixeon.com\/fr\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/www.nvixeon.com\/fr\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\/#blogposting","name":"Getting Started with STM32N6 Vision: Running Your First Object Detection Model - Nvixeon","headline":"Getting Started with STM32N6 Vision: Running Your First Object Detection Model","author":{"@id":"https:\/\/www.nvixeon.com\/fr\/author\/vincentkwofie123gmail-com\/#author"},"publisher":{"@id":"https:\/\/www.nvixeon.com\/fr\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/www.nvixeon.com\/wp-content\/uploads\/2026\/06\/Nvixeon-Logo-Black-With-outline-Transparent.webp","@id":"https:\/\/www.nvixeon.com\/fr\/#articleImage","width":1536,"height":1024},"datePublished":"2026-07-13T00:38:32+00:00","dateModified":"2026-07-13T01:39:16+00:00","inLanguage":"fr-FR","mainEntityOfPage":{"@id":"https:\/\/www.nvixeon.com\/fr\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\/#webpage"},"isPartOf":{"@id":"https:\/\/www.nvixeon.com\/fr\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\/#webpage"},"articleSection":"STM32N6, Tutorials &amp; Guides"},{"@type":"BreadcrumbList","@id":"https:\/\/www.nvixeon.com\/fr\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.nvixeon.com\/fr#listItem","position":1,"name":"Home","item":"https:\/\/www.nvixeon.com\/fr","nextItem":{"@type":"ListItem","@id":"https:\/\/www.nvixeon.com\/fr\/category\/stm32n6\/#listItem","name":"STM32N6"}},{"@type":"ListItem","@id":"https:\/\/www.nvixeon.com\/fr\/category\/stm32n6\/#listItem","position":2,"name":"STM32N6","item":"https:\/\/www.nvixeon.com\/fr\/category\/stm32n6\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.nvixeon.com\/fr\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\/#listItem","name":"Getting Started with STM32N6 Vision: Running Your First Object Detection Model"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.nvixeon.com\/fr#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.nvixeon.com\/fr\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\/#listItem","position":3,"name":"Getting Started with STM32N6 Vision: Running Your First Object Detection Model","previousItem":{"@type":"ListItem","@id":"https:\/\/www.nvixeon.com\/fr\/category\/stm32n6\/#listItem","name":"STM32N6"}}]},{"@type":"Organization","@id":"https:\/\/www.nvixeon.com\/fr\/#organization","name":"Nvixeon","description":"Custom STM32 Development Boards \u2014 Built in Ghana, Shipped Worldwide","url":"https:\/\/www.nvixeon.com\/fr\/","logo":{"@type":"ImageObject","url":"https:\/\/www.nvixeon.com\/wp-content\/uploads\/2026\/06\/Nvixeon-Logo-Black-With-outline-Transparent.webp","@id":"https:\/\/www.nvixeon.com\/fr\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\/#organizationLogo","width":1536,"height":1024},"image":{"@id":"https:\/\/www.nvixeon.com\/fr\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\/#organizationLogo"}},{"@type":"Person","@id":"https:\/\/www.nvixeon.com\/fr\/author\/vincentkwofie123gmail-com\/#author","url":"https:\/\/www.nvixeon.com\/fr\/author\/vincentkwofie123gmail-com\/","name":"Vincent Nyanzu Kwofie","image":{"@type":"ImageObject","@id":"https:\/\/www.nvixeon.com\/fr\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/e656f896e9c830369e61ccecbdefb5e9ffbe544962a13983f2ae009448338ce5?s=96&d=mm&r=g","width":96,"height":96,"caption":"Vincent Nyanzu Kwofie"}},{"@type":"WebPage","@id":"https:\/\/www.nvixeon.com\/fr\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\/#webpage","url":"https:\/\/www.nvixeon.com\/fr\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\/","name":"Getting Started with STM32N6 Vision: Running Your First Object Detection Model - Nvixeon","description":"A hands-on walkthrough for deploying a pretrained YOLOv8n model to the STM32N6's onboard NPU, from toolchain setup to reading live detection results off a camera feed.","inLanguage":"fr-FR","isPartOf":{"@id":"https:\/\/www.nvixeon.com\/fr\/#website"},"breadcrumb":{"@id":"https:\/\/www.nvixeon.com\/fr\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\/#breadcrumblist"},"author":{"@id":"https:\/\/www.nvixeon.com\/fr\/author\/vincentkwofie123gmail-com\/#author"},"creator":{"@id":"https:\/\/www.nvixeon.com\/fr\/author\/vincentkwofie123gmail-com\/#author"},"datePublished":"2026-07-13T00:38:32+00:00","dateModified":"2026-07-13T01:39:16+00:00"},{"@type":"WebSite","@id":"https:\/\/www.nvixeon.com\/fr\/#website","url":"https:\/\/www.nvixeon.com\/fr\/","name":"Nvixeon","description":"Custom STM32 Development Boards \u2014 Built in Ghana, Shipped Worldwide","inLanguage":"fr-FR","publisher":{"@id":"https:\/\/www.nvixeon.com\/fr\/#organization"}}]},"og:locale":"fr_FR","og:site_name":"Nvixeon - Custom STM32 Development Boards \u2014 Built in Ghana, Shipped Worldwide","og:type":"article","og:title":"Getting Started with STM32N6 Vision: Running Your First Object Detection Model - Nvixeon","og:description":"A hands-on walkthrough for deploying a pretrained YOLOv8n model to the STM32N6's onboard NPU, from toolchain setup to reading live detection results off a camera feed.","og:url":"https:\/\/www.nvixeon.com\/fr\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\/","og:image":"https:\/\/www.nvixeon.com\/wp-content\/uploads\/2026\/06\/Nvixeon-Logo-Black-With-outline-4-Transparent.webp","og:image:secure_url":"https:\/\/www.nvixeon.com\/wp-content\/uploads\/2026\/06\/Nvixeon-Logo-Black-With-outline-4-Transparent.webp","article:published_time":"2026-07-13T00:38:32+00:00","article:modified_time":"2026-07-13T01:39:16+00:00","twitter:card":"summary_large_image","twitter:title":"Getting Started with STM32N6 Vision: Running Your First Object Detection Model - Nvixeon","twitter:description":"A hands-on walkthrough for deploying a pretrained YOLOv8n model to the STM32N6's onboard NPU, from toolchain setup to reading live detection results off a camera feed.","twitter:image":"https:\/\/www.nvixeon.com\/wp-content\/uploads\/2026\/06\/Nvixeon-Logo-Black-With-outline-4-Transparent.webp"},"aioseo_meta_data":{"post_id":"1733","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_custom_url":null,"og_image_custom_fields":null,"og_image_url":null,"og_image_width":null,"og_image_height":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_image_url":null,"twitter_title":null,"twitter_description":null,"schema_type":"default","schema_type_options":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null,"created":"2026-07-14 16:35:36","updated":"2026-07-14 16:35:36"},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.nvixeon.com\/fr\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.nvixeon.com\/fr\/category\/stm32n6\/\" title=\"STM32N6\">STM32N6<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tGetting Started with STM32N6 Vision: Running Your First Object Detection Model\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.nvixeon.com\/fr"},{"label":"STM32N6","link":"https:\/\/www.nvixeon.com\/fr\/category\/stm32n6\/"},{"label":"Getting Started with STM32N6 Vision: Running Your First Object Detection Model","link":"https:\/\/www.nvixeon.com\/fr\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\/"}],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>STM32N6 Vision: Run Your First Object Detection Model<\/title>\n<meta name=\"description\" content=\"A hands-on guide to deploying a pretrained YOLOv8n model on the STM32N6&#039;s NPU, from toolchain setup to live camera detections.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.nvixeon.com\/fr\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\/\" \/>\n<meta property=\"og:locale\" content=\"fr_FR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"STM32N6 Vision: Run Your First Object Detection Model\" \/>\n<meta property=\"og:description\" content=\"A hands-on guide to deploying a pretrained YOLOv8n model on the STM32N6&#039;s NPU, from toolchain setup to live camera detections.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.nvixeon.com\/fr\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\/\" \/>\n<meta property=\"og:site_name\" content=\"Nvixeon\" \/>\n<meta property=\"article:published_time\" content=\"2026-07-13T00:38:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-13T01:39:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.nvixeon.com\/wp-content\/uploads\/2026\/06\/14578c91-110c-4615-b54e-fb52d8ee3a41-1.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1402\" \/>\n\t<meta property=\"og:image:height\" content=\"1122\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Vincent Nyanzu Kwofie\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u00c9crit par\" \/>\n\t<meta name=\"twitter:data1\" content=\"Vincent Nyanzu Kwofie\" \/>\n\t<meta name=\"twitter:label2\" content=\"Dur\u00e9e de lecture estim\u00e9e\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\\\/\"},\"author\":{\"name\":\"Vincent Nyanzu Kwofie\",\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/#\\\/schema\\\/person\\\/1e56786402d05eb5a411bc0e203bd6b7\"},\"headline\":\"Getting Started with STM32N6 Vision: Running Your First Object Detection Model\",\"datePublished\":\"2026-07-13T00:38:32+00:00\",\"dateModified\":\"2026-07-13T01:39:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\\\/\"},\"wordCount\":506,\"publisher\":{\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/#organization\"},\"articleSection\":[\"STM32N6\",\"Tutorials &amp; Guides\"],\"inLanguage\":\"fr-FR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\\\/\",\"url\":\"https:\\\/\\\/www.nvixeon.com\\\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\\\/\",\"name\":\"STM32N6 Vision: Run Your First Object Detection Model\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/#website\"},\"datePublished\":\"2026-07-13T00:38:32+00:00\",\"dateModified\":\"2026-07-13T01:39:16+00:00\",\"description\":\"A hands-on guide to deploying a pretrained YOLOv8n model on the STM32N6's NPU, from toolchain setup to live camera detections.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\\\/#breadcrumb\"},\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.nvixeon.com\\\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.nvixeon.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Getting Started with STM32N6 Vision: Running Your First Object Detection Model\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/#website\",\"url\":\"https:\\\/\\\/www.nvixeon.com\\\/\",\"name\":\"Nvixeon\",\"description\":\"Custom STM32 Development Boards \u2014 Built in Ghana, Shipped Worldwide\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.nvixeon.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fr-FR\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/#organization\",\"name\":\"Nvixeon\",\"url\":\"https:\\\/\\\/www.nvixeon.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.nvixeon.com\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/cropped-Nvixeon_Icon-12.webp\",\"contentUrl\":\"https:\\\/\\\/www.nvixeon.com\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/cropped-Nvixeon_Icon-12.webp\",\"width\":512,\"height\":512,\"caption\":\"Nvixeon\"},\"image\":{\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.nvixeon.com\\\/#\\\/schema\\\/person\\\/1e56786402d05eb5a411bc0e203bd6b7\",\"name\":\"Vincent Nyanzu Kwofie\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e656f896e9c830369e61ccecbdefb5e9ffbe544962a13983f2ae009448338ce5?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e656f896e9c830369e61ccecbdefb5e9ffbe544962a13983f2ae009448338ce5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e656f896e9c830369e61ccecbdefb5e9ffbe544962a13983f2ae009448338ce5?s=96&d=mm&r=g\",\"caption\":\"Vincent Nyanzu Kwofie\"},\"sameAs\":[\"http:\\\/\\\/nvixeon.com\"],\"url\":\"https:\\\/\\\/www.nvixeon.com\\\/fr\\\/author\\\/vincentkwofie123gmail-com\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"STM32N6 Vision: Run Your First Object Detection Model","description":"A hands-on guide to deploying a pretrained YOLOv8n model on the STM32N6's NPU, from toolchain setup to live camera detections.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.nvixeon.com\/fr\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\/","og_locale":"fr_FR","og_type":"article","og_title":"STM32N6 Vision: Run Your First Object Detection Model","og_description":"A hands-on guide to deploying a pretrained YOLOv8n model on the STM32N6's NPU, from toolchain setup to live camera detections.","og_url":"https:\/\/www.nvixeon.com\/fr\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\/","og_site_name":"Nvixeon","article_published_time":"2026-07-13T00:38:32+00:00","article_modified_time":"2026-07-13T01:39:16+00:00","og_image":[{"width":1402,"height":1122,"url":"https:\/\/www.nvixeon.com\/wp-content\/uploads\/2026\/06\/14578c91-110c-4615-b54e-fb52d8ee3a41-1.webp","type":"image\/webp"}],"author":"Vincent Nyanzu Kwofie","twitter_card":"summary_large_image","twitter_misc":{"\u00c9crit par":"Vincent Nyanzu Kwofie","Dur\u00e9e de lecture estim\u00e9e":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.nvixeon.com\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\/#article","isPartOf":{"@id":"https:\/\/www.nvixeon.com\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\/"},"author":{"name":"Vincent Nyanzu Kwofie","@id":"https:\/\/www.nvixeon.com\/#\/schema\/person\/1e56786402d05eb5a411bc0e203bd6b7"},"headline":"Getting Started with STM32N6 Vision: Running Your First Object Detection Model","datePublished":"2026-07-13T00:38:32+00:00","dateModified":"2026-07-13T01:39:16+00:00","mainEntityOfPage":{"@id":"https:\/\/www.nvixeon.com\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\/"},"wordCount":506,"publisher":{"@id":"https:\/\/www.nvixeon.com\/#organization"},"articleSection":["STM32N6","Tutorials &amp; Guides"],"inLanguage":"fr-FR"},{"@type":"WebPage","@id":"https:\/\/www.nvixeon.com\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\/","url":"https:\/\/www.nvixeon.com\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\/","name":"STM32N6 Vision: Run Your First Object Detection Model","isPartOf":{"@id":"https:\/\/www.nvixeon.com\/#website"},"datePublished":"2026-07-13T00:38:32+00:00","dateModified":"2026-07-13T01:39:16+00:00","description":"A hands-on guide to deploying a pretrained YOLOv8n model on the STM32N6's NPU, from toolchain setup to live camera detections.","breadcrumb":{"@id":"https:\/\/www.nvixeon.com\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.nvixeon.com\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.nvixeon.com\/getting-started-with-stm32n6-vision-running-your-first-object-detection-model\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.nvixeon.com\/"},{"@type":"ListItem","position":2,"name":"Getting Started with STM32N6 Vision: Running Your First Object Detection Model"}]},{"@type":"WebSite","@id":"https:\/\/www.nvixeon.com\/#website","url":"https:\/\/www.nvixeon.com\/","name":"Nvixeon","description":"Custom STM32 Development Boards \u2014 Built in Ghana, Shipped Worldwide","publisher":{"@id":"https:\/\/www.nvixeon.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.nvixeon.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"https:\/\/www.nvixeon.com\/#organization","name":"Nvixeon","url":"https:\/\/www.nvixeon.com\/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/www.nvixeon.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.nvixeon.com\/wp-content\/uploads\/2026\/06\/cropped-Nvixeon_Icon-12.webp","contentUrl":"https:\/\/www.nvixeon.com\/wp-content\/uploads\/2026\/06\/cropped-Nvixeon_Icon-12.webp","width":512,"height":512,"caption":"Nvixeon"},"image":{"@id":"https:\/\/www.nvixeon.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.nvixeon.com\/#\/schema\/person\/1e56786402d05eb5a411bc0e203bd6b7","name":"Vincent Nyanzu Kwofie","image":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/secure.gravatar.com\/avatar\/e656f896e9c830369e61ccecbdefb5e9ffbe544962a13983f2ae009448338ce5?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/e656f896e9c830369e61ccecbdefb5e9ffbe544962a13983f2ae009448338ce5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e656f896e9c830369e61ccecbdefb5e9ffbe544962a13983f2ae009448338ce5?s=96&d=mm&r=g","caption":"Vincent Nyanzu Kwofie"},"sameAs":["http:\/\/nvixeon.com"],"url":"https:\/\/www.nvixeon.com\/fr\/author\/vincentkwofie123gmail-com\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.nvixeon.com\/fr\/wp-json\/wp\/v2\/posts\/1733","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.nvixeon.com\/fr\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.nvixeon.com\/fr\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.nvixeon.com\/fr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.nvixeon.com\/fr\/wp-json\/wp\/v2\/comments?post=1733"}],"version-history":[{"count":1,"href":"https:\/\/www.nvixeon.com\/fr\/wp-json\/wp\/v2\/posts\/1733\/revisions"}],"predecessor-version":[{"id":1737,"href":"https:\/\/www.nvixeon.com\/fr\/wp-json\/wp\/v2\/posts\/1733\/revisions\/1737"}],"wp:attachment":[{"href":"https:\/\/www.nvixeon.com\/fr\/wp-json\/wp\/v2\/media?parent=1733"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.nvixeon.com\/fr\/wp-json\/wp\/v2\/categories?post=1733"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.nvixeon.com\/fr\/wp-json\/wp\/v2\/tags?post=1733"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}