Skip to content
This repository was archived by the owner on Aug 11, 2021. It is now read-only.

Commit 8925193

Browse files
committed
Change face detection tutorial title
1 parent 5036235 commit 8925193

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

content/tutorials/portenta-h7/por-openmv-fd/content.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Creating a Basic Face Filter
1+
# Creating a Basic Face Filter With OpenMV
22
In this tutorial you will build a MicroPython application with OpenMV that uses the Portenta Vision Shield to detect faces and overlay them with a custom image, in this case, a smiley. Think of it as building your own camera filter that puts a smile on every face it detects. This tutorial is based on the face detection example that comes with the OpenMV IDE.
33

44
## What You Will Learn
@@ -29,7 +29,7 @@ For this tutorial you will be using the OpenMV IDE along with the OpenMV firmare
2929

3030
## 1. The Basic Setup
3131

32-
Attach your Vision Carrier to your Portenta H7 and open the **OpenMV** Editor. For this tutorial, you will create a new script that is based on the face detection example provided by OpenMV. Create a new script by clicking the "New File" button in the toolbar on the left side.
32+
Attach your Vision Carrier to your Portenta H7 and open the **OpenMV** Editor. For this tutorial, you will create a new script that is based on the face detection example provided by OpenMV. Create a new script by clicking the "New File" button in the toolbar on the left side and save it as **face_detection.py**.
3333

3434
## 2. Importing the Modules
3535

@@ -74,7 +74,7 @@ Connect your Portenta board to your computer if you haven't done so. Make sure y
7474

7575
Download [this file](assets/face.pbm) containing the smiley bitmap and copy it to the flash drive that was mounted when you connected the Portenta running the OpenMV firmware.
7676

77-
![Copy the bitmap image to flash drive](assets/por_openmv_fd_drive.png)
77+
![Copy the bitmap image to the flash drive](assets/por_openmv_fd_drive.png)
7878

7979
Load the image into a variable called `faceImage` using the `Image()` function from the `image` module. The inital slash refers to the root directoy of the flash drive. In order to use the image as an overlay to the camera stream instead of directly displaying it set the `copy_to_fb` to False such that it doesn't get copied into the frame buffer automatically.
8080

content/tutorials/portenta-h7/por-openmv-fd/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id":"por-openmv-fd",
33
"index": 6,
4-
"title":"Creating a Basic Face Filter",
4+
"title":"Creating a Basic Face Filter With OpenMV",
55
"slug":"por-openmv-fd",
66
"authors":[
77
"Sebastian Romero",

0 commit comments

Comments
 (0)