~ubuntu-branches/ubuntu/saucy/digikam/saucy

« back to all changes in this revision

Viewing changes to libs/3rdparty/lqr/lqr_gradient_pub.h

  • Committer: Package Import Robot
  • Author(s): Felix Geyer, Rohan Garg, Philip Muškovac, Felix Geyer
  • Date: 2011-09-23 18:18:55 UTC
  • mfrom: (1.2.36 upstream)
  • Revision ID: package-import@ubuntu.com-20110923181855-ifs67wxkugshev9k
Tags: 2:2.1.1-0ubuntu1
[ Rohan Garg ]
* New upstream release (LP: #834190)
  - debian/control
    + Build with libqtwebkit-dev
 - debian/kipi-plugins-common
    + Install libkvkontakte required by kipi-plugins
 - debian/digikam
    + Install panoramagui

[ Philip Muškovac ]
* New upstream release
  - debian/control:
    + Add libcv-dev, libcvaux-dev, libhighgui-dev, libboost-graph1.46-dev,
      libksane-dev, libxml2-dev, libxslt-dev, libqt4-opengl-dev, libqjson-dev,
      libgpod-dev and libqca2-dev to build-deps
    + Add packages for kipi-plugins, libmediawiki, libkface, libkgeomap and
      libkvkontakte
  - debian/rules:
    + Don't build with gphoto2 since it doesn't build with it.
  - Add kubuntu_fix_test_linking.diff to fix linking of the dngconverter test
  - update install files
  - update kubuntu_01_mysqld_executable_name.diff for new cmake layout
    and rename to kubuntu_mysqld_executable_name.diff
* Fix typo in digikam-data description (LP: #804894)
* Fix Vcs links

[ Felix Geyer ]
* Move library data files to the new packages libkface-data, libkgeomap-data
  and libkvkontakte-data.
* Override version of the embedded library packages to 1.0~digikam<version>.
* Exclude the library packages from digikam-dbg to prevent file conflicts in
  the future.
* Call dh_install with --list-missing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* LiquidRescaling Library
2
 
 * Copyright (C) 2007-2009 Carlo Baldassi (the "Author") <carlobaldassi@gmail.com>.
3
 
 * All Rights Reserved.
4
 
 *
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
9
 
 *
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.
13
 
 
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.
18
 
 
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/>
21
 
 */
22
 
 
23
 
#ifndef __LQR_GRADIENT_PUB_H__
24
 
#define __LQR_GRADIENT_PUB_H__
25
 
 
26
 
enum _LqrGradFuncType {
27
 
    LQR_GF_NORM,                        /* gradient norm : sqrt(x^2 + y^2)            */
28
 
    LQR_GF_NORM_BIAS,                   /* NOT IMPLEMENTED DO NOT USE                 */
29
 
    LQR_GF_SUMABS,                      /* sum of absulte values : |x| + |y|          */
30
 
    LQR_GF_XABS,                        /* x absolute value : |x|                     */
31
 
    LQR_GF_YABS,                        /* NOT IMPLEMENTED DO NOT USE                 */
32
 
    LQR_GF_NULL                         /* 0 */
33
 
};
34
 
 
35
 
typedef enum _LqrGradFuncType LqrGradFuncType;
36
 
 
37
 
#endif /* __LQR_GRADIENT_PUB_H__ */