Raw File
// SPDX-License-Identifier: GPL-3.0-or-later
/**
 * @file draw_curve.h
 * @brief Draw a curve in an image
 * 
 * (C) 2011-2014, 2019, Pascal Monasse <pascal.monasse@enpc.fr>
 */

#ifndef DRAW_CURVE_H
#define DRAW_CURVE_H

#include "levelLine.h"

void draw_curve(const std::vector<Point>& curve, unsigned char v,
                unsigned char* im, int w, int h);

#endif
back to top