Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Peter J. Mello
libfprint
Commits
f0ef386f
Commit
f0ef386f
authored
Oct 29, 2007
by
Daniel Drake
Browse files
More NBIS cleanups
parent
6f633cc7
Changes
16
Expand all
Hide whitespace changes
Inline
Side-by-side
TODO
View file @
f0ef386f
...
...
@@ -27,3 +27,5 @@ upekts/thinkfinger relicensing (GPL --> LGPL)
make library optionally asynchronous and maybe thread-safe
pkg-config file
nbis cleanups
track open devices, so we can close them during libfprint close
free memory during libfprint close
configure.ac
View file @
f0ef386f
...
...
@@ -3,7 +3,7 @@ AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([libfprint/core.c])
AM_CONFIG_HEADER([config.h])
AC_PREREQ([2.
61
])
AC_PREREQ([2.
50
])
AC_PROG_CC
AC_PROG_LIBTOOL
AC_C_INLINE
...
...
libfprint/Makefile.am
View file @
f0ef386f
...
...
@@ -15,18 +15,14 @@ NBIS_SRC = \
nbis/bozorth3/bz_sort.c
\
nbis/mindtct/binar.c
\
nbis/mindtct/block.c
\
nbis/mindtct/chaincod.c
\
nbis/mindtct/contour.c
\
nbis/mindtct/detect.c
\
nbis/mindtct/dft.c
\
nbis/mindtct/free.c
\
nbis/mindtct/getmin.c
\
nbis/mindtct/globals.c
\
nbis/mindtct/imgutil.c
\
nbis/mindtct/init.c
\
nbis/mindtct/isempty.c
\
nbis/mindtct/line.c
\
nbis/mindtct/link.c
\
nbis/mindtct/log.c
\
nbis/mindtct/loop.c
\
nbis/mindtct/maps.c
\
...
...
@@ -38,8 +34,7 @@ NBIS_SRC = \
nbis/mindtct/ridges.c
\
nbis/mindtct/shape.c
\
nbis/mindtct/sort.c
\
nbis/mindtct/util.c
\
nbis/mindtct/xytreps.c
nbis/mindtct/util.c
libfprint_la_CFLAGS
=
-fvisibility
=
hidden
-Inbis
/include
$(LIBUSB_CFLAGS)
$(GLIB_CFLAGS)
$(AM_CFLAGS)
libfprint_la_LDFLAGS
=
-version-info
@lt_major@:@lt_revision@:@lt_age@
...
...
libfprint/nbis/include/lfs.h
View file @
f0ef386f
...
...
@@ -721,12 +721,9 @@ extern int find_valid_block(int *, int *, int *, int *, int *,
const
int
,
const
int
);
extern
void
set_margin_blocks
(
int
*
,
const
int
,
const
int
,
const
int
);
/* chaincod.c */
extern
int
chain_code_loop
(
int
**
,
int
*
,
const
int
*
,
const
int
*
,
const
int
);
extern
int
is_chain_clockwise
(
const
int
*
,
const
int
,
const
int
);
/* contour.c */
extern
int
allocate_contour
(
int
**
,
int
**
,
int
**
,
int
**
,
const
int
);
int
allocate_contour
(
int
**
ocontour_x
,
int
**
ocontour_y
,
int
**
ocontour_ex
,
int
**
ocontour_ey
,
const
int
ncontour
);
extern
void
free_contour
(
int
*
,
int
*
,
int
*
,
int
*
);
extern
int
get_high_curvature_contour
(
int
**
,
int
**
,
int
**
,
int
**
,
int
*
,
const
int
,
const
int
,
const
int
,
const
int
,
const
int
,
...
...
@@ -741,11 +738,6 @@ extern int trace_contour(int **, int **, int **, int **, int *,
extern
int
search_contour
(
const
int
,
const
int
,
const
int
,
const
int
,
const
int
,
const
int
,
const
int
,
const
int
,
unsigned
char
*
,
const
int
,
const
int
);
extern
int
next_contour_pixel
(
int
*
,
int
*
,
int
*
,
int
*
,
const
int
,
const
int
,
const
int
,
const
int
,
const
int
,
unsigned
char
*
,
const
int
,
const
int
);
extern
int
start_scan_nbr
(
const
int
,
const
int
,
const
int
,
const
int
);
extern
int
next_scan_nbr
(
const
int
,
const
int
);
extern
int
min_contour_theta
(
int
*
,
double
*
,
const
int
,
const
int
*
,
const
int
*
,
const
int
);
extern
void
contour_limits
(
int
*
,
int
*
,
int
*
,
int
*
,
const
int
*
,
...
...
@@ -754,11 +746,11 @@ extern void fix_edge_pixel_pair(int *, int *, int *, int *,
unsigned
char
*
,
const
int
,
const
int
);
/* detect.c */
extern
int
lfs_detec
t_minutiae
_V2
(
MINUTIAE
**
,
int
**
,
int
**
,
int
**
,
int
**
,
int
*
,
int
*
,
unsigned
char
**
,
int
*
,
int
*
,
unsigned
char
*
,
const
int
,
const
int
,
const
LFSPARMS
*
);
extern
int
ge
t_minutiae
(
MINUTIAE
**
,
int
**
,
int
**
,
int
**
,
int
**
,
int
**
,
int
*
,
int
*
,
unsigned
char
**
,
int
*
,
int
*
,
int
*
,
unsigned
char
*
,
const
int
,
const
int
,
const
int
,
const
double
,
const
LFSPARMS
*
);
/* dft.c */
extern
int
dft_dir_powers
(
double
**
,
unsigned
char
*
,
const
int
,
...
...
@@ -773,13 +765,6 @@ extern void free_dftwaves(DFTWAVES *);
extern
void
free_rotgrids
(
ROTGRIDS
*
);
extern
void
free_dir_powers
(
double
**
,
const
int
);
/* getmin.c */
extern
int
get_minutiae
(
MINUTIAE
**
,
int
**
,
int
**
,
int
**
,
int
**
,
int
**
,
int
*
,
int
*
,
unsigned
char
**
,
int
*
,
int
*
,
int
*
,
unsigned
char
*
,
const
int
,
const
int
,
const
int
,
const
double
,
const
LFSPARMS
*
);
/* imgutil.c */
extern
void
bits_6to8
(
unsigned
char
*
,
const
int
,
const
int
);
extern
void
bits_8to6
(
unsigned
char
*
,
const
int
,
const
int
);
...
...
@@ -804,33 +789,10 @@ extern int init_rotgrids(ROTGRIDS **, const int, const int, const int,
extern
int
alloc_dir_powers
(
double
***
,
const
int
,
const
int
);
extern
int
alloc_power_stats
(
int
**
,
double
**
,
int
**
,
double
**
,
const
int
);
/* isempty.c */
extern
int
is_image_empty
(
int
*
,
const
int
,
const
int
);
extern
int
is_qmap_empty
(
int
*
,
const
int
,
const
int
);
/* line.c */
extern
int
line_points
(
int
**
,
int
**
,
int
*
,
const
int
,
const
int
,
const
int
,
const
int
);
/* link.c */
extern
int
link_minutiae
(
MINUTIAE
*
,
unsigned
char
*
,
const
int
,
const
int
,
int
*
,
const
int
,
const
int
,
const
LFSPARMS
*
);
extern
int
create_link_table
(
int
**
,
int
**
,
int
**
,
int
*
,
int
*
,
int
*
,
const
int
,
const
int
,
const
MINUTIAE
*
,
const
int
*
,
int
*
,
const
int
,
const
int
,
unsigned
char
*
,
const
int
,
const
int
,
const
LFSPARMS
*
);
extern
int
update_link_table
(
int
*
,
int
*
,
int
*
,
int
*
,
int
*
,
int
*
,
const
int
,
int
*
,
int
*
,
int
*
,
int
*
,
const
int
,
const
int
,
const
int
);
extern
int
order_link_table
(
int
*
,
int
*
,
int
*
,
const
int
,
const
int
,
const
int
,
const
int
,
const
MINUTIAE
*
,
const
int
);
extern
int
process_link_table
(
const
int
*
,
const
int
*
,
const
int
*
,
const
int
,
const
int
,
const
int
,
const
int
,
MINUTIAE
*
,
int
*
,
unsigned
char
*
,
const
int
,
const
int
,
const
LFSPARMS
*
);
extern
double
link_score
(
const
double
,
const
double
,
const
LFSPARMS
*
);
/* loop.c */
extern
int
get_loop_list
(
int
**
,
MINUTIAE
*
,
const
int
,
unsigned
char
*
,
const
int
,
const
int
);
...
...
@@ -1022,6 +984,8 @@ extern int adjust_high_curvature_minutia_V2(int *, int *, int *,
int
*
,
MINUTIAE
*
,
const
LFSPARMS
*
);
extern
int
get_low_curvature_direction
(
const
int
,
const
int
,
const
int
,
const
int
);
void
lfs2nist_minutia_XYT
(
int
*
ox
,
int
*
oy
,
int
*
ot
,
const
MINUTIA
*
minutia
,
const
int
iw
,
const
int
ih
);
/* quality.c */
extern
int
gen_quality_map
(
int
**
,
int
*
,
int
*
,
int
*
,
int
*
,
...
...
@@ -1029,12 +993,6 @@ extern int gen_quality_map(int **, int *, int *, int *, int *,
extern
int
combined_minutia_quality
(
MINUTIAE
*
,
int
*
,
const
int
,
const
int
,
const
int
,
unsigned
char
*
,
const
int
,
const
int
,
const
int
,
const
double
);
double
grayscale_reliability
(
MINUTIA
*
,
unsigned
char
*
,
const
int
,
const
int
,
const
int
);
extern
void
get_neighborhood_stats
(
double
*
,
double
*
,
MINUTIA
*
,
unsigned
char
*
,
const
int
,
const
int
,
const
int
);
extern
int
reliability_fr_quality_map
(
MINUTIAE
*
,
int
*
,
const
int
,
const
int
,
const
int
,
const
int
,
const
int
);
/* remove.c */
extern
int
remove_false_minutia
(
MINUTIAE
*
,
...
...
@@ -1049,23 +1007,6 @@ extern int remove_false_minutia_V2(MINUTIAE *,
extern
int
count_minutiae_ridges
(
MINUTIAE
*
,
unsigned
char
*
,
const
int
,
const
int
,
const
LFSPARMS
*
);
extern
int
count_minutia_ridges
(
const
int
,
MINUTIAE
*
,
unsigned
char
*
,
const
int
,
const
int
,
const
LFSPARMS
*
);
extern
int
find_neighbors
(
int
**
,
int
*
,
const
int
,
const
int
,
MINUTIAE
*
);
extern
int
update_nbr_dists
(
int
*
,
double
*
,
int
*
,
const
int
,
const
int
,
const
int
,
MINUTIAE
*
);
extern
int
insert_neighbor
(
const
int
,
const
int
,
const
double
,
int
*
,
double
*
,
int
*
,
const
int
);
extern
int
sort_neighbors
(
int
*
,
const
int
,
const
int
,
MINUTIAE
*
);
extern
int
ridge_count
(
const
int
,
const
int
,
MINUTIAE
*
,
unsigned
char
*
,
const
int
,
const
int
,
const
LFSPARMS
*
);
extern
int
find_transition
(
int
*
,
const
int
,
const
int
,
const
int
*
,
const
int
*
,
const
int
,
unsigned
char
*
,
const
int
,
const
int
);
extern
int
validate_ridge_crossing
(
const
int
,
const
int
,
const
int
*
,
const
int
*
,
const
int
,
unsigned
char
*
,
const
int
,
const
int
,
const
int
);
/* shape.c */
extern
void
free_shape
(
SHAPE
*
);
...
...
@@ -1094,12 +1035,6 @@ extern int line2direction(const int, const int, const int, const int,
const
int
);
extern
int
closest_dir_dist
(
const
int
,
const
int
,
const
int
);
/* xytreps.c */
extern
void
lfs2nist_minutia_XYT
(
int
*
,
int
*
,
int
*
,
const
MINUTIA
*
,
const
int
,
const
int
);
extern
void
lfs2m1_minutia_XYT
(
int
*
,
int
*
,
int
*
,
const
MINUTIA
*
);
/*************************************************************************/
/* EXTERNAL GLOBAL VARIABLE DEFINITIONS */
/*************************************************************************/
...
...
libfprint/nbis/mindtct/chaincod.c
deleted
100644 → 0
View file @
6f633cc7
/*******************************************************************************
License:
This software was developed at the National Institute of Standards and
Technology (NIST) by employees of the Federal Government in the course
of their official duties. Pursuant to title 17 Section 105 of the
United States Code, this software is not subject to copyright protection
and is in the public domain. NIST assumes no responsibility whatsoever for
its use by other parties, and makes no guarantees, expressed or implied,
about its quality, reliability, or any other characteristic.
Disclaimer:
This software was developed to promote biometric standards and biometric
technology testing for the Federal Government in accordance with the USA
PATRIOT Act and the Enhanced Border Security and Visa Entry Reform Act.
Specific hardware and software products identified in this software were used
in order to perform the software development. In no case does such
identification imply recommendation or endorsement by the National Institute
of Standards and Technology, nor does it imply that the products and equipment
identified are necessarily the best available for the purpose.
*******************************************************************************/
/***********************************************************************
LIBRARY: LFS - NIST Latent Fingerprint System
FILE: CHAINCODE.C
AUTHOR: Michael D. Garris
DATE: 05/11/1999
Contains routines responsible for generating and manipulating
chain codes as part of the NIST Latent Fingerprint System (LFS).
***********************************************************************
ROUTINES:
chain_code_loop()
is_chain_clockwise()
***********************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <lfs.h>
/*************************************************************************
**************************************************************************
#cat: chain_code_loop - Converts a feature's contour points into an
#cat: 8-connected chain code vector. This encoding represents
#cat: the direction taken between each adjacent point in the
#cat: contour. Chain codes may be used for many purposes, such
#cat: as computing the perimeter or area of an object, and they
#cat: may be used in object detection and recognition.
Input:
contour_x - x-coord list for feature's contour points
contour_y - y-coord list for feature's contour points
ncontour - number of points in contour
Output:
ochain - resulting vector of chain codes
onchain - number of codes in chain
(same as number of points in contour)
Return Code:
Zero - chain code successful derived
Negative - system error
**************************************************************************/
int
chain_code_loop
(
int
**
ochain
,
int
*
onchain
,
const
int
*
contour_x
,
const
int
*
contour_y
,
const
int
ncontour
)
{
int
*
chain
;
int
i
,
j
,
dx
,
dy
;
/* If we don't have at least 3 points in the contour ... */
if
(
ncontour
<=
3
){
/* Then we don't have a loop, so set chain length to 0 */
/* and return without any allocations. */
*
onchain
=
0
;
return
(
0
);
}
/* Allocate chain code vector. It will be the same length as the */
/* number of points in the contour. There will be one chain code */
/* between each point on the contour including a code between the */
/* last to the first point on the contour (completing the loop). */
chain
=
(
int
*
)
malloc
(
ncontour
*
sizeof
(
int
));
/* If the allocation fails ... */
if
(
chain
==
(
int
*
)
NULL
){
fprintf
(
stderr
,
"ERROR : chain_code_loop : malloc : chain
\n
"
);
return
(
-
170
);
}
/* For each neighboring point in the list (with "i" pointing to the */
/* previous neighbor and "j" pointing to the next neighbor... */
for
(
i
=
0
,
j
=
1
;
i
<
ncontour
-
1
;
i
++
,
j
++
){
/* Compute delta in X between neighbors. */
dx
=
contour_x
[
j
]
-
contour_x
[
i
];
/* Compute delta in Y between neighbors. */
dy
=
contour_y
[
j
]
-
contour_y
[
i
];
/* Derive chain code index from neighbor deltas. */
/* The deltas are on the range [-1..1], so to use them as indices */
/* into the code list, they must first be incremented by one. */
chain
[
i
]
=
*
(
chaincodes_nbr8
+
((
dy
+
1
)
*
NBR8_DIM
)
+
dx
+
1
);
}
/* Now derive chain code between last and first points in the */
/* contour list. */
dx
=
contour_x
[
0
]
-
contour_x
[
i
];
dy
=
contour_y
[
0
]
-
contour_y
[
i
];
chain
[
i
]
=
*
(
chaincodes_nbr8
+
((
dy
+
1
)
*
NBR8_DIM
)
+
dx
+
1
);
/* Store results to the output pointers. */
*
ochain
=
chain
;
*
onchain
=
ncontour
;
/* Return normally. */
return
(
0
);
}
/*************************************************************************
**************************************************************************
#cat: is_chain_clockwise - Takes an 8-connected chain code vector and
#cat: determines if the codes are ordered clockwise or
#cat: counter-clockwise.
#cat: The routine also requires a default return value be
#cat: specified in the case the the routine is not able to
#cat: definitively determine the chains direction. This allows
#cat: the default response to be application-specific.
Input:
chain - chain code vector
nchain - number of codes in chain
default_ret - default return code (used when we can't tell the order)
Return Code:
TRUE - chain determined to be ordered clockwise
FALSE - chain determined to be ordered counter-clockwise
Default - could not determine the order of the chain
**************************************************************************/
int
is_chain_clockwise
(
const
int
*
chain
,
const
int
nchain
,
const
int
default_ret
)
{
int
i
,
j
,
d
,
sum
;
/* Initialize turn-accumulator to 0. */
sum
=
0
;
/* Foreach neighboring code in chain, compute the difference in */
/* direction and accumulate. Left-hand turns increment, whereas */
/* right-hand decrement. */
for
(
i
=
0
,
j
=
1
;
i
<
nchain
-
1
;
i
++
,
j
++
){
/* Compute delta in neighbor direction. */
d
=
chain
[
j
]
-
chain
[
i
];
/* Make the delta the "inner" distance. */
/* If delta >= 4, for example if chain_i==2 and chain_j==7 (which */
/* means the contour went from a step up to step down-to-the-right) */
/* then 5=(7-2) which is >=4, so -3=(5-8) which means that the */
/* change in direction is a righ-hand turn of 3 units). */
if
(
d
>=
4
)
d
-=
8
;
/* If delta <= -4, for example if chain_i==7 and chain_j==2 (which */
/* means the contour went from a step down-to-the-right to step up) */
/* then -5=(2-7) which is <=-4, so 3=(-5+8) which means that the */
/* change in direction is a left-hand turn of 3 units). */
else
if
(
d
<=
-
4
)
d
+=
8
;
/* The delta direction is then accumulated. */
sum
+=
d
;
}
/* Now we need to add in the final delta direction between the last */
/* and first codes in the chain. */
d
=
chain
[
0
]
-
chain
[
i
];
if
(
d
>=
4
)
d
-=
8
;
else
if
(
d
<=
-
4
)
d
+=
8
;
sum
+=
d
;
/* If the final turn_accumulator == 0, then we CAN'T TELL the */
/* direction of the chain code, so return the default return value. */
if
(
sum
==
0
)
return
(
default_ret
);
/* Otherwise, if the final turn-accumulator is positive ... */
else
if
(
sum
>
0
)
/* Then we had a greater amount of left-hand turns than right-hand */
/* turns, so the chain is in COUNTER-CLOCKWISE order, so return FALSE. */
return
(
FALSE
);
/* Otherwise, the final turn-accumulator is negative ... */
else
/* So we had a greater amount of right-hand turns than left-hand */
/* turns, so the chain is in CLOCKWISE order, so return TRUE. */
return
(
TRUE
);
}
libfprint/nbis/mindtct/contour.c
View file @
f0ef386f
This diff is collapsed.
Click to expand it.
libfprint/nbis/mindtct/detect.c
View file @
f0ef386f
...
...
@@ -36,6 +36,7 @@ identified are necessarily the best available for the purpose.
***********************************************************************
ROUTINES:
lfs_detect_minutiae_V2()
get_minutiae()
***********************************************************************/
...
...
@@ -80,7 +81,7 @@ identified are necessarily the best available for the purpose.
Zero - successful completion
Negative - system error
**************************************************************************/
int
lfs_detect_minutiae_V2
(
MINUTIAE
**
ominutiae
,
static
int
lfs_detect_minutiae_V2
(
MINUTIAE
**
ominutiae
,
int
**
odmap
,
int
**
olcmap
,
int
**
olfmap
,
int
**
ohcmap
,
int
*
omw
,
int
*
omh
,
unsigned
char
**
obdata
,
int
*
obw
,
int
*
obh
,
...
...
@@ -343,3 +344,112 @@ int lfs_detect_minutiae_V2(MINUTIAE **ominutiae,
return
(
0
);
}
/*************************************************************************
**************************************************************************
#cat: get_minutiae - Takes a grayscale fingerprint image, binarizes the input
#cat: image, and detects minutiae points using LFS Version 2.
#cat: The routine passes back the detected minutiae, the
#cat: binarized image, and a set of image quality maps.
Input:
idata - grayscale fingerprint image data
iw - width (in pixels) of the grayscale image
ih - height (in pixels) of the grayscale image
id - pixel depth (in bits) of the grayscale image
ppmm - the scan resolution (in pixels/mm) of the grayscale image
lfsparms - parameters and thresholds for controlling LFS
Output:
ominutiae - points to a structure containing the
detected minutiae
oquality_map - resulting integrated image quality map
odirection_map - resulting direction map
olow_contrast_map - resulting low contrast map
olow_flow_map - resulting low ridge flow map
ohigh_curve_map - resulting high curvature map
omap_w - width (in blocks) of image maps
omap_h - height (in blocks) of image maps
obdata - points to binarized image data
obw - width (in pixels) of binarized image
obh - height (in pixels) of binarized image
obd - pixel depth (in bits) of binarized image
Return Code:
Zero - successful completion
Negative - system error
**************************************************************************/
int
get_minutiae
(
MINUTIAE
**
ominutiae
,
int
**
oquality_map
,
int
**
odirection_map
,
int
**
olow_contrast_map
,
int
**
olow_flow_map
,
int
**
ohigh_curve_map
,
int
*
omap_w
,
int
*
omap_h
,
unsigned
char
**
obdata
,
int
*
obw
,
int
*
obh
,
int
*
obd
,
unsigned
char
*
idata
,
const
int
iw
,
const
int
ih
,
const
int
id
,
const
double
ppmm
,
const
LFSPARMS
*
lfsparms
)
{
int
ret
;
MINUTIAE
*
minutiae
;
int
*
direction_map
,
*
low_contrast_map
,
*
low_flow_map
;
int
*
high_curve_map
,
*
quality_map
;
int
map_w
,
map_h
;
unsigned
char
*
bdata
;
int
bw
,
bh
;
/* If input image is not 8-bit grayscale ... */
if
(
id
!=
8
){
fprintf
(
stderr
,
"ERROR : get_minutiae : input image pixel "
);
fprintf
(
stderr
,
"depth = %d != 8.
\n
"
,
id
);
return
(
-
2
);
}
/* Detect minutiae in grayscale fingerpeint image. */
if
((
ret
=
lfs_detect_minutiae_V2
(
&
minutiae
,
&
direction_map
,
&
low_contrast_map
,
&
low_flow_map
,
&
high_curve_map
,
&
map_w
,
&
map_h
,
&
bdata
,
&
bw
,
&
bh
,
idata
,
iw
,
ih
,
lfsparms
))){
return
(
ret
);
}
/* Build integrated quality map. */
if
((
ret
=
gen_quality_map
(
&
quality_map
,
direction_map
,
low_contrast_map
,
low_flow_map
,
high_curve_map
,
map_w
,
map_h
))){
free_minutiae
(
minutiae
);
free
(
direction_map
);
free
(
low_contrast_map
);
free
(
low_flow_map
);
free
(
high_curve_map
);
free
(
bdata
);
return
(
ret
);
}
/* Assign reliability from quality map. */
if
((
ret
=
combined_minutia_quality
(
minutiae
,
quality_map
,
map_w
,
map_h
,
lfsparms
->
blocksize
,
idata
,
iw
,
ih
,
id
,
ppmm
))){
free_minutiae
(
minutiae
);
free
(
direction_map
);
free
(
low_contrast_map
);
free
(
low_flow_map
);
free
(
high_curve_map
);
free
(
quality_map
);
free
(
bdata
);
return
(
ret
);
}
/* Set output pointers. */
*
ominutiae
=
minutiae
;
*
oquality_map
=
quality_map
;
*
odirection_map
=
direction_map
;
*
olow_contrast_map
=
low_contrast_map
;
*
olow_flow_map
=
low_flow_map
;
*
ohigh_curve_map
=
high_curve_map
;
*
omap_w
=
map_w
;
*
omap_h
=
map_h
;
*
obdata
=
bdata
;
*
obw
=
bw
;
*
obh
=
bh
;
*
obd
=
id
;
/* Return normally. */
return
(
0
);
}
libfprint/nbis/mindtct/getmin.c
deleted
100644 → 0
View file @
6f633cc7
/*******************************************************************************
License:
This software was developed at the National Institute of Standards and
Technology (NIST) by employees of the Federal Government in the course
of their official duties. Pursuant to title 17 Section 105 of the
United States Code, this software is not subject to copyright protection
and is in the public domain. NIST assumes no responsibility whatsoever for
its use by other parties, and makes no guarantees, expressed or implied,
about its quality, reliability, or any other characteristic.
Disclaimer:
This software was developed to promote biometric standards and biometric
technology testing for the Federal Government in accordance with the USA
PATRIOT Act and the Enhanced Border Security and Visa Entry Reform Act.
Specific hardware and software products identified in this software were used
in order to perform the software development. In no case does such
identification imply recommendation or endorsement by the National Institute
of Standards and Technology, nor does it imply that the products and equipment
identified are necessarily the best available for the purpose.
*******************************************************************************/
/***********************************************************************
LIBRARY: LFS - NIST Latent Fingerprint System
FILE: GETMIN.C
AUTHOR: Michael D. Garris
DATE: 09/10/2004
UPDATED: 03/16/2005 by MDG
Takes an 8-bit grayscale fingerpinrt image and detects minutiae
as part of the NIST Latent Fingerprint System (LFS), returning
minutiae with final reliabilities and maps including a merged
quality map.
***********************************************************************
ROUTINES:
get_minutiae()
***********************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <lfs.h>
/*************************************************************************
**************************************************************************
#cat: get_minutiae - Takes a grayscale fingerprint image, binarizes the input
#cat: image, and detects minutiae points using LFS Version 2.
#cat: The routine passes back the detected minutiae, the
#cat: binarized image, and a set of image quality maps.
Input:
idata - grayscale fingerprint image data
iw - width (in pixels) of the grayscale image
ih - height (in pixels) of the grayscale image
id - pixel depth (in bits) of the grayscale image
ppmm - the scan resolution (in pixels/mm) of the grayscale image
lfsparms - parameters and thresholds for controlling LFS
Output:
ominutiae - points to a structure containing the
detected minutiae
oquality_map - resulting integrated image quality map
odirection_map - resulting direction map
olow_contrast_map - resulting low contrast map
olow_flow_map - resulting low ridge flow map
ohigh_curve_map - resulting high curvature map
omap_w - width (in blocks) of image maps
omap_h - height (in blocks) of image maps
obdata - points to binarized image data
obw - width (in pixels) of binarized image
obh - height (in pixels) of binarized image
obd - pixel depth (in bits) of binarized image
Return Code:
Zero - successful completion
Negative - system error
**************************************************************************/
int
get_minutiae
(
MINUTIAE
**
ominutiae
,
int
**
oquality_map
,
int
**
odirection_map
,
int
**
olow_contrast_map
,
int
**
olow_flow_map
,
int
**
ohigh_curve_map
,
int
*
omap_w
,
int
*
omap_h
,
unsigned
char
**
obdata
,
int
*
obw
,
int
*
obh
,
int
*
obd
,
unsigned
char
*
idata
,
const
int
iw
,
const
int
ih
,
const
int
id
,
const
double
ppmm
,
const
LFSPARMS
*
lfsparms
)
{
int
ret
;
MINUTIAE
*
minutiae
;
int
*
direction_map
,
*
low_contrast_map
,
*
low_flow_map
;