File: warp.h

package info (click to toggle)
xmorph 1%3A20011220
  • links: PTS
  • area: main
  • in suites: woody
  • size: 3,468 kB
  • ctags: 1,534
  • sloc: ansic: 16,401; sh: 2,651; makefile: 556; tcl: 516
file content (19 lines) | stat: -rw-r--r-- 448 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* warp.h : Digital Image Warping algorithms header
//
// Written and Copyright (C) 1994-1999 by Michael J. Gourlay
//
// Provided as is.  No warrantees, express or implied.
*/

#ifndef _WARP__INCLUDED_
#define _WARP__INCLUDED_




extern void warp_image(const unsigned char *in, unsigned char *out, int img_width, int img_height, const double *xs, const double *ys, const double *xd, const double *yd, int mesh_width, int mesh_height);




#endif