blob: 4d494d6c4d8017c866b0fbf29ef6d1d899c45f5f [file] [log] [blame]
// Copyright 2023 Google LLC
// Licensed under the Apache License, Version 2.0, see LICENSE for details.
// SPDX-License-Identifier: Apache-2.0
#ifndef TESTS_CV_SHIFT_GAUSSIAN_H_
#define TESTS_CV_SHIFT_GAUSSIAN_H_
#include <cstdint>
namespace kelvin::cv {
// DUT: shift_gaussian.cc
// REF: shift_gaussian_test.cc
void shift_gaussian(int num_cols, const uint8_t* input0_row,
const uint8_t* input1_row, const uint8_t* input2_row,
const uint8_t* input3_row, const uint8_t* input4_row,
bool is_stripmine, uint16_t* output_row);
}; // namespace kelvin::cv
#endif // TESTS_CV_SHIFT_GAUSSIAN_H_