blob: 5aecb16f885a15f280a4805cdc59b70b1f75243f [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_DOWNSAMPLE_H_
#define TESTS_CV_DOWNSAMPLE_H_
#include <cstdint>
namespace kelvin::cv {
// DUT: downsample.cc
// REF: downsample_test.cc
void downsample(int num_output_cols, const uint16_t* input0_row,
const uint16_t* input1_row, uint16_t* output_row);
}; // namespace kelvin::cv
#endif // TESTS_CV_DOWNSAMPLE_H_