Skip to content

Commit 87ce7bb

Browse files
committed
Update readme.
1 parent cfaa22c commit 87ce7bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ Video++ is a video and image processing library that takes advantage of the C++1
77
```c++
88
// A fast parallel implementation of a box_filter using Video++.
99

10-
image2d<int> A(1000, 1000);
11-
image2d<int> B(A.domain());
10+
image2d<int> A(1000, 1000, 1); // A 1000x1000 image with a border of 1 pixel.
11+
image2d<int> B(A.domain(), 1);
1212

1313
auto nbh = make_window(A, { {0, -1}, {0, 0}, {0, 1}, });
1414
pixel_wise(A, B) << [&] (auto& a, auto& b) {

0 commit comments

Comments
 (0)