fvs.h
Go to the documentation of this file.00001 /*######################################################################## 00002 00003 The contents of this file are subject to the Mozilla Public License 00004 Version 1.0(the "License"); You may NOT use this file except in 00005 compliance with the License. You may obtain a copy of the License at 00006 http:// www.mozilla.org/MPL/ 00007 Software distributed under the License is distributed on an "AS IS" 00008 basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See 00009 the License for the specific language governing rights and limitations 00010 under the License. 00011 00012 The Initial Developer of the Original Code is Shivang Patel. 00013 00014 Copyright(C) 2002-2003. All Rights Reserved. 00015 00016 Authors: Shivang Patel 00017 Jaap de Haan (jdh) 00018 00019 ########################################################################*/ 00020 00021 #if !defined FVS__GLOBAL_HEADER__INCLUDED__ 00022 #define FVS__GLOBAL_HEADER__INCLUDED__ 00023 00024 00037 /* 00038 ** This is the header to include in your main program to be able to 00039 ** use the library capabilities. 00040 */ 00041 00042 #include <stdio.h> 00043 #include <stdlib.h> 00044 #include <time.h> 00045 #include <string.h> 00046 00047 /* include configuration header created in the configure step */ 00048 #include "config.h" 00049 00050 /* basic type definitions */ 00051 #include "fvstypes.h" 00052 00053 /* file I/O */ 00054 #include "import.h" /* automatic detection of format to import */ 00055 #include "export.h" /* export to a file */ 00056 00057 /* image object */ 00058 #include "image.h" 00059 00060 /* floating point field object */ 00061 #include "floatfield.h" 00062 00063 /* file object (stream) */ 00064 #include "file.h" 00065 00066 /* minutia object */ 00067 #include "minutia.h" 00068 00069 /* histogram object */ 00070 #include "histogram.h" 00071 00072 /* image processing functions */ 00073 #include "imagemanip.h" 00074 00075 /* matching algorithms */ 00076 #include "matching.h" 00077 00082 const FvsString_t FvsGetVersion(void); 00083 00084 00085 00086 #endif /* FVS__GLOBAL_HEADER__INCLUDED__*/ 00087 00088