Revision 2088cf2f69747cf62d6c7224652ae752b134b33a authored by Software Heritage on 26 June 2019, 00:00:00 UTC, committed by Software Heritage on 10 August 2019, 00:00:00 UTC
0 parent
Raw File
draw_curve.h
// 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