Skip to content
Snippets Groups Projects
Commit 10a67d72 authored by Manuel Günther's avatar Manuel Günther
Browse files

Fixed C++ implementation of API test

parent e2d66cfc
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,7 @@ BOB_TRY
blitz::Array<uint8_t, 2> gray_image(100, 100);
gray_image = 0;
for (int i = 0; i < 100; ++i){
gray_image(i, 100-i) = 127;
gray_image(i, 99-i) = 127;
gray_image(i,i) = 255;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment