Skip to content

Commit

Permalink
fix: Remove conversion warning in convolve_2d test
Browse files Browse the repository at this point in the history
  • Loading branch information
sdebionne committed Sep 24, 2023
1 parent 3d75bd7 commit cc957e0
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions test/core/image_processing/convolve_2d.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,28 +65,28 @@ void test_convolve_2d_with_image_using_float32_t()
{
gil::float32_t img[] =
{
0.1, 0.2, 0.1, 0.1, 0.4, 0.1, 0.76, 0.1, 0.1,
0.1, 0.2, 0.1, 0.1, 0.4, 0.1, 0.5, 0.1, 0.1,
0.1, 0.2, 0.1, 0.1, 0.4, 0.1, 0.5, 0.1, 0.1,
0.1, 0.6, 0.6, 0.1, 0.54, 0.1, 0.5, 0.1, 0.1,
0.1, 0.2, 0.1, 0.1, 0.4, 0.1, 0.5, 0.1, 0.1,
0.1, 0.2, 0.1, 0.84, 0.4, 0.1, 0.5, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.4, 0.1, 0.5, 0.1, 0.1,
0.1, 0.3, 0.1, 0.1, 0.4, 0.1, 0.32, 0.1, 0.1,
0.1, 0.2, 0.1, 0.1, 0.4, 0.1, 0.21, 0.1, 0.1
0.1f, 0.2f, 0.1f, 0.1f, 0.4f, 0.1f, 0.76f, 0.1f, 0.1f,
0.1f, 0.2f, 0.1f, 0.1f, 0.4f, 0.1f, 0.5f, 0.1f, 0.1f,
0.1f, 0.2f, 0.1f, 0.1f, 0.4f, 0.1f, 0.5f, 0.1f, 0.1f,
0.1f, 0.6f, 0.6f, 0.1f, 0.54f, 0.1f, 0.5f, 0.1f, 0.1f,
0.1f, 0.2f, 0.1f, 0.1f, 0.4f, 0.1f, 0.5f, 0.1f, 0.1f,
0.1f, 0.2f, 0.1f, 0.84f, 0.4f, 0.1f, 0.5f, 0.1f, 0.1f,
0.1f, 0.1f, 0.1f, 0.1f, 0.4f, 0.1f, 0.5f, 0.1f, 0.1f,
0.1f, 0.3f, 0.1f, 0.1f, 0.4f, 0.1f, 0.32f, 0.1f, 0.1f,
0.1f, 0.2f, 0.1f, 0.1f, 0.4f, 0.1f, 0.21f, 0.1f, 0.1f
};

gil::float32_t exp_output[] =
{
0.1, 0.2, 0.1, 0.1, 0.4, 0.1, 0.76, 0.1, 0.1,
0.1, 0.2, 0.1, 0.1, 0.4, 0.1, 0.5, 0.1, 0.1,
0.1, 0.2, 0.1, 0.1, 0.4, 0.1, 0.5, 0.1, 0.1,
0.1, 0.6, 0.6, 0.1, 0.54, 0.1, 0.5, 0.1, 0.1,
0.1, 0.2, 0.1, 0.1, 0.4, 0.1, 0.5, 0.1, 0.1,
0.1, 0.2, 0.1, 0.84, 0.4, 0.1, 0.5, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.4, 0.1, 0.5, 0.1, 0.1,
0.1, 0.3, 0.1, 0.1, 0.4, 0.1, 0.32, 0.1, 0.1,
0.1, 0.2, 0.1, 0.1, 0.4, 0.1, 0.21, 0.1, 0.1
0.1f, 0.2f, 0.1f, 0.1f, 0.4f, 0.1f, 0.76f, 0.1f, 0.1f,
0.1f, 0.2f, 0.1f, 0.1f, 0.4f, 0.1f, 0.5f, 0.1f, 0.1f,
0.1f, 0.2f, 0.1f, 0.1f, 0.4f, 0.1f, 0.5f, 0.1f, 0.1f,
0.1f, 0.6f, 0.6f, 0.1f, 0.54f, 0.1f, 0.5f, 0.1f, 0.1f,
0.1f, 0.2f, 0.1f, 0.1f, 0.4f, 0.1f, 0.5f, 0.1f, 0.1f,
0.1f, 0.2f, 0.1f, 0.84f, 0.4f, 0.1f, 0.5f, 0.1f, 0.1f,
0.1f, 0.1f, 0.1f, 0.1f, 0.4f, 0.1f, 0.5f, 0.1f, 0.1f,
0.1f, 0.3f, 0.1f, 0.1f, 0.4f, 0.1f, 0.32f, 0.1f, 0.1f,
0.1f, 0.2f, 0.1f, 0.1f, 0.4f, 0.1f, 0.21f, 0.1f, 0.1f
};

gil::gray32f_image_t img_gray_out(9, 9);
Expand Down

0 comments on commit cc957e0

Please sign in to comment.