Skip to content

Commit

Permalink
fixed error in data example in image-processing-pipeline.md
Browse files Browse the repository at this point in the history
  • Loading branch information
nikso-itu committed Mar 18, 2024
1 parent 042b335 commit 599bb03
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/disco-2/software/image-processing-pipeline.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ The image processing pipeline and the camera communicate though the use of [Syst
```c
// Example buffer containing image data
unsigned char buffer[] = {
5, 0, 0, 0, 'i', 'm', 'a', 'g', 'e', // 4 bits allocated for the size of the first image, followed by image data
3, 0, 0, 0, 'f', 'o', 'o', // 4 bits allocated for the size the second image, followed by image data
6, 0, 0, 0, 'b', 'a', 'r', 'b', 'a', 'z' // 4 bits allocated for the size the third image, followed by image data
0, 0, 0, 5, 'i', 'm', 'a', 'g', 'e', // 4 bits allocated for the size of the first image, followed by image data
0, 0, 0, 3, 'f', 'o', 'o', // 4 bits allocated for the size the second image, followed by image data
0, 0, 0, 6, 'b', 'a', 'r', 'b', 'a', 'z' // 4 bits allocated for the size the third image, followed by image data
};
```

Expand Down

0 comments on commit 599bb03

Please sign in to comment.