Skip to content

Commit

Permalink
m
Browse files Browse the repository at this point in the history
  • Loading branch information
Gin committed Nov 23, 2023
1 parent 24c67d4 commit ac0e76f
Showing 1 changed file with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,6 @@ namespace PokemonAutomation{
namespace Kernels{

//TODO: impl this file

size_t filter_rgb32_euclidean_Default(
const uint32_t* in, size_t in_bytes_per_row, size_t width, size_t height,
uint32_t* out, size_t out_bytes_per_row,
uint32_t expected, double max_euclidean_distance,
uint32_t replacement_color, bool replace_color_within_range
);

size_t to_blackwhite_rgb32_range_Default(
const uint32_t* in, size_t in_bytes_per_row, size_t width, size_t height,
uint32_t* out, size_t out_bytes_per_row,
Expand Down Expand Up @@ -203,8 +195,6 @@ size_t filter_rgb32_euclidean_arm64_NEON(
uint32_t expected, double max_euclidean_distance,
uint32_t replacement_color, bool replace_color_within_range
){
// return filter_rgb32_euclidean_Default(in, in_bytes_per_row, width, height,
// out, out_bytes_per_row, expected, max_euclidean_distance, replacement_color, replace_color_within_range);
ImageFilter_RgbEuclidean_arm64_NEON filter(expected, max_euclidean_distance, replacement_color, replace_color_within_range);
filter_per_pixel(in, in_bytes_per_row, width, height, filter, out, out_bytes_per_row);
return filter.count();
Expand Down

0 comments on commit ac0e76f

Please sign in to comment.