Skip to main content

image processing - How to patch fingerprint ridges


I get a fingerprint:



enter image description here


But as you see,there are some place is discontinuous,such as:


enter image description here


The question is how to patch the discontinuous line according its gradient?The only one thing that I can think it may be helpful is use Closing or Dilationin transverse orient,but the effect is very bad


enter image description here enter image description here


Could anybody can give some advice for this?



Answer



This might be difficult to do for a human, as it would require very strict definitions of a gap. I will present a method to get lines which will come very close to representing the gaps.


First we'll set up a table of all of the white pixels


a = [IMAGE]

b = ImageValuePositions[a, White];

b is just:


ListPlot[b]

finger


Now we want to calculate each points distance from every other point:


findDist[p1_, p2_] := EuclideanDistance[p1, p2];
AbsoluteTiming[
dists = Table[{i, j, findDist[b[[i]], b[[j]]] },

{i, 1, Length[b]}, {j, 1, Length[b] }]]

(*63s on an i5 4570*)

Now we'll filter (or cluster) for pixels close to other pixels, then dump these results generate a graph:


s1 = Select[Flatten[dists, 1], #[[3]] > 0 && #[[3]] < 3 &];
sa = SparseArray[# -> 1 & /@ s1[[All, {1, 2}]]];
adj = AdjacencyGraph[sa, DirectedEdges -> True];

adj:



adjacency graph


Each one of these 'fingers' represents a string(line/curve) of pixels, these are what we will use later on.


Separate these 'fingers' of pixels (pardon the horrible variable name):


numbers = Table[ConnectedComponents[adj][[i]], 
{i, 1,Length@ConnectedComponents[adj]}];

Now we want to calculate the largest and smallest points on each of these 'fingers' (these are the start/stop of these segments)


largestPointArr = 
Table[{#, Total[b[[#]]]} & /@ numbers[[i]], {i, 1,
Length@numbers}];

largestPts = (TakeLargestBy[#, #[[2]] &, 1] & /@ largestPointArr)[[All, 1, 1]];

smallestPointArr =
Table[{#, Total[b[[#]]]} & /@ numbers[[i]], {i, 1,
Length@numbers}];
smallestPts = (TakeSmallestBy[#, #[[2]] &, 1] & /@ largestPointArr)[[All, 1, 1]];

Now that we have the largest and smallest points, we want to create a curve that extends from these points. In order to generate a curve we need to have trailing and leading points from these largest/smallest points


This function grabs adjoining pixels to the leader or contra-leader of the 'finger'


findCurvePts[p_, 1] := Flatten[AdjacencyList[adj, #] & /@ Flatten[p]]

findCurvePts[p_, n_] :=
findCurvePts[(AdjacencyList[adj, #] & /@ Flatten[p]), n - 1]

Now we're going to fit a curve to the smallest and largest points using their neighbors.


largestPtsAndCurves = 
Flatten@Table[{largestPts[[i]] ->
Fit[b[[#]] & /@ findCurvePts[{largestPts[[i]]}, 6],
{1, x, x^2}, x]}, {i, 1, Length@largestPts}];

smallestPtsAndCurces =

Flatten@Table[{smallestPts[[i]] ->
Fit[b[[#]] & /@ findCurvePts[{smallestPts[[i]]}, 6],
{1, x, x^2}, x]}, {i, 1, Length@smallestPts}];

Each of the largest and smallest pts/curve variables contain the index of the large / small pixel correspond to a function


Because we now have functions which can predict where the next pixels should be, we can plug in the domain from the smallest points into our functions and compare the ranges


Here we plug and chug, only keeping connections where the predicted range is within 3 units of the actual range:


cadidates = 
Select[Flatten[
Table[{largestPts[[i]], smallestPts[[j]],

b[[smallestPts[[j]]]][[2]] - (largestPts[[i]] /. largestPtsAndCurves)
/. x -> b[[smallestPts[[j]]]][[1]]},
{i, 1, Length@largestPts}, {j, 1, Length@smallestPts}], 1],
Abs[#[[3]]] < 3 &];

smallCadidates =
Select[Flatten[
Table[{smallestPts[[i]], largestPts[[j]],
b[[largestPts[[j]]]][[2]] - (smallestPts[[i]] /. smallestPtsAndCurces)
/. x -> b[[largestPts[[j]]]][[1]]},

{i, 1, Length@smallestPts}, {j, 1, Length@largestPts}], 1],
Abs[#[[3]]] < 3 &];

Now lets see what we got- lets plot all of b(the white pixels) with the candidate connections:


Show[ListPlot[{b}], 
Graphics[{Line[{b[[#[[1]]]], b[[#[[2]]]]}] & /@
cadidates, {Pink, Point[b[[#[[1]]]]]} & /@
cadidates, {Blue, Point[b[[#[[2]]]]]} & /@ cadidates}]]

Show[ListPlot[{b}],

Graphics[{Line[{b[[#[[1]]]], b[[#[[2]]]]}] & /@
smallCadidates, {Pink, Point[b[[#[[1]]]]]} & /@
smallCadidates, {Blue, Point[b[[#[[2]]]]]} & /@ smallCadidates}]]

see what we got


What a mess! We are in need of some elimination- all of the candidates can be eliminated if they cross over other points- the "gaps" never cross points.


Now make some lines and remove leading and ending points:


bigLines = Line[{b[[#[[1]]]], b[[#[[2]]]]}] & /@ cadidates;
smallLines = Line[{b[[#[[1]]]], b[[#[[2]]]]}] & /@ smallCadidates;


filteredPts =
Complement[b, b[[#]] & /@ Join[smallestPts, largestPts]];

Now we calculate the distance from every line, to every other point- only qualify a line if the distance to other points is >= 1


 AbsoluteTiming[
smallPointDist =
ParallelTable[{i,
RegionDistance[smallLines[[i]], filteredPts[[j]]]},
{i, 1, Length@smallLines}, {j, 1, Length@filteredPts}]];


winningSmall = Select[Flatten[
Table[ MinimalBy[smallPointDist[[i]], #[[2]] &, 1],
{i, 1, Length@smallLines}], 1], #[[2]] >= 1 &]

AbsoluteTiming[
largePointDist =
ParallelTable[{i,
RegionDistance[bigLines[[i]], filteredPts[[j]]]},
{i, 1, Length@bigLines}, {j, 1, Length@filteredPts}]];


winningLarge =
Select[Flatten[
Table[ MinimalBy[largePointDist[[i]], #[[2]] &, 1],
{i, 1, Length@bigLines}], 1], #[[2]] >= 1 &]

Here's what we have:


Show[ListPlot[{b}], 
Graphics[{Red, Thick, bigLines[[#]]}] & /@ winningLarge[[All, 1]],
Graphics[{Blue, Thick, smallLines[[#]]}] & /@ winningSmall[[All, 1]]]


final


Here it is having some trouble with the reflection:


reflect


Here is the transposition:


enter image description here


I would love to hear ways to improve this!


Comments

Popular posts from this blog

plotting - How to draw lines between specified dots on ListPlot?

I would like to create a plot where I have unconnected dots and some connected. So far, I have figured out how to draw the dots. My code is the following: ListPlot[{{1, 1}, {2, 2}, {3, 3}, {4, 4}, {1, 4}, {2, 5}, {3, 6}, {4, 7}, {1, 7}, {2, 8}, {3, 9}, {4, 10}, {1, 10}, {2, 11}, {3, 12}, {4,13}, {2.5, 7}}, Ticks -> {{1, 2, 3, 4}, None}, AxesStyle -> Thin, TicksStyle -> Directive[Black, Bold, 12], Mesh -> Full] I have thought using ListLinePlot command, but I don't know how to specify to the command to draw only selected lines between the dots. Do have any suggestions/hints on how to do that? Thank you. Answer One possibility would be to use Epilog with Line : ListPlot[ {{1, 1}, {2, 2}, {3, 3}, {4, 4}, {1, 4}, {2, 5}, {3, 6}, {4, 7}, {1, 7}, {2, 8}, {3, 9}, {4, 10}, {1, 10}, {2, 11}, {3, 12}, {4, 13}, {2.5, 7}}, Ticks -> {{1, 2, 3, 4}, None}, AxesStyle -> Thin, TicksStyle -> Directive[Black, Bold, 12], Mesh -> Full, Epilog -> { Line[ ...

dynamic - How can I make a clickable ArrayPlot that returns input?

I would like to create a dynamic ArrayPlot so that the rectangles, when clicked, provide the input. Can I use ArrayPlot for this? Or is there something else I should have to use? Answer ArrayPlot is much more than just a simple array like Grid : it represents a ranged 2D dataset, and its visualization can be finetuned by options like DataReversed and DataRange . These features make it quite complicated to reproduce the same layout and order with Grid . Here I offer AnnotatedArrayPlot which comes in handy when your dataset is more than just a flat 2D array. The dynamic interface allows highlighting individual cells and possibly interacting with them. AnnotatedArrayPlot works the same way as ArrayPlot and accepts the same options plus Enabled , HighlightCoordinates , HighlightStyle and HighlightElementFunction . data = {{Missing["HasSomeMoreData"], GrayLevel[ 1], {RGBColor[0, 1, 1], RGBColor[0, 0, 1], GrayLevel[1]}, RGBColor[0, 1, 0]}, {GrayLevel[0], GrayLevel...

equation solving - Invert and fit implicitly defined curve

I need to fit an implicitly defined curve. I thought I could get some data out of Solve , and then using FindFit . Therefore, I would like to find the relation the parametric curve defined by $F(x,y)=0$: Solve[-(1/2) + 1/2 (0.41202 BesselK[0, 0.1 Sqrt[x^2 + y^2]] + (0.101483 x BesselK[1, 0.1 Sqrt[x^2 + y^2]])/Sqrt[x^2 + y^2]) == 0, y] But I can't get an output: Solve was unable to solve the system with inexact coefficients or the system obtained by direct rationalization of inexact numbers present in the system. Since many of the methods used by Solve require exact input, providing Solve with an exact version of the system may help. >> Edit: In particular, I would like to fit the data coming from the curve with the expression of another curve, and not with a function $f(x)$. In particular, since this clearly looks like a cardioid , I would like it to fit to something like it. What other strategies could I try?