Skip to content

Commit ad6bc88

Browse files
committed
Change title and fix typo
1 parent f682e46 commit ad6bc88

File tree

1 file changed

+3
-3
lines changed
  • content/hardware/04.pro/shields/portenta-vision-shield/tutorials/camera-to-bitmap-sd-card

1 file changed

+3
-3
lines changed

content/hardware/04.pro/shields/portenta-vision-shield/tutorials/camera-to-bitmap-sd-card/content.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Saving Images as Bitmaps Into the SD Card"
2+
title: "Saving Bitmap Camera Images to the SD Card"
33
difficulty: easy
44
tags: [Camera, Bitmap, SD Card]
55
description: This tutorial shows you how to capture a frame from the Portenta Vision Shield Camera module and save the output as a bitmap image.
@@ -18,7 +18,7 @@ software:
1818
---
1919

2020
## Overview
21-
This tutorial shows you how to capture a frame from the Portenta Vision Shield Camera module and save the output as a bitmap image. It will allow you to see the output directly on your computer without using any third party tool.
21+
This tutorial shows you how to capture a frame from the Portenta Vision Shield Camera module and save the output as a bitmap image. It will allow you to see the output directly on your computer without using any third party tool.
2222

2323
## Goals
2424

@@ -181,7 +181,7 @@ void setFileHeaders(unsigned char *bitmapFileHeader, unsigned char *bitmapDIBHea
181181
182182
***Take a look at the section [Bitmap File Format](#bitmap-file-format) to better understand the file headers that are created with this function***
183183
184-
In this case that our image (320x240) is 8bits per pixel and grayscale on the bitmap rules you need to define the color table (color map) to assign an specific RGB color for our 8 bit color.
184+
In this case that our image (320x240) is 8 bits per pixel and grayscale on the bitmap rules you need to define the color table (color map) to assign an specific RGB color for our 8 bit color.
185185
On the following function it sets the color map as a grayscale of RGB colors from [R:0x00 G:0x00 B:0x00] to [R:0xFF G:0xFF B:0xFF]
186186
```cpp
187187
void setColorMap(unsigned char *colorMap){

0 commit comments

Comments
 (0)