move doxygen stuff to a branch, revert trunk
This commit is contained in:
parent
759041dcbd
commit
eedebc5ab0
@ -45,5 +45,3 @@ uninstall-hook:
|
|||||||
-chmod -R u+w ${DESTDIR}$(datadir)/doc/vips
|
-chmod -R u+w ${DESTDIR}$(datadir)/doc/vips
|
||||||
-rm -rf ${DESTDIR}$(datadir)/doc/vips
|
-rm -rf ${DESTDIR}$(datadir)/doc/vips
|
||||||
|
|
||||||
doxygen:
|
|
||||||
doxygen doc/Doxyfile
|
|
||||||
|
@ -527,7 +527,6 @@ AC_OUTPUT([
|
|||||||
contrib/vips2dj/share/vips2dj/mono/Makefile
|
contrib/vips2dj/share/vips2dj/mono/Makefile
|
||||||
contrib/vdump/Makefile
|
contrib/vdump/Makefile
|
||||||
contrib/mitsub/Makefile
|
contrib/mitsub/Makefile
|
||||||
doc/Doxyfile
|
|
||||||
python/Makefile
|
python/Makefile
|
||||||
python/vipsCC/Makefile
|
python/vipsCC/Makefile
|
||||||
po/Makefile.in
|
po/Makefile.in
|
||||||
|
1510
doc/Doxyfile.in
1510
doc/Doxyfile.in
File diff suppressed because it is too large
Load Diff
@ -1,7 +1,6 @@
|
|||||||
/** Header file for VIPS Image Processing Library.
|
/* @(#) Header file for Birkbeck/VIPS Image Processing Library
|
||||||
*@author N. Dessipris, K. Martinez, J. Cupitt
|
* Authors: N. Dessipris, K. Martinez, Birkbeck College, London.
|
||||||
*@file vips.h
|
* Sept 94
|
||||||
*@date Sept 94
|
|
||||||
*
|
*
|
||||||
* 15/7/96 JC
|
* 15/7/96 JC
|
||||||
* - now does C++ extern stuff
|
* - now does C++ extern stuff
|
||||||
@ -211,7 +210,7 @@ typedef unsigned char PEL; /* useful datum */
|
|||||||
|
|
||||||
#endif /*IM_ENABLE_DEPRECATED*/
|
#endif /*IM_ENABLE_DEPRECATED*/
|
||||||
|
|
||||||
/** Types of image descriptor we may have. The type field is advisory only: it
|
/* Types of image descriptor we may have. The type field is advisory only: it
|
||||||
* does not imply that any fields in IMAGE have valid data.
|
* does not imply that any fields in IMAGE have valid data.
|
||||||
*/
|
*/
|
||||||
typedef enum {
|
typedef enum {
|
||||||
@ -225,8 +224,7 @@ typedef enum {
|
|||||||
IM_PARTIAL /* partial image */
|
IM_PARTIAL /* partial image */
|
||||||
} im_desc_type;
|
} im_desc_type;
|
||||||
|
|
||||||
/** Demand style from im_generate().
|
/* Demand style from im_generate(). See im_demand_hint().
|
||||||
*@see im_demand_hint().
|
|
||||||
*/
|
*/
|
||||||
typedef enum {
|
typedef enum {
|
||||||
IM_SMALLTILE,
|
IM_SMALLTILE,
|
||||||
@ -250,7 +248,7 @@ typedef struct {
|
|||||||
size_t length; /* Size of window */
|
size_t length; /* Size of window */
|
||||||
} im_window_t;
|
} im_window_t;
|
||||||
|
|
||||||
/** Struct we keep a record of execution time in. Passed to eval callback, so
|
/* Struct we keep a record of execution time in. Passed to eval callback, so
|
||||||
* it can assess progress.
|
* it can assess progress.
|
||||||
*
|
*
|
||||||
* The 'unused' field is there for binary compatibility, remove this when we
|
* The 'unused' field is there for binary compatibility, remove this when we
|
||||||
@ -259,31 +257,30 @@ typedef struct {
|
|||||||
* when we remove this.
|
* when we remove this.
|
||||||
*/
|
*/
|
||||||
typedef struct {
|
typedef struct {
|
||||||
struct im__IMAGE *im; /**< Image we are part of */
|
struct im__IMAGE *im; /* Image we are part of */
|
||||||
time_t unused; /**< FIXME ... for binary compatibility */
|
time_t unused; /* FIXME ... for binary compatibility */
|
||||||
int run; /**< Time we have been running */
|
int run; /* Time we have been running */
|
||||||
int eta; /**< Estimated seconds of computation left */
|
int eta; /* Estimated seconds of computation left */
|
||||||
gint64 tpels; /**< Number of pels we expect to calculate */
|
gint64 tpels; /* Number of pels we expect to calculate */
|
||||||
gint64 npels; /**< Number of pels calculated so far */
|
gint64 npels; /* Number of pels calculated so far */
|
||||||
int percent; /**< Percent complete */
|
int percent; /* Percent complete */
|
||||||
GTimer *start; /**< Start time */
|
GTimer *start; /* Start time */
|
||||||
} im_time_t;
|
} im_time_t;
|
||||||
|
|
||||||
/**
|
/* Image descriptor for subroutine i/o args
|
||||||
* main Image struct for handling images in VIPS.
|
|
||||||
*@struct im__IMAGE
|
|
||||||
*@typedef IMAGE
|
|
||||||
*/
|
*/
|
||||||
typedef struct im__IMAGE {
|
typedef struct im__IMAGE {
|
||||||
int Xsize; /**< width of image in pels*/
|
/* Fields from file header.
|
||||||
int Ysize; /**< height in pels*/
|
*/
|
||||||
int Bands; /**< number of bands*/
|
int Xsize;
|
||||||
int Bbits; /**< bits per band*/
|
int Ysize;
|
||||||
int BandFmt; /**< code for band format*/
|
int Bands;
|
||||||
int Coding; /**< coding type*/
|
int Bbits;
|
||||||
int Type; /**< type of image*/
|
int BandFmt;
|
||||||
float Xres; /**< X resolution in pels/mm*/
|
int Coding;
|
||||||
float Yres; /**< Y resolution in pels/mm*/
|
int Type;
|
||||||
|
float Xres;
|
||||||
|
float Yres;
|
||||||
int Length;
|
int Length;
|
||||||
short Compression;
|
short Compression;
|
||||||
short Level;
|
short Level;
|
||||||
|
@ -1,8 +1,13 @@
|
|||||||
/** Find the absolute value of an image.
|
/* @(#) Find the absolute value of an image. Copy for UNSIGNED types, negate
|
||||||
* Acts as a copy for UNSIGNED types, negate
|
* @(#) for int types, fabs() for float types, and calculate modulus for
|
||||||
* for int types, fabs() for float types, and calculate modulus for
|
* @(#) complex types.
|
||||||
* complex types.
|
* @(#)
|
||||||
*\file im_abs.c
|
* @(#) int
|
||||||
|
* @(#) im_abs( in, out )
|
||||||
|
* @(#) IMAGE *in, *out;
|
||||||
|
* @(#)
|
||||||
|
* @(#) Returns 0 on success and -1 on error
|
||||||
|
* @(#)
|
||||||
*
|
*
|
||||||
* Copyright: 1990, N. Dessipris, based on im_powtra()
|
* Copyright: 1990, N. Dessipris, based on im_powtra()
|
||||||
* Author: Nicos Dessipris
|
* Author: Nicos Dessipris
|
||||||
@ -205,11 +210,7 @@ abs_gen( PEL *in, PEL *out, int width, IMAGE *im )
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Abs of image.
|
/* Abs of image.
|
||||||
*@param in is input IMAGE
|
|
||||||
*@param out is output IMAGE
|
|
||||||
*@return 0 on success, -1 on failure
|
|
||||||
*@see IMAGE
|
|
||||||
*/
|
*/
|
||||||
int
|
int
|
||||||
im_abs( IMAGE *in, IMAGE *out )
|
im_abs( IMAGE *in, IMAGE *out )
|
||||||
|
Loading…
Reference in New Issue
Block a user