1 /* LiquidRescaling Library
2 * Copyright (C) 2007-2009 Carlo Baldassi (the "Author") <carlobaldassi@gmail.com>.
5 * This library implements the algorithm described in the paper
6 * "Seam Carving for Content-Aware Image Resizing"
7 * by Shai Avidan and Ariel Shamir
8 * which can be found at http://www.faculty.idc.ac.il/arik/imret.pdf
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU Lesser General Public License as published by
12 * the Free Software Foundation; version 3 dated June, 2007.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public License
20 * along with this program; if not, see <http://www.gnu.org/licenses/>
30 #include <lqr/lqr_base.h>
31 #include <lqr/lqr_gradient.h>
32 #include <lqr/lqr_rwindow.h>
33 #include <lqr/lqr_energy.h>
34 #include <lqr/lqr_cursor.h>
35 #include <lqr/lqr_progress.h>
36 #include <lqr/lqr_vmap.h>
37 #include <lqr/lqr_vmap_list.h>
38 #include <lqr/lqr_carver_list.h>
39 #include <lqr/lqr_carver_bias.h>
40 #include <lqr/lqr_carver_rigmask.h>
41 #include <lqr/lqr_carver.h>
45 #endif /* __LQR_ALL_H__ */