Img2Num C++ (Internal Developer Docs) dev
API Documentation
Loading...
Searching...
No Matches
kmeans_gpu.h
1#ifndef KMEANS_GPU_H
2#define KMEANS_GPU_H
3
4#include <cstddef>
5#include <cstdint>
6
7void kmeans_gpu(const uint8_t *data, uint8_t *out_data, int32_t *out_labels, const int32_t width,
8 const int32_t height, const int32_t k, const int32_t max_iter,
9 const uint8_t color_space);
10
11#endif