kopftracer2011.h revision 3bbe1e386a73e405bba4c70f3845cd46cce14d13
/* This file is part of the libdepixelize project
Copyright (C) 2013 VinÃcius dos Santos Oliveira <vini.ipsmaker@gmail.com>
GNU Lesser General Public License Usage
under the terms of the GNU Lesser General Public License as published by the
Free Software Foundation; either version 2.1 of the License, or (at your
option) any later version.
You should have received a copy of the GNU Lesser General Public License
along with this library. If not, see <http://www.gnu.org/licenses/>.
GNU General Public License Usage
Alternatively, this library may be used under the terms of the GNU General
Public License as published by the Free Software Foundation, either version
2 of the License, or (at your option) any later version.
You should have received a copy of the GNU General Public License along with
this library. If not, see <http://www.gnu.org/licenses/>.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
*/
#include <string>
// Contains exception definitions
#include <glibmm/fileutils.h>
#include "splines.h"
{
struct Options
{
enum Defaults {
CURVES_MULTIPLIER = 1,
ISLANDS_WEIGHT = 5,
};
Options() :
optimize(true),
nthreads(1)
{}
// Heuristics
double curvesMultiplier;
int islandsWeight;
double sparsePixelsMultiplier;
unsigned sparsePixelsRadius;
// Other options
bool optimize;
int nthreads;
};
/**
* # Exceptions
*
* \p options.optimize and options.nthreads will be ignored
*
* Glib::FileError
* Gdk::PixbufError
*/
/*
* \p options.optimize and options.nthreads will be ignored
*/
/**
* # Exceptions
*
* Glib::FileError
* Gdk::PixbufError
*/
};
} // namespace Tracer
#endif // LIBDEPIXELIZE_TRACER_KOPFTRACER2011_H
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :