- findfeatures was developed to provide an alternative approach to - create image-based ISIS control point networks. Traditional ISIS - control networks are typically created using equally spaced grids and - area-based image matching (ABM) techniques. Control points are at the - center of these grids and they are not necessarily associated with any - particular feature or interest point. - findfeatures applies feature-based matching (FBM) algorihms using - the full suite of OpenCV - - detection and descriptor extraction algorithms and - - descriptor matchers. The points detected by these - algorithms are associated with special surface features identified by - the type of detector algorithm designed to identify certain - charcteristics. Feature based matching has a - - twenty year history in computer vision and continues to benefit - from improvements and advancements to make development of applications - like this possible. -
-- This application offers alternatives to traditional image matching options - such as autoseed, seedgrid and coreg. Applications - like coreg and pointreg are area-based matching, - findfeatures utilizes feature-based matching techniques. The - OpenCV feature matching framework is used - extensively in this application to implement the concepts contained in a - - robust feature matching algorithm - applied to overlapping single pairs or multiple overlapping image sets. -
-- findfeatures uses OpenCV 3.1's - FBM algorithms to match a single image, or set of images, called the - trainer image(s) to a different image, called the query image. -
-- Feature based algorithms are comprised of three basic processes: - detection of features (or keypoints), extraction of feature descriptors - and finally matching of feature descriptors from two image sources. - To improve the quality of matches, findfeatures applies a fourth - process, robust outlier detection. -
-- Feature detection is the search for features of interest (or key - points) in an image. The ultimate goal is to find features that can - also be found in another image of the same subject or location. - Feature detection algorithms are often refered to as detectors. -
-- Detectors describe key points based on their location in a specific - image. Feature descriptors allow features found by a detector to be - described outside of the context of that image. For example, features - could be described by their roundness or how much they contrast the - surrounding area. Feature descriptors provide a way to compare key - points from different images. Algorithms that extract feature - descriptors from keypoints in an image are called extractors. -
-- The third process is to match key points from different images based on - their feature descriptors. The trainer images can be matched to the - query image (called a trainer to query match) or the query image can be - matched to the trainer images (called a query to trainer match). - findfeatures performs both a trainer to query match and a query - to trainer match. Algorithms for matching feature descriptors are - called matchers. -
-- The final step is to remove outlier matches. This helps improve the - quality and accuracy of matches when conditions make matching - challenging. findfeatures uses a four step outlier removal - process. At each step, matches are rejected and only the surviving - matches are used in the following step. -
-- Matches that survive the outlier rejection process are converted into - an output control network. From here, multiple control networks created - by systematic use of findfeatures can be combined into one - regional or global control network with cnetcombinept. This can - result in extremely large control networks. cnetthinner can be - used to reduce the size of the network while maintaining sufficient - distribution for use with the jigsaw application. If the control - network is going to be used to create a DEM, then it should not be - thinned. -
-- findfeatures is designed to support many different image - formats. However, ISIS cubes with camera models provide the greatest - flexibility when using this feature matcher. ISIS cubes with geometry - can be effectively and efficiently matched by applying fast geometric - transforms that project all overlapping candidate images (referred to - as train images in OpenCV terminolgy) to the camera space of the - match (or truth) image (referred to as the query image in OpenCV - terminology). This single feature allows users to apply virtually all - OpenCV detector and extractor, including algorithms that are not scale - and rotation invariant. Other popular image formats are supported using - OpenCV - - imread() image reader API. Images supported here can be provided as - the image input files. However, these images will not have geometric - functionality so support for the fast geometric option is not - available to these images. As a consequence, FBM algorithms that are - not scale and rotation invarant are not recommended for these images - unless they are relatively spatially consistent. Nor can the point - geometries be provided - only line/sample coorelations will be - computed in these cases. -
-- Note that all images are converted to 8-bit when read in. -
-
- Detectors, extractors, matchers, and robust matcher parameters are
- specified by a specification string entered as the ALGORITHM
- parameter. The basic scheme is shown below (optional portions are
- surrounded by [ ]
).
-
- detector[@param1:value1@...]/extractor[@param1:value@...][/matcher@param1@value1@...][/parameters@param1:value1@...]
-
-
- The specification string consists of between two and four components
- separated by /
. Each component consists of entries
- separated by @
. The first component of the specification
- string, detector[@param1:value1@...]
, defines the
- detector. The first entry is the name of the algorithm. The remaining
- entries are separated by @
and define parameters for the
- detector. The entries consist of the parameter name followed by
- :
and then the parameter value. After the detector
- component is /
and then the extractor component,
- extractor[@param1:value@...]
After the extractor
- component is /
and then the matcher component,
- [matcher@param1@value1@...]
. The extractor and matcher
- components are formatted the same way as the detector component. The
- final component of the specification string,
- [/parameters@param1:value1@...]
defines the robust matcher
- parameters. The first entry is the word parameters
. The
- remaining entries consist of parameter name:value
pairs,
- just like the parameters in the algorithm components.
-
- An alternative scheme for the specification string allows the
- components to be in any order. Each component is formatted the same,
- except the first entry in the detector, extractor, and (if specified)
- matcher components begin with detector.
,
- extractor.
, and matcher.
respectively. For
- example, the specification below would enable root sift in the outlier
- detection, define a FAST detector, define a LATCH descriptor extractor,
- and define a FlannBased matcher.
-
- extractor.LATCH@Bytes:16@HalfSSDSize:4/parameters@RootSift:true/matcher.FlannBasedMatcher/detector.FAST@Threshold:9@NonmaxSuppression:false
-
-
- Many FBM algorithms are designed to use a specific detector, extractor
- pair with shared parameters (SIFT and SURF are good examples of this).
- For these cases, the alternative specification scheme allows for the
- detector and extractor to be defined in a single component with shared
- parameters. To do this, begin the first entry with
- feature2d.
. For example, the following specification would
- define a SIFT algorithm with 4 octave layers for both the detector and
- extractor along with a brute force matcher using the L1 norm.
-
matcher.BFMatcher@NormType:Norm_L1/feature2d.SIFT@NOctaveLayers:4
.
-
- The minimum specification string consists of a detector name and an
- extractor name. When no matcher is specified, a brute force matcher
- with parameters tailored to the extractor is used. For example
- SIFT/SIFT
would result in SIFT being used for the
- detector, SIFT being used for the extractor, and a brute force matcher
- used for the matcher. If used with the alternatice specification
- scheme, the detector and extractor can be defined in a single
- component. So, the specification feature2d.SIFT
defines
- the exact same detector, extractor, and matcher as the previous
- specification.
-
- Multiple sets of FBM algorithms and robust matcher parameters can be - entered via the ALGOSPECFILE parameter. It takes a text file - (*.lis) with a specification on each line. For each specification, a - separate set of FBM algorithms and robust matcher parameters will be - created. Each set will be used to match the input images and the set - that produces the best matches will be used to create the output - control network. When the DEBUG and/or DEBUGLOG - parameters are used, the results from each set along with the quality - of the match will be output. -
-- Each algorithm has default parameters that are - suited to most uses. The LISTALL parameter will list every - supported detector, extractor, and matcher algorithm along with its - parameters and default values. The LISTSPEC parameter will - output the results of the parsed specification string(s). A description - of every algorithm supported by findfeatures and if they can be - used as a detector, extractor, and/or matcher can be found in the - Algorithms table. -
-- Descriptions of the robust matcher parameters and their default values - can be found in the Robust Matcher - Parameters table. -
-- Choosing effective algorithms and parameters is critical to successful - use of findfeatures. If a poor choice of algorithms and/or - parameters is made, findfeatures will usually complete, - but the computation time and/or output control network quality will - suffer. findfeatures supports all of the OpenCV 3.1 - - detectors, extractors, and - - matchers. Some algorithms work well in a wide range of scenarios - (SURF and SIFT are both well tested and very robust), while others are - highly specialized. The following section will help you successfully - determine which algorithms and parameters to use. -
-- findfeatures gives users a wide range of options to adjust how - it works. Such broad power can be daunting when the user is unfamiliar - with FBM. The following are some rules-of-thumb to help make things a - little less daunting. First, when in doubt, trust the defaults. The - defaults in findfeatures are designed to be a good fit for a - wide range of scenarios. They are not a perfect fit for every situation - but a perfect fit usually is not required. The detector and extractor - do not default to a specific algorithm, but the SIFT algorithm is a - very robust algorithm that will produce a high quality output control - network for most situations. The majority of more modern algorithms are - focused on speed increases. Second, if possible, always use the - FASTGEOM parameter. The majority of problems when using FBM - arise from the trainer and query images not having the same geometry. - The FASTGEOM parameter completely eliminates these challenges. - Combining the FASTGEOM parameter with algorithms that are - designed for speed (the FAST descriptor and BRIEF extractor are good - options) will quickly produce a high quality control network. Finally, - if you are torn between a few options, use the LISTSPEC - parameter to test each of them and then only use the best result. When - the LISTSPEC parameter is used, findfeatures will - automatically determine which specification produced the best matches - and use it to create the output control net. -
-- Different detectors search for different types of features. For - example, the FAST algorithm searches for corners, while blob detection - algorithms search for regions that contrast their surroundings. - When choosing which detector to use, consider the prominent features - in the image set. The FAST algorithm would work well for finding key - points on a linear feature, while a blob detection algorithm would work well - for finding key points in nadir images of a heavily cratered area. -
-- When choosing an extractor there are two things to consider: the - invariance of the extractor and the size of the extracted descriptor. - Different extractors are invariant to (not affected by) different - transformations. For example, the SURF algorithm uses descriptors that - are invariant to rotation, while BRIEF feature descriptors are not. - In general, invariance to more transformations comes at a cost, bigger - descriptors. Detectors often find a very large number of key points in - each image. The amount of time it takes to extract and then compare all - of the resultant feature descriptors heavily depends upon the size of - the descriptor. So, more invariance usually means longer computation - times. For example, using the BRIEF extractor (which extracts very - small feature descriptors) instead of the SURF extractor (which has - moderately sized feature descriptors) provides an order of magnitude - speed increases for both extraction and matching. If your images are - from the similar sensors and under similar conditions, then an - extractor that uses smaller descriptors (BRISK, BRIEF, etc.) will be - faster and just as accurate as extractors that use larger, more robust - descriptors (SIFT, SURF, etc.). If your images are from very different - sensors (a spot spectrometer and a highly distorted framing camera, a - low resolution framing camera and a high resolution push broom camera, - etc.) or under very different conditions (very oblique and nadir, - opposing sun angles, etc.) then using an extractor with a more robust - descriptor will take longer but will be significantly more accurate - than using an extractor with a smaller descriptor. -
-- findfeatures has two options for matchers: - brute force matching and a FLANN based matcher. The brute force matcher - attempts to match a key point with every key point in another image and - then pairs it with the closest match. This ensures a good match but can - take a long time for large numbers of images and key points. The FLANN - based matcher trains itself to find the approximate best match. It - does not ensure the same accuracy as the brute force matcher, but is - significantly faster for large numbers of images and key points. By - default findfeatures uses a brute force matcher with parameters - set based upon the extractor used. -
-- Several parameters allow for fine tuning the outlier rejection process. - The RATIO parameter determines how distinct matches must be. A - ratio close to 0 will force findfeatures to consider only - un-ambiguous matches and reject a large number of matches. If many, - indistinct features are detected in each image, a low ratio will result - in a smaller, higher quality control network. If few, non-distinct - features are detected in each image, a high ratio will prevent the - control network from being too sparse. The EPITOLERANCE and - EPICONFIDENCE parameters control how outliers are found when the - fundamental matrices are computed. These parameters will have the - highest impact when the query and trainer images are stereo pairs. The - HMGTOLERANCE parameter controls how outliers are found after the - homography matrices are computed. This parameter will have the highest - impact when the query and trainer images have very different exterior - orientations. -
-- Prior to FBM, findfeatures can apply several transformations to - the images. These transformations can help improve match quality in - specific scenarios. The FASTGEOM, GEOMTYPE, and - FASTGEOMPOINTS parameters allow for reprojection of the trainer - images into the query image's geometry prior to FBM. These parameters - can be used to achieve the speed increases of algorithms that are not - rotation and/or scale invariant (BRIEF, FAST, etc.) without loss of - accuracy. These parameters require that the trainer and query images - are ISIS cubes with geometry. For rotation and scale invariant algorithms - (SIFT, SURF, etc.), these parameters will have little to no - effect. The FILTER parameter allows for the application of - filters to the trainer and query images prior to FBM. The SOBEL - option will emphasize edges in the images. The Sobel filter can - introduce artifacts into some images, so the SCHARR option is - available to apply a more accurate filter. These filters allows for - improved detection when using an edge based detector (FAST, AGAST, - BRISK, etc.). If an edge based detector is not detecting - a sufficient number of key points or the key points are not - sufficienty distinct, these filters may increase the number of - successful matches. -
-- The OpenCV methods used in the outlier rejection process have several - options that can be set along with the algorithms. The available - parameters are listed in the Robust - Matcher Parameters table. -
-Keyword | -Default | -Description | -||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
SaveRenderedImages | -False | -- Option to save the images that are matched - after all transforms (e.g., fast geom, filtered, etc...) - have been applied. The query (MATCH) image will have - "_query" will be appended to the base name. All - FROM/FROMLIST images will have "_train" appended to their - names. They are saved as PNG images in the directory - specifed by the SavePath parameter. - | -||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
SavePath | -$PWD | -- Specify the directory path to save all transform rendered - images if SaveRenderedImages=TRUE. - | -||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
RootSift | -False | -- Apply the - - RootSift algorithm to the descriptors that - normalizes SIFT-type of descriptors. A good description of - the application of this algorithm is described in - - this article. In general, SIFT descriptors histograms are - compared in Euclidean space. RootSift applies a Hellinger - kernel to the descriptor histograms that greatly improve - performance and still allows Euclidean distances in its - evaluation. Be sure to use this for SIFT-type descriptors - only. - | -||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
MinimumFundamentalPoints | -8 | -- The Epipolar algorithm in OpenCV requires a minimim of 8 - points in order to properly compute the fundamental matrix. - This parameter allows the user to specify the minimum number - of points allowed. - | -||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
RefineFundamentalMatrix | -True | -- A single computation of the fundamental matrix is performed - unless this parameter is set to true. In this case, a new - fundmental matrix is computed after outlier are detected and - removed. This will improve the matrix since outliers are - removed and the matrix is recomputed. - | +
Keyword | +Default | +Description | +||||
---|---|---|---|---|---|---|
SaveRenderedImages | +False | ++ Option to save the images that are matched + after all transforms (e.g., fast geom, filtered, etc...) + have been applied. The query (MATCH) image will have + "_query" will be appended to the base name. All + FROM/FROMLIST images will have "_train" appended to their + names. They are saved as PNG images in the directory + specifed by the SavePath parameter. + | +||||
SavePath | +$PWD | ++ Specify the directory path to save all transform rendered + images if SaveRenderedImages=TRUE. + | +||||
RootSift | +False | ++ Apply the + + RootSift algorithm to the descriptors that + normalizes SIFT-type of descriptors. A good description of + the application of this algorithm is described in + + this article. In general, SIFT descriptors histograms are + compared in Euclidean space. RootSift applies a Hellinger + kernel to the descriptor histograms that greatly improve + performance and still allows Euclidean distances in its + evaluation. Be sure to use this for SIFT-type descriptors + only. + | +||||
MinimumFundamentalPoints | +8 | ++ The Epipolar algorithm in OpenCV requires a minimim of 8 + points in order to properly compute the fundamental matrix. + This parameter allows the user to specify the minimum number + of points allowed. + | +||||
RefineFundamentalMatrix | +True | ++ A single computation of the fundamental matrix is performed + unless this parameter is set to true. In this case, a new + fundmental matrix is computed after outlier are detected and + removed. This will improve the matrix since outliers are + removed and the matrix is recomputed. + | ||||
MinimumHomographyPoints | @@ -486,8 +522,8 @@@@ -572,8 +608,8 @@ |
|
- An additional feature of findfeatures is a detailed debugging - report of processing behavior in real time for all matching and - outlier detection algorithms. The data produced by this option is - very useful to identify the exact processing step where some matching - operations may result in failed matching operations. In turn, this - will allow users to alter parameters to address these issues to lead - to successful matches that would otherwise not be able to achieve. -
-- To invoke this option, users set DEBUG=TRUE and provide an optional - output file (DEBUGLOG=filename) where the debug data is written. If - no file is specified, output defaults to the terminal device. Here is - an example (see the example section for details) of a debug session - with line numbers added for reference of the description that - follows: -
-- 1 --------------------------------------------------- - 2 Program: findfeatures - 3 Version 0.1 - 4 Revision: $Revision: 7311 $ - 5 RunTime: 2017-01-03T16:59:01 - 6 OpenCV_Version: 3.1.0 - 7 - 8 System Environment... - 9 Number available CPUs: 4 - 10 Number default threads: 4 - 11 Total threads: 4 - 12 - 13 Total Algorithms to Run: 1 - 14 - 15 @@ matcher-pair started on 2017-01-03T16:59:02 - 16 - 17 +++++++++++++++++++++++++++++ - 18 Entered RobustMatcher::match(MatchImage &query, MatchImage &trainer)... - 19 Specification: surf@hessianThreshold:100/surf/BFMatcher@NormType:NORM_L2@CrossCheck:false - 20 ** Query Image: EW0211981114G.lev1.cub - 21 FullSize: (1024, 1024) - 22 Rendered: (1024, 1024) - 23 ** Train Image: EW0242463603G.lev1.cub - 24 FullSize: (1024, 1024) - 25 Rendered: (1024, 1024) - 26 --> Feature detection... - 27 Total Query keypoints: 11823 [11823] - 28 Total Trainer keypoints: 11989 [11989] - 29 Processing Time: 0.307 - 30 Processing Keypoints/Sec: 77563.5 - 31 --> Extracting descriptors... - 32 Processing Time(s): 0.9 - 33 Processing Descriptors/Sec: 26457.8 - 34 - 35 *Removing outliers from image pairs - 36 Entered RobustMatcher::removeOutliers(Mat &query, vector<Mat> &trainer)... - 37 --> Matching 2 nearest neighbors for ratio tests.. - 38 Query, Train Descriptors: 11823, 11989 - 39 Computing query->train Matches... - 40 Total Matches Found: 11823 - 41 Processing Time: 1.906 - 42 Matches/second: 6203.04 - 43 Computing train->query Matches... - 44 Total Matches Found: 11989 - 45 Processing Time: 2.412 <seconds> - 46 Matches/second: 4970.56 - 47 -Ratio test on query->train matches... - 48 Entered RobustMatcher::ratioTest(matches[2]) for 2 NearestNeighbors (NN)... - 49 RobustMatcher::Ratio: 0.65 - 50 Total Input Matches Tested: 11823 - 51 Total Passing Ratio Tests: 988 - 52 Total Matches Removed: 10835 - 53 Total Failing NN Test: 10835 - 54 Processing Time: 0 - 55 -Ratio test on train->query matches... - 56 Entered RobustMatcher::ratioTest(matches[2]) for 2 NearestNeighbors (NN)... - 57 RobustMatcher::Ratio: 0.65 - 58 Total Input Matches Tested: 11989 - 59 Total Passing Ratio Tests: 1059 - 60 Total Matches Removed: 10930 - 61 Total Failing NN Test: 10930 - 62 Processing Time: 0 - 63 Entered RobustMatcher::symmetryTest(matches1,matches2,symMatches)... - 64 -Running Symmetric Match tests... - 65 Total Input Matches1x2 Tested: 988 x 1059 - 66 Total Passing Symmetric Test: 669 - 67 Processing Time: 0.012 - 68 Entered RobustMatcher::computeHomography(keypoints1/2, matches...)... - 69 -Running RANSAC Constraints/Homography Matrix... - 70 RobustMatcher::HmgTolerance: 1 - 71 Number Initial Matches: 669 - 72 Total 1st Inliers Remaining: 273 - 73 Total 2nd Inliers Remaining: 266 - 74 Processing Time: 0.041 - 75 Entered EpiPolar RobustMatcher::ransacTest(matches, keypoints1/2...)... - 76 -Running EpiPolar Constraints/Fundamental Matrix... - 77 RobustMatcher::EpiTolerance: 1 - 78 RobustMatcher::EpiConfidence: 0.99 - 79 Number Initial Matches: 266 - 80 Inliers on 1st Epipolar: 219 - 81 Inliers on 2nd Epipolar: 209 - 82 Total Passing Epipolar: 209 - 83 Processing Time: 0.01 - 84 Entered RobustMatcher::computeHomography(keypoints1/2, matches...)... - 85 -Running RANSAC Constraints/Homography Matrix... - 86 RobustMatcher::HmgTolerance: 1 - 87 Number Initial Matches: 209 - 88 Total 1st Inliers Remaining: 197 - 89 Total 2nd Inliers Remaining: 197 - 90 Processing Time: 0.001 - 91 %% match-pair complete in 5.589 seconds! -+
+ There are four options to select and customize Feature Matching + algorithms and their parameters. The two findfeatures + parameters that specify Feature Matching algorithms + are the ALGORITHM and ALGOSPECFILE parameters. + The ALGORITHM parameter accepts a string that adheres to the + specifications as described above that select the detector, + extractor and matcher algorithms. Parameters for each of + those algorithms can be provided in the string as well. + The ALGOSPECFILE parameter accepts the name of a file + containing one or more Feature Matching algorithm configurations + that also adhere to the specification. +
++ The ALGORITHM and ALGOSPECFILE parameters should contain the full + specification of the Feature Matching algorithms, including the + optional "/parameters" of the algorithm. At times, its + useful to alter this component of the algorithm to customize for + each set of data without having to maintain seperate files (although + maintaining specs in those file is recommended practice). The + findfeatures ALGORITHM "/parameters" component of the feature + matching specification command line overrides the contents of + the file specified in the PARAMETERS program parameter. This allows + runtime specification of mainly the ALGOSPECFILE PVL-type file + contents to alter behavior of this component of the feature matching + algorithm. +
++ Initial values of outlier matching parameters that can be specified in + the PARAMETERS program option can be found in the + Robust Matcher Parameters table. + Use of PARAMETERS excludes the need for these + values to be specified in the command line without having to explicitly + add them to the ALGORITHM string specification or ALGOSPECFILE. +
++ The findfeatures GLOBALS program option allows users to specify + "/parameters" keywords that are applied in the Feature Matching + algorithms (as well as FASTGEOM algorithms). Individual parameters + are specifed in accordance with the ALGORITHM string specification + described above. For example, users can select to have all matched + files saved as PNGs by specifying "GLOBALS=SaveRenderedImages:true". + This allows the most convenient method to alter or fully specify + feature matching parameters at runtime without having to edit or + provide any parameterization files. +
++ The order of precedence of Feature Matching parameterization is + (lowest to highest) PARAMETERS, ALGOSPECFILE, ALGORITHM and finally + GLOBALS. +
++ The FASTGEOM option provides advanced geometric processing of + training images (FROM, FROMLIST) before they are matched to the query + (MATCH) image. The application of the FASTGEOM option is + indicated when a wide variety of observation geometry is present in + the FROM/FROMLIST images. Once applied, all OpenCV feature matching + algorithms can be used particularly those that are not + + rotation and scale invariant. + This is intended to provide a wide variety of feature matching options + to users that result in better, and more comprehensive image control + networks that contain more images with higher numbers of control points + and higher density counts of control measures. +
++ ISIS inherently provides all the necessary cartographic capabilities + that make it possible to preprocess the images to eliminate, as much + as possible, scale and rotation variances in images. By using a priori + geometry provided by SPICE data, findfeatures constructs + transformation matrices for each trainer image that matches the + geometric properties of the query image. Applying the transformation + matrix to each trainer image results in a (fast) projection, or warp, + of the image into the image space of the query image, thus minimizing + scale and rotation invariance. This defines the FASTGEOM processing + objectives in findfeatures. Note that translation, + or spatial offsets, may likely exist between images due to the inherent + nature of a priori ephemeris data. This option is known to have problems + with image sets of irregular bodies, especially for images acquired along + the long axis of the target body.. +
++ The FASTGEOM algorithms requires all input images to have + ISIS-based SPICE ephemeris applied by the spiceinit application. + If any image does not have SPICE or no common latitude/longitude + coordinates can be determined between the trainer image and the + query image, they are exclude from feature matching and will be + recorded in the TONOGEOM file. Feature matching will continue + if one or more trainer image is successfully transformed. +
++ The FASTGEOM option provides two different algorithms - grid + and radial - that can be used to associate common latitude/longitude + coordinates between two images. These common latitude/longitude + coordinates are translated to line/sample image coordinates in both + images which are then used to create a + + homography + 3x3 transformation matrix mapping the trainer line/sample coordinate + pairs into the cooresponding query line/sample image coordinates. After + the trainer images are read in, the homography transformation matrix is + applied using a + perspective warp projection + of the trainer image. The GEOMTYPE parameter determines the + type of output image is produced from the projection. This produces + the projected trainer image that will be matched to the query image. + The query image is not modified in this process. +
++ Several common parameters govern behavior of both the grid and + radial FASTGEOM algorithms. Note each algorithm is applied + independently to every query/trainer image pair. For each image pair, + the values used/computed and the resulting homography matrix are + logged in the DEBUGLOG file (when DEBUG=true). The algorithm + parameters are described in the following table. +
+Keyword | +Default | +Description | +
---|---|---|
FastGeomAlgorithm | +Radial | ++ Specifies the name of the FASTGEOM point mapping algorithm + to use to compute common latitude/longitude and line/sample + coordinates in the query and trainer images. Valid options are + Radial and Grid. + | +
FastGeomPoints | +25 | ++ The minimum number of valid mapping points required in order to + compute the homography image transformation matrix. If after + the algorithm completes point mapping computations there are + no FastGeomPoints valid points, the image is not added + to the trainer match list and reported in TONOGEOM. The + minimum value is 25, the maximum is all pixels in the images. + | +
FastGeomTolerance | +3.0 | ++ The maximum pixel outlier tolerance allowed in computing the + homography matrix from query and trainer image mapped points + generated from the FASTGEOM algorithms. The outlier for + each mapping point is computed by using the homography matrix + to translate each trainer point to the perspective query point + and calculating the Euclidean distance from the actual query + point. If the absolute distance is larger than FastGeomTolerance + the point is rejected. Note the remaining inlier points are + allowed to be less than FastGeomPoints. + | +
FastGeomQuerySampleTolerance | +0.0 | ++ This parameter allows the number of query image samples to exceed + the actual number of pixels in the image FOV by this tolerance on + both left and right boundaries of the image. This is intended to give + the algorithms the best chance to collect the necessary number of + mapping points to compute the homography tramsformation matrix. + This value is not recommended to be too large, perhaps 5 - 10 + pixels at the most. + | +
FastGeomQueryLineTolerance | +0.0 | ++ This parameter allows the number of query image lines to exceed + the actual number of pixels in the image FOV by this tolerance on + both top and bottom boundaries of the image. This is intended to give + the algorithms the best chance to collect the necessary number of + mapping points to compute the homography transformation matrix. + This value is not recommended to be too large, perhaps 5 - 10 + pixels at the most. + | +
FastGeomTrainSampleTolerance | +0.0 | ++ This parameter allows the number of trainer image samples to exceed + the actual number of pixels in the image FOV by this tolerance on + both left and right boundaries of the image. This is intended to give + the algorithms the best chance to collect the necessary number of + mapping points to compute the homography tramsformation matrix. + This value is not recommended to be too large, perhaps 5 - 10 + pixels at the most. + | +
FastGeomTrainLineTolerance | +0.0 | ++ This parameter allows the number of trainer image lines to exceed + the actual number of pixels in the image FOV by this tolerance on + both top and bottom boundaries of the image. This is intended to give + the algorithms the best chance to collect the necessary number of + mapping points to compute the homography tramsformation matrix. + This value is not recommended to be too large, perhaps 5 - 10 + pixels at the most. + | +
FastGeomDumpMapping | +false | ++ This parameter informs the FASTGEOM algorithm to dump the + mapping points of every query/trainer image pair to a CSV file. + This will produce a file in the current directory of the form + queryfile_trainerfile_{FastGeomAlgorithm}.fastgeom.csv + where queryfile is the base name of the MATCH file with no + directory or file extension, the trainerfile is the base + name of the FROM/FROMLIST file with no directory or file extension, + and {FastGeomAlgorithm} is the type of algorithm specified + in that parameter. The columns written to the file are: + QuerySample, QueryLine, TrainSample, TrainLine, + Latitiude, Longitude, Radius, X, Y, Z, InTrainFOV. + All values are floating point except InTrainFOV which is either + True or False, True indicating the point is (valid) in both + images. The name of this file is indicated in th + DEBUGLOG file as PointDumpFile for eac + query/trainer image pair. + | +
+ The FASTGEOM Grid algorithm computes a coreg-like + rectangular set of grid points that are evenly space in each image axis. + This algorithm will continue to refine the grid by decreasing the spacing + between each iteration until at least FastGeomPoints valid mapping + points are found. The algorithm continues to refine the spacing until + every pixel in the query image is check for a valid mapping coordinate + into the trainer image. Therein lies the potential for this algorithm to + consume massive time and compute resources for images that contain very + few or no valid common geometric points between query and trainer images. + Therefore, some parameters are provided that place + constraints/boundaries on the variables of this algorithm. These + parameters are described in the following table. +
+Keyword | +Default | +Description | +
---|---|---|
FastGeomGridStartIteration | +0 | ++ Specifies the starting iteration of the grid loop that calculates + mapping points from query to trainer images. The first loop is 0 + and it is computed so that it will be as close to the number of + points specified in FastGeomPoints. It can start with any + itertion less than or equal to FastGeomGridStopIteration. + | +
FastGeomGridStopIteration | +calculated | +
+ Specifies the terminating iteration of the grid loop that calculates
+ mapping points from query to trainer images. The last loop, if not
+ specified by the user, is calculated as
+ max( max(query lines/samples), max(trainer lines/samples) ) / 2.0 .
+ It is possible to specify no points if FastGeomGridStartIteration
+ is greater than FastGeomGridStopIteration.
+ |
+
FastGeomGridIterationStep | +1 | +
+ Specifies the iteration increment that is added to the current
+ iteration that is used to calculate the line/sample grid spaceing.
+ The actual grid spacing for line and sample axes are computed
+ as max( 1.0, queryAxisSize/(currinc*1.0)), where
+ queryAxisSize is the number of samples or lines in the axis and
+ currinc is increment + ( iteration * 2 ) , where
+ iteration is the current increment + FastGeomGridIterationStep.
+ |
+
FastGeomGridSaveAllPoints | +false | ++ At each new iteration in the grid algorithm, all points in the + previous iteration are deleted. This true/false flag can be set + to true to preserve all mapping points in earlier iterations. This + may help in reaching the minimum FastGeomPoints but also + runs the risk of duplicate points, thus biasing the homography + matrix or creating an invalid matrix. This option is not recommended + as it may create more problems than it resolves. + | +
+ This algorithm works best for high resolution images where there + are little or no discontinuities in geometry and no limbs. It also + can result in excessively long run times and/or significant computed + resources for approach images where valid geometry is only in a small + localized region in the image FOV. In those cases, the FASTGEOM radial + algorithm is recommended. +
++ The FASTGEOM Radial algorithm computes common geometric mapping + points in the query and trainer images that are generated from a radial + pattern originated at the center of the query image. The radial algorithm + differs most from the grid algorithm because it is not iterative. It is + a one shot algorithm where a single pattern is generated from parameters + that are designed to provide a dense radial pattern. It can be much more + efficient than the grid algorithm but runs a higher risk of failure due to + underdetermination of sufficient number of common geometric points. This + is the default algorithm if one is not specified by the user. + The parameters that can be provided to customize the radial pattern + created in this algorithm are described in the following table. +
+Keyword | +Default | +Description | +
---|---|---|
FastGeomRadialSegmentLength | +25 | +
+ Specifies the length in pixels between each radial set of mapping
+ points on the query image. The center pixel always has a point.
+ Each subseqent circle of points has a radius distance of
+ FastGeomRadialSegmentLength pixels from the previous
+ circular pattern of points. The number of ring segments is computed
+ as sqrt( (nlines^2) + (nsamples^2) ) / FastGeomRadialSegmentLength .
+ |
+
FastGeomRadialPointCount | +5.0 | ++ Number of points on the first circle. This parameter specifies the + density of points on the first circle from the center point. Each + subseqent circle will have a multiple of points on a 360 degree + circle spaced evenly by the number of points computed for each + circle/ring. + | +
FastGeomRadialPointFactor | +1 | +
+ This is the point factor applied to increase the density of points
+ that are spaced on the 360 degree circle at that segment. The
+ number of points is a fuction of the ring segment from the center
+ multiplied by the product of the FastGeomRadialPointCount
+ and the FastGeomRadialPointFactor. The equation used to
+ compute the number of points on the ring segment is
+ FastGeomRadialPointCount + ( (FastGeomRadialPointCount *
+ FastGeomRadialPointFactor) * (ring -1)) .
+ |
+
FastGeomRadialSegments | +optional | ++ This parameter is optional and will supercede + FastGeomRadialSegmentLength. Sometimes its just easier + to directly specify the number of circular ring segments rather + than pixel distance between each ring segment. By providing a + value greater than 0 in this parameter (e.g., using + GLOBALS), this value will directly specify the number + of rings segments in the image rather than the number of rings + computed from FastGeomRadialSegmentLength, the distance + between ring segments. + | +
+ This algorithm produces a set of rings with increasing point density + along each ring. It may perform better than the grid algorithm since + it makes a single pattern in the image. This pattern is used to compute + common mapping points to compute the homography matrix for determining + the prospective matrix to project each trainer image independently. +
+- In the above example, lines 2-13 provide general information about the - program and compute environment. If MAXTHREADS were set to a value less - than 4, number of total threads (line 11) would reflect this number. - Line 15 specifies the precise time the matcher algorithm was invoked. - Line 18-25 shows the algorithm string specification, names of query - (MATCH) and train (FROM) images and the full and rendered sizes of - images. Lines 27 and 28 show the total number of keypoints or features - that were detected by the SURF detector for both the query (11823) and - train (11989) images. Lines 31-33 indicate the descriptors of all the - feature keypoints are being extracted. Extraction of keypoint - descriptors can be costly under some conditions. Users can restrict the - number of features detected by using the MAXPOINTS parameter specify the - maximum numnber of points to save. The values in brackets in lines 27 - and 28 will show the total amount of features detected if MAXPOINTS - are used. + The default parameters for FASTGEOM "grid" and "radial" algorithms + are used if FASTGEOM=true when findfeatures is run on a set of + images. The default values for FASTGEOM are described in the + table above and available in + $ISISROOT/appdata/templates/findfeatures/findfeatures_fastgeom_defaults.pvl. + This file can be copied and edited as needed for project wide application + of FASTGEOM parameters. This file is intended to be provided in the + findfeatures PARAMETERS program option. It can coexist along with + Feature Matching PVL parameters. Note this combination of parameters + neatly centralizes all algorithms and their parameters in one file + specifed at runtime to achieve desired behavior in all findfeatures + algorithms. Each set of parameters for a particular + algorithm can be placed in their own specific PVL Object or Group section + with arbitrary names in this file.
- Outlier detection begins at line 35. The Ratio test is performed first.
+ However, as is with the Feature Matching parameterization, the
+ findfeatures GLOBALS program option can also be used to specify
+ or alter each FASTGEOM algorithm in the same way it is used to
+ change Feature Matching behavior. Any FASTGEOM parameter in both
+ the Grid and Radial algorithms can be specifed according to the
+ ALGORITHM string specification described above. Perhaps the most
+ useful aspect of this program option is to directly specify the
+ FASTGEOM option to use at runtime. For example, the "grid" algorithm
+ can be selected at runtime as "GLOBALS=FastGeomAlgorithm:grid" thus
+ overriding the default "radial" algorithm. Note all algorithm keywords
+ specified in the Grid and Radial parameter tables can be provided in
+ the GLOBALS parameter separated by the @
symbol.
+
+ Note, as is with the Feature Matching algorithms, any "keyword:value" + pair specified in the GLOBALS option takes highest precidence and + overrides values specifed by other means, such as contained in the + PVL file provided in PARAMETERS or algorithm defaults. +
++ An additional feature of findfeatures is a detailed debugging + report of processing behavior in real time for all matching and + outlier detection algorithms. The data produced by this option is + very useful to identify the exact processing step where some matching + operations may result in failed matching operations. In turn, this + will allow users to alter parameters to address these issues that + can lead to better matches that would otherwise not be achieved. +
++ To invoke this option, users set DEBUG=TRUE and provide an optional + output file (DEBUGLOG=filename) where the debug data is written. If + no file is specified, output defaults to the terminal device. Below is + an example (see the example section for details) of a debug session + with line numbers added for reference of the description that + follows. The findfeatures command used to generate this example is: +
++findfeatures algorithm='fastx@threshold:25@type:2/brief/parameters@maxpoints:500' \ + match=EW0211981114G.cub \ + from=EW0242463603G.cub \ + fastgeom=true \ + geomtype=camera \ + geomsource=both \ + fastgeompoints=25 \ + epitolerance=3.0 \ + ratio=0.99 \ + hmgtolerance=3.0 \ + globals='FastGeomDumpMapping:true' \ + networkid="EW0211981114G_EW0242463603G" \ + pointid='EW211981116G_????' \ + onet=EW0211981114G.net \ + tolist=EW0211981114G_cubes.lis \ + tonogeom=EW0211981114G_nogeom.lis \ + tonotmatched=EW0211981114G_notmatched.lis \ + description='Create image-image control network' \ + debug=true \ + debuglog=EW0211981114G.debug.log ++
+ Note the file TONOGEOM is not created since there were no failures + in FASTGEOM processing. The TONOTMATCHED file is also not created + because all files in FROM/FROMLIST were successfully included in + the output control network. +
++ 1: --------------------------------------------------- + 2: Program: findfeatures + 3: Version 1.2 + 4: Revision: 2023-06-09 + 5: RunTime: 2023-06-16T15:27:19 + 6: OpenCV_Version: 4.5.5 + 7: + 8: System Environment... + 9: Number available CPUs: 8 + 10: Number default threads: 8 + 11: Total threads: 8 + 12: + 13: Image load started at 2023-06-16T15:27:19 + 14: + 15: ++++ Running FastGeom ++++ + 16: *** QueryImage: EW0211981114G.cub + 17: *** TrainImage: EW0242463603G.cub + 18: FastGeomAlgorithm: radial + 19: FastGeomPoints: 25 + 20: FastGeomTolerance: 3 + 21: FastGeomQuerySampleTolerance: 0 + 22: FastGeomQueryLineTolerance: 0 + 23: FastGeomTrainSampleTolerance: 0 + 24: FastGeomTrainLineTolerance: 0 + 25: + 26: --> Using Radial Algorithm train-to-query mapping <-- + 27: FastGeomMaximumRadius: 724.077 + 28: FastGeomRadialSegmentLength: 25 + 29: FastGeomRadialPointCount: 5 + 30: FastGeomRadialPointFactor: 1 + 31: FastGeomRadialSegments: 29 + 32: + 33: ==> Radial Point Mapping complete <== + 34: TotalPoints: 2031 + 35: ImagePoints: 1333 + 36: MappedPoints: 1333 + 37: InTrainMapFOV: 636 + 38: + 39: --> Dumping radial points <--- + 40: PointDumpFile: EW0211981114G_EW0242463603G.radial.fastgeom.csv + 41: TotalPoints: 1333 + 42: + 43: ==> Geometric Correspondence Mapping complete <== + 44: TotalPoints: 636 + 45: + 46: --> Running Homography Image Transform <--- + 47: IntialPoints: 636 + 48: Tolerance: 3 + 49: TotalLmedsInliers: 563 + 50: PercentPassing: 88.522 + 51: + 52: MatrixTransform: + 53: 0.645981,-0.0158572,113.771 + 54: -0.0350108,0.628872,337.353 + 55: -8.52086e-05,2.53351e-06,1 + 56: + 57: Image load complete at 2023-06-16T15:27:19 + 58: + 59: Total Algorithms to Run: 1 + 60: + 61: @@ matcher-pair started on 2023-06-16T15:27:19 + 62: + 63: +++++++++++++++++++++++++++++ + 64: Entered RobustMatcher::match(MatchImage &query, MatchImage &trainer)... + 65: Specification: fastx@threshold:25@type:2/brief/parameters@maxpoints:500/BFMatcher@NormType:NORM_HAMMING@CrossCheck:false + 66: ** Query Image: EW0211981114G.cub + 67: FullSize: (1024, 1024) + 68: Rendered: (1024, 1024) + 69: ** Train Image: EW0242463603G.cub + 70: FullSize: (1024, 1024) + 71: Rendered: (1024, 1024) + 72: --> Feature detection... + 73: Keypoints restricted by user to 500 points... + 74: Total Query keypoints: 512 [14121] + 75: Total Trainer keypoints: 518 [9511] + 76: Processing Time: 0.005 + 77: Processing Keypoints/Sec: 4.7264e+06 + 78: --> Extracting descriptors... + 79: Processing Time(s): 0.005 + 80: Processing Descriptors/Sec: 4.7264e+06 + 81: + 82: *Removing outliers from image pairs + 83: Entered RobustMatcher::removeOutliers(Mat &query, vector<Mat> &trainer)... + 84: --> Matching 2 nearest neighbors for ratio tests.. + 85: Query, Train Descriptors: 452, 502 + 86: Computing query->train Matches... + 87: Total Matches Found: 452 + 88: Processing Time: 0.001 + 89: Matches/second: 452000 + 90: Computing train->query Matches... + 91: Total Matches Found: 502 + 92: Processing Time: 0.001 <seconds> + 93: Matches/second: 502000 + 94: -Ratio test on query->train matches... + 95: Entered RobustMatcher::ratioTest(matches[2]) for 2 NearestNeighbors (NN)... + 96: RobustMatcher::Ratio: 0.99 + 97: Total Input Matches Tested: 452 + 98: Total Passing Ratio Tests: 421 + 99: Total Matches Removed: 31 +100: Total Failing NN Test: 31 +101: Processing Time: 0 +102: -Ratio test on train->query matches... +103: Entered RobustMatcher::ratioTest(matches[2]) for 2 NearestNeighbors (NN)... +104: RobustMatcher::Ratio: 0.99 +105: Total Input Matches Tested: 502 +106: Total Passing Ratio Tests: 469 +107: Total Matches Removed: 33 +108: Total Failing NN Test: 33 +109: Processing Time: 0 +110: Entered RobustMatcher::symmetryTest(matches1,matches2,symMatches)... +111: -Running Symmetric Match tests... +112: Total Input Matches1x2 Tested: 421 x 469 +113: Total Passing Symmetric Test: 194 +114: Processing Time: 0 +115: Entered RobustMatcher::computeHomography(keypoints1/2, matches...)... +116: -Running RANSAC Constraints/Homography Matrix... +117: RobustMatcher::HmgTolerance: 3 +118: Number Initial Matches: 194 +119: Total 1st Inliers Remaining: 149 +120: Total 2nd Inliers Remaining: 149 +121: Processing Time: 0 +122: Entered EpiPolar RobustMatcher::ransacTest(matches, keypoints1/2...)... +123: -Running EpiPolar Constraints/Fundamental Matrix... +124: RobustMatcher::EpiTolerance: 3 +125: RobustMatcher::EpiConfidence: 0.99 +126: Number Initial Matches: 149 +127: Inliers on 1st Epipolar: 149 +128: Inliers on 2nd Epipolar: 146 +129: Total Passing Epipolar: 146 +130: Processing Time: 0.005 +131: Entered RobustMatcher::computeHomography(keypoints1/2, matches...)... +132: -Running RANSAC Constraints/Homography Matrix... +133: RobustMatcher::HmgTolerance: 3 +134: Number Initial Matches: 146 +135: Total 1st Inliers Remaining: 145 +136: Total 2nd Inliers Remaining: 145 +137: Processing Time: 0.001 +138: %% match-pair complete in 0.019 seconds! +139: +140: Entering MatchMaker::network(cnet, solution, pointmaker)... +141: Images Matched: 1 +142: ControlPoints created: 145 +143: ControlMeasures created: 290 +144: InvalidIgnoredPoints: 0 +145: InvalidIgnoredMeasures: 0 +146: PreserveIgnoredControl No +147: +148: -- Valid Point/Measure Statistics -- +149: ValidPoints 145 +150: MinimumMeasures: 2 +151: MaximumMeasures: 2 +152: AverageMeasures: 2 +153: StdDevMeasures: 0 +154: TotalMeasures: 290 +155: +156: Session complete in 00:00:00.277 of elapsed time ++
+ In the above example, lines 2-11 provide general information about the + program and compute environment. If MAXTHREADS were set to a value less + than 8, the number of total threads (line 11) would reflect this number. + Lines 13 indicates the time when image loading was initiated. +
++ Lines 15-55 + reports the results of FASTGEOM processing for all input images. In this + case, there is only one image processed. Lines 16-55 would repeat for + every image pair that is processed by the FASTGEOM algorithm. Lines 18-24 + indicate the values determined the common algorithm parameters as shown in + the FASTGEOM Common Parameters table. + Lines 26-31 indicate the parameters determined/used for the radial mapping + algorithm (the default) as described in the + FASTGEOM Radial Parameters table. + Lines 33-37 report the mapping results between the query and train images. + The TotalPoints are larger than the ImagePoints due to the nature of the + radial algorithm which includes the points outside the boundaries of the + FOV of the query image in the outer rings of the radial pattern generated. + Lines 39-41 indicate the dump file for the mapped points. It exists only + because we added "globals=FastGeomDumpMapping:true" to the command line. + This file is generated from the base names of the input files. Line 44 + indicates the number of valid points in both images used to construct + the homography transformation matrix applied by a perspective warp + algorithm on the train image. Lines 46-50 report the results of the + generation of the homography matrix. And finally, lines 52-55 show the + actual homography matrix produced for this image pair. After all images + are processed by the FASTGEOM algorithm, line 57 reports the processing + time the algorithm completed. +
++ Line 61 specifies the precise time the matcher algorithm was invoked. + Line 64-71 shows the algorithm string specification, names of query + (MATCH) and train (FROM/FROLIST) images and the full and rendered sizes + of images. Lines 74 and 75 show the total number of keypoints or + features that were returned [detected] by the FASTX detector for both + the query (512 [14121]) and train (518 [9511]) images. Lines 78-80 + indicate the descriptors of all the feature keypoints are being + extracted. Extraction of keypoint descriptors can be costly under some + conditions. Users can restrict the number of features detected by using + the MAXPOINTS parameter, which was provided in the parameters of the + ALGORITHM specification for this run. The values in brackets in + lines 74 and 75 will show (and differ from) the total amount of + features detected if MAXPOINTS is provided. +
++ Outlier detection begins at line 82. The Ratio test is performed first. Here the matcher algorithm is invoked for each match pair, regardless - of the number of train (FROMLIST) images provided. For each keypoint in + of the number of train (FROMLIST) images provided. For each keypoint in the query image, the two nearest matches in the train image are - computed and the results are reported in lines 39-42. Then the - bi-directional matches are computed in lines 43-46. A bi-directional - ratio test is computed for the query->train matches in lines 47-54 and - then train->query in lines 55-62. You can see here that a significant + computed and the results are reported in lines 86-89. Then the + bi-directional matches are computed in lines 90-93. A bi-directional + ratio test is computed for the query->train matches in lines 94-101 and + then train->query in lines 102-109. You can see here that a significant number of matches are removed in this step. Users can adjust this behavior, retaining more points by setting the RATIO parameter closer to 1.0. The symmetry test, ensuring matches from query->train have the same - match as train->query, is reported in lines 63-67. In lines 68-74, the - homography matrix is computed and outliers are removed where the - tolerance exceeds HMGTOLERANCE. Lines 75-83 shows the results of the + match as train->query, is reported in lines 110-114. In lines 115-121, + the homography matrix is computed and outliers are removed where the + tolerance exceeds HMGTOLERANCE. Lines 122-130 shows the results of the epipolar fundamental matrix computation and outlier detection. Matching - is completed in lines 84-90 which report the final spatial homography + is completed in lines 131-137 which report the final spatial homography computations to produce the final transformation matrix between the - query and train images. Line 89 shows the final number of control - measures computed between the image pairs. Lines 35-90 are repeated for - each query/train image pair (with perhaps slight formatting - differences). Line 91 shows the total processing time for the matching - process. + query and train images. Line 136 shows the final number of control + measures computed between the image pairs. Lines 82-137 are repeated + for each query/train image pair (with perhaps slight formatting + differences). Line 138 shows the total processing time for the + matching process. +
++ Lines 140-146 report the generation of the control network. This process + connects all the same features in the each of the images (control measures) + into individual sets of control points. Users can also choose to preserve + all ignored control points by adding "PreserveIgnoredControl:true" in + the GLOBALS parameter. The value used specified is reported on line 146. + If true, this will result in some control points being marked as ignored + in the output control point. These kinds of points will typically be + created when GEOMSOURCE=both and all control measures within a control + point fails valid geometry tests when the output network is created.
- findfeatures provides users with many features and options to - create unique algorithms that are suitable for many of the diverse - image matching conditions that naturally occur during a spacecraft - mission. Some are more suited for certain conditions that others. But - how does one determine which algorithm combination performs the best - for an image pair? By computing standard performance metrics, one can - make a determination as to which algorithm performs best. -
- Using the ALGOSPECFILE parameter, users can specify one or more - algorithms to apply to a given image matching process. Each algorithm - specified, one per line in the input file, results in a the creation of - a unique robust matcher algorithm thatis applied to the input files in - succession. The performance of each algorithm is computed for each of - the matcher from a standard set of metrics described in a thesis titled - - Efficient matching of robust features for embedded SLAM. From the - metrics described in this paper, a single metric that measures the - abilities of the whole matching process is computed that are relevant to - all three FBM steps: detection, description and matching. This - metric is called Efficiency. The Efficiency metric is - computed from two other metrics called Repeatability and - Recall. + findfeatures provides users with many features and options to + create unique algorithms that are suitable for many of the diverse + image matching conditions that naturally occur during a spacecraft + mission. Some are more suited for certain conditions than others. But + how does one determine which algorithm combination performs the best + for an image pair? By computing standard performance metrics, one can + make a determination as to which algorithm performs best. +
++ Using the ALGOSPECFILE parameter, users can specify one or more + algorithms to apply to a given image matching process. Each algorithm + specified, one per line in the input file, results in the creation of + a unique robust matcher algorithm that is applied to the input files in + succession. The performance of each algorithm is computed for each of + the matcher from a standard set of metrics described in a thesis titled + + Efficient matching of robust features for embedded SLAM. From the + metrics described in this paper, a single metric that measures the + abilities of the whole matching process is computed that are relevant + to all three FBM steps: detection, description and matching. This + metric is called Efficiency. The Efficiency metric is + computed from two other metrics called Repeatability and + Recall.
- Repeatability represents the ability to detect the same point - in the scene under viewpoint and lighting changes and subject to - noise. The value of Repeatability is calculated as: + Repeatability represents the ability to detect the same point + in the scene under viewpoint and lighting changes and subject to + noise. The value of Repeatability is calculated as: +
+
- Repeatability = |correspondences| / |query keypoints|
+ Repeatability = |correspondences| / |query keypoints|
+
+
Here, correspondences are the total number of matches that were made after
all FBM processing including outlier detection. Repeatability is
only relevant to the feature detector, and nothing about feature
@@ -1078,24 +1704,32 @@
Repeatability, the better performance of feature detector.
- Recall represents the ability to find the correct - matches based on the description of detected features, The value of - Recall is calculated as: + Recall represents the ability to find the correct + matches based on the description of detected features, The value of + Recall is calculated as: +
+
- Recall = |correct matches| / |correspondences|
+ Recall = |correct matches| / |correspondences|
+
+
Because the detected features are already determined, Recall only
shows the performance of the feature descriptor and descriptor matcher.
The higher value of Recall, the better performance of descriptor
and matcher.
- Efficiency combines the Repeatability and
- Recall. It is defined as:
-
- Efficiency = Repeatability * Recall = |correct matches| / |query
- keypoints|
+ Efficiency combines the Repeatability and
+ Recall. It is defined as:
+
+ Efficiency = Repeatability * Recall = |correct matches| / |query
+ keypoints|
+
+
Efficiency measures the ability of the whole image matching
process, it is relevant to all three steps: detection, description and
matching. The higher value of Efficiency , the more accurate
@@ -1110,10 +1744,11 @@
MatchSolution group. Here is an example:
Group = MatchSolution - Matcher = surf@hessianThreshold:100/surf/BFMatcher@NormType:NORM_L2@CrossCheck:false - MatchedPairs = 1 - Efficiency = 0.040744395883265 - End_Group + Matcher = orb@nfeatures:3000/sift/BFMatcher@NormType:NORM_L2@CrossCheck:false + MatchedPairs = 1 + ValidPairs = 1 + Efficiency = 0.019733333333333 +End_Group@@ -1177,6 +1812,33 @@ Group = MatchSolution method to pass in clones of query and trainers. This avoids pointer issues which were mixing up data and causing failures. Fixes #3341. +
AS15-M-0582_16b.cub @@ -1225,7 +1887,7 @@ Group = MatchSolution AS15-M-0587_16b.cub
- Each file name in a FROMLIST file should be on a separate line. + Each file name in a FROMLIST file should be on a separate line.
+ This file will contain the list of (cube) files that could not + find valid geometry mapping during the FastGeom process. Note + that this process uses the current state of geometry for each + image, which is likely to be a prior SPICE. This could be the + cause of failures rather than no common ground coverage between + the MATCH and FROM/FROMLIST images. + +
++ NOTE this option supports the scenario where users cannot + verify the FROM/FROMLIST images have any common coverage with + the MATCH image. Large lists of images will have significantly + compute overhead, so use sparingly. +
++ These images are excluded from the matching process since a valid + fast geom transform cannot be computed and are written to a + file name as specfied in this parameter. +
++ This string can contain additional parameters that will + set or reset global parameters provded by other mechanisms. + This program option is primarily useful for making small + scale adjustments to algorithm parameters in a convenient + and efficient manner. +
++ For example, using this parameter is the most straightforward + way to select the FASTGEOM algorithm. To select the FASTGEOM + Grid algorithm and constrain the number of interations to 10, + use GLOBALS=FastGeomAlgorithm:Grid@FastGeomGridStopIteration:10". +
++ There is very little robust error detection or any confirmation + that the parameter names are valid. Any misspelled parameters + are not detected and ill-formed parameter strings may not + result in errors, but passthrough and mangle other parameter + construction. +
+The parameter is used as a tolerance in the computation of the distance between keypoints using the homography matrix - relationship between the MATCH image and each FROM/FROMLIST + relationship between the MATCH image and each FROM/FROMLIST image. This will throw points out that are (dist > TOLERANCE * min_dist), the smallest distance between points.
Object = Algorithms Object = Algorithm - CVVersion = 3.1.0 + CVVersion = 4.5.5 Name = AGAST Type = Feature2D Features = Detector @@ -2131,7 +2871,7 @@ Object = Algorithms End_Object Object = Algorithm - CVVersion = 3.1.0 + CVVersion = 4.5.5 Name = AKAZE Type = Feature2D Features = (Detector, Extractor) @@ -2153,7 +2893,7 @@ Object = Algorithms End_Object Object = Algorithm - CVVersion = 3.1.0 + CVVersion = 4.5.5 Name = Blob Type = Feature2D Features = Detector @@ -2188,7 +2928,7 @@ Object = Algorithms End_Object Object = Algorithm - CVVersion = 3.1.0 + CVVersion = 4.5.5 Name = BRISK Type = Feature2D Features = (Detector, Extractor) @@ -2206,7 +2946,7 @@ Object = Algorithms End_Object Object = Algorithm - CVVersion = 3.1.0 + CVVersion = 4.5.5 Name = FAST Type = Feature2D Features = Detector @@ -2225,7 +2965,7 @@ Object = Algorithms End_Object Object = Algorithm - CVVersion = 3.1.0 + CVVersion = 4.5.5 Name = GFTT Type = Feature2D Features = Detector @@ -2247,7 +2987,7 @@ Object = Algorithms End_Object Object = Algorithm - CVVersion = 3.1.0 + CVVersion = 4.5.5 Name = KAZE Type = Feature2D Features = (Detector, Extractor) @@ -2268,7 +3008,7 @@ Object = Algorithms End_Object Object = Algorithm - CVVersion = 3.1.0 + CVVersion = 4.5.5 Name = MSD Type = Feature2D Features = Detector @@ -2293,7 +3033,7 @@ Object = Algorithms End_Object Object = Algorithm - CVVersion = 3.1.0 + CVVersion = 4.5.5 Name = MSER Type = Feature2D Features = Detector @@ -2317,7 +3057,7 @@ Object = Algorithms End_Object Object = Algorithm - CVVersion = 3.1.0 + CVVersion = 4.5.5 Name = ORB Type = Feature2D Features = (Detector, Extractor) @@ -2341,7 +3081,7 @@ Object = Algorithms End_Object Object = Algorithm - CVVersion = 3.1.0 + CVVersion = 4.5.5 Name = SIFT Type = Feature2D Features = (Detector, Extractor) @@ -2362,7 +3102,7 @@ Object = Algorithms End_Object Object = Algorithm - CVVersion = 3.1.0 + CVVersion = 4.5.5 Name = Star Type = Feature2D Features = Detector @@ -2383,28 +3123,7 @@ Object = Algorithms End_Object Object = Algorithm - CVVersion = 3.1.0 - Name = SURF - Type = Feature2D - Features = (Detector, Extractor) - Description = "The OpenCV SURF Feature2D detector/extractor algorithm. - See the documentation at - http://docs.opencv.org/3.1.0/d5/df7/classcv_1_1xfeatures2d- - _1_1SURF.html" - CreatedUsing = surf - Aliases = (detector.surf, extractor.surf, feature2d.surf, surf) - - Group = Parameters - Extended = No - HessianThreshold = 100.0 - NOctaveLayers = 3 - NOctaves = 4 - Upright = No - End_Group - End_Object - - Object = Algorithm - CVVersion = 3.1.0 + CVVersion = 4.5.5 Name = Brief Type = Feature2D Features = Extractor @@ -2422,7 +3141,7 @@ Object = Algorithms End_Object Object = Algorithm - CVVersion = 3.1.0 + CVVersion = 4.5.5 Name = DAISY Type = Feature2D Features = Extractor @@ -2446,7 +3165,7 @@ Object = Algorithms End_Object Object = Algorithm - CVVersion = 3.1.0 + CVVersion = 4.5.5 Name = FREAK Type = Feature2D Features = Extractor @@ -2467,7 +3186,7 @@ Object = Algorithms End_Object Object = Algorithm - CVVersion = 3.1.0 + CVVersion = 4.5.5 Name = LATCH Type = Feature2D Features = Extractor @@ -2486,7 +3205,7 @@ Object = Algorithms End_Object Object = Algorithm - CVVersion = 3.1.0 + CVVersion = 4.5.5 Name = LUCID Type = Feature2D Features = Extractor @@ -2504,7 +3223,7 @@ Object = Algorithms End_Object Object = Algorithm - CVVersion = 3.1.0 + CVVersion = 4.5.5 Name = BFMatcher Type = DecriptorMatcher Features = Matcher @@ -2522,7 +3241,7 @@ Object = Algorithms End_Object Object = Algorithm - CVVersion = 3.1.0 + CVVersion = 4.5.5 Name = FlannBasedMatcher Type = DecriptorMatcher Features = Matcher @@ -2544,6 +3263,390 @@ End
+ This example is a variation of example 1 that runs the images in + a different way. This example uses the FASTGEOM option with the + default settings applied to the same images. There is an additional + image included that has no overlap with the MATCH image. When + FASTGEOM is used, all images that cannot be mapped using ISIS + geometry are excluded from the matching process. If a filename + is provided in TONOGEOM option, images that do not have any + common mapping points generated by the FASTGEOM pattern algorithm + are written/recorded in this file. Images that are included in + the matching process but do not have any control measures in common + with the MATCH image will be recorded in the TONOTMATCHED filename + if given. +
++ The following command was used to create the control network of + the same two images, excluding the non-overlapping image, as was + processed in example 1: +
++findfeatures algorithm='fastx@threshold:25@type:2/brief/parameters@maxpoints:500' \ + match=EW0211981114G.cub \ + fromlist=fromlist.lis \ + fastgeom=true \ + geomtype=camera \ + geomsource=both \ + fastgeompoints=25 \ + epitolerance=3.0 \ + ratio=0.99 \ + hmgtolerance=3.0 \ + globals='FastGeomDumpMapping:true@SaveRenderedImages:true' \ + networkid="EW0211981114G_EW0242463603G" \ + pointid='EW211981116G_????' \ + onet=EW0211981114G.net \ + tolist=EW0211981114G_cubes.lis \ + tonotmatched=EW0211981114G_notmatched.lis \ + tonogeom=EW0211981114G_nogeom.lis \ + description='Create image-image control network' \ + debug=true \ + debuglog=EW0211981114G.debug.log ++
+ In this case, since we are matching more than one file, all the + files to be matched must be listed, one per line, in the file + specified in the FROMFILE, fromlist.lis. Here is the contents + of this file: +
+EW0242463603G.cub +EW0218118239G.cub ++ +
+ There are two additional parameters added in GLOBALS parameter. The + parameter FastGeomDumpMapping:true will notify the radial + mapping algorithm to dump a CSV file containing the results of the + common mapping points generated from the radial pattern. Recall that + the radial algorithm produces only one pattern from which it + calculates the perspective warping matrix for each image + in the FROMLIST. This option generates a file containing the data + made up of the basenames of the MATCH and FROMLIST image pairs. In + this example, the file EW0211981114G_EW0242463603G.radial.fastgeom.csv + is created. Even files that cannot be mapped will have a file + generated but they will be empty. + This matrix is then applied to the FROMLIST image + that is intended to better correspond spatially with the MATCH + image. The SaveRenderedImages:true parameter tells + findfeatures to save the warped images to a PNG file. This + will allow users to evaluate how well the FASTGEOM algorithm + performed. This option creates PNG files generated from their + base file names, such as EW0211981114G_query.png from the + MATCH file and EW0242463603G_train.png from the FROMLIST + file name. The processing of FASTGEOM is logged in the DEBUGLOG + file if given and DEBUG=true is set. Here is the portion of the + log file EW0211981114G.debug.log that is created from the + FASTGEOM algorithm: +
++--------------------------------------------------- +Program: findfeatures +Version 1.2 +Revision: 2023-06-16 +RunTime: 2023-06-19T11:44:03 +OpenCV_Version: 4.5.5 + +System Environment... +Number available CPUs: 8 +Number default threads: 8 +Total threads: 8 + +Image load started at 2023-06-19T11:44:03 + +++++ Running FastGeom ++++ +*** QueryImage: EW0211981114G.cub +*** TrainImage: EW0242463603G.cub + FastGeomAlgorithm: radial + FastGeomPoints: 25 + FastGeomTolerance: 3 + FastGeomQuerySampleTolerance: 0 + FastGeomQueryLineTolerance: 0 + FastGeomTrainSampleTolerance: 0 + FastGeomTrainLineTolerance: 0 + +--> Using Radial Algorithm train-to-query mapping <-- + FastGeomMaximumRadius: 724.077 + FastGeomRadialSegmentLength: 25 + FastGeomRadialPointCount: 5 + FastGeomRadialPointFactor: 1 + FastGeomRadialSegments: 29 + +==> Radial Point Mapping complete <== + TotalPoints: 2031 + ImagePoints: 1333 + MappedPoints: 1333 + InTrainMapFOV: 636 + +--> Dumping radial points <--- + PointDumpFile: EW0211981114G_EW0242463603G.radial.fastgeom.csv + TotalPoints: 1333 + +==> Geometric Correspondence Mapping complete <== + TotalPoints: 636 + +--> Running Homography Image Transform <--- + IntialPoints: 636 + Tolerance: 3 + TotalLmedsInliers: 563 + PercentPassing: 88.522 + + MatrixTransform: + 0.645981,-0.0158572,113.771 + -0.0350108,0.628872,337.353 + -8.52086e-05,2.53351e-06,1 + + +++++ Running FastGeom ++++ +*** QueryImage: EW0211981114G.cub +*** TrainImage: EW0218118239G.cub + FastGeomAlgorithm: radial + FastGeomPoints: 25 + FastGeomTolerance: 3 + FastGeomQuerySampleTolerance: 0 + FastGeomQueryLineTolerance: 0 + FastGeomTrainSampleTolerance: 0 + FastGeomTrainLineTolerance: 0 + +--> Using Radial Algorithm train-to-query mapping <-- + FastGeomMaximumRadius: 724.077 + FastGeomRadialSegmentLength: 25 + FastGeomRadialPointCount: 5 + FastGeomRadialPointFactor: 1 + FastGeomRadialSegments: 29 + +==> Radial Point Mapping complete <== + TotalPoints: 2031 + ImagePoints: 1333 + MappedPoints: 0 + InTrainMapFOV: 0 + +--> Dumping radial points <--- + PointDumpFile: EW0211981114G_EW0218118239G.radial.fastgeom.csv + TotalPoints: 0 + +==> Geometric Correspondence Mapping complete <== + TotalPoints: 0 +>>>> ERROR - Failed to get FOV geometry mapping for EW0218118239G.cub to EW0211981114G.cub needing 25 but got 0 in train FOV. +Failed to load EW0218118239G.cub + +Image load complete at 2023-06-19T11:44:04 + +Total failed image loads/FastGeoms excluded: 1 +EW0218118239G.cub + +See also EW0211981114G_nogeom.lis + +Total Algorithms to Run: 1 + +@@ matcher-pair started on 2023-06-19T11:44:04 ++
+ Note that an error is shown for the file EW0218118239G.cub. + This is because no common points were found for this file and the + MATCH file, EW0211981114G. Using the "keyword:value" pairs + in the GLOBALS parameters, the results can be analyzed as shown in + the panel below. The plot in the lower left corner of the panel + shows the results of the FASTGEOM Radial parameter geometry mapping + of common/cooresponding points of the MATCH and FROM image. The + points in red are outside the FROM image FOV and do not contribute + to the computation of the homography matrix for the perspective + warp for spatial consistency with the MATCH image. The blue + points are the ones used in to produce the homography matrix. + The image in the lower right corner is the result of the + warp of the FROM image. +
++ The network produced from this example contains 145 control points + and with two measures each (290). This screen shot shows the + resulting network. The pointreg application should be run + on this network to refine the control measures to sub-pixel + accuracy. +
++ This example shows the results of a comprehensive processing sequence + that produces a controlled mosaic using findfeatures. The data + used for this mosaic is MESSENGER MDIS NAC and WAC EDR images of + Mercury taken from the MESSENGER MDIS PDS archive. These + EDRs are ingested into ISIS and standard processing is then + applied producing the regional controlled mosaic using + findfeatures. The EDR images used for this example are: +
++EN0108828436M.IMG +EN0108828483M.IMG +EN0108828488M.IMG +EN0217733143M.IMG +EN0217733334M.IMG +EN0218118182M.IMG +EW0215590428G.IMG +EW0218075871G.IMG +EW0218118239G.IMG ++
+ It is important to recognize the procedures applied here are effective + under limited conditions. Namely, all the images included here + have some common overlap with the carefully chosen MATCH image. + Adding additional images that do not overlap the MATCH image will + be excluded by findfeatures and requires additional steps + that utilize techniques outside the scope of this example. + It would involve repeatedly running findfeatures where every + image is used as the MATCH image and all other images are included in + the FROMLIST (with common ground coverage) and the resulting + image-based networks are combined into a single network. This + technique is also used for larger, global networks that frequently + have images with largely varying resolutions and observing + conditions. This technique has successfully been used to create + global networks for Mercury using MESSENGER MDIS images and + Bennu using OSIRIS-REx OCAMS images. +
++ The MESSENGER NAC and WAC images must be processed with the ISIS + application processing sequence of mdis2isis, spiceinit, + mdiscal, camstats and footprintinit. This will + prepare the images for findfeatures which will create an + image-based network. The findfeatures command used on these + nine images which performs image matching and creates the network is: +
++base="EW0218118239G" +findfeatures algorithm='fastx@threshold:25@type:2/brief/parameters@Maxpoints:7000' \ + match="${base}.cal.cub" \ + fromlist=fromlist.lis \ + fastgeom=true \ + geomtype=camera \ + geomsource=both \ + fastgeompoints=50 \ + epitolerance=7.0 \ + ratio=0.99 \ + hmgtolerance=7.0 \ + globals='FastGeomDumpMapping:true@SaveRenderedImages:true@FastGeomAlgorithm:grid' \ + networkid="${base}_Mosiac" \ + pointid="${base}_????" \ + onet="${base}.net" \ + tolist="${base}_cubes.lis" \ + tonotmatched="${base}_notmatched.lis" \ + tonogeom="${base}_nogeom.lis" \ + description='Create MESSENGER MDIS image-image control network' \ + debug=true \ + debuglog="${base}.debug.log" ++
+ There are several things to note. The maximum number of points to + retain from each image is limited in the detector (7000) as specified + in the "/parameter" section of the algorithm specification. The + fastx detector will very frequently produce a significant + number of keypoints. This may seem like a lot of keypoints per image + pair, but is likely a good choice for some images sets that contain + different pixel resolutions or largely varying observation conditions + like what is seen in this dataset. We are using the FASTGEOM Grid + algorithm (specified in the GLOBALS program option) because the + default Radial will have a difficult time meeting the minimum number + of FASTGEOMPOINTS points due to large variations in pixel + resolutions. The transformed files are retained so the FASTGEOM + performance can be evaluated. The HMGTOLERANCE and + EPITOLERANCE are both set to 7 pixels to account for + uncertainty in SPICE data and distortions in the translated images + due to the linear nature of the perspective warp transform caused + by topography differences (which should be accounted for in an + ensuing run of pointreg in the definition file by setting the + size of the SearchChip to be larger that twice the size of the + tolerances). We expect no files in the TONOGEOM + and TONOTMATCHED because no such problems exist in this + example. And you should have a look at the output DEBUGLOG + file for detailed performance and behavior information for + findfeatures that may indicate the need for adjustments of + the matching parameters. +
++ The MATCH image, EW0218118239G, was carefully chosen in this + dataset because it has common ground coverage/overlap with all the + other eight MDIS images. qmos is most helpful to determine + this image as a MATCH candidate as is shown in this screen + shot. Image EW0218118239G is the one outlined with the dashed square. + It is clear there are images with largely varying pixel resolutions. + Users will be able to select any image by changing the "base" + variable in prior to the execution of findfeatures. +
++ The control network created by findfeatures is an image-based + network. This type of network will contain no points outside the FOV + of the MATCH image. In most cases when building a larger network, + a single image-based network is insufficient to produce a large + connected network, so successive runs of findfeatures using + different MATCH files is required. This image-based network contains + 3940 control points. The best networks will have the deepest control + points (i.e., contains many measures that includes all images + matched). Typically this is not realistic so additional + options can be considered. For example, success in jigsaw is + greatly increased by the quality of the control points/measures. + The pointreg application is used to refine control measures in + the output network produced by findfeatures to sub-pixel + accuracy. This step is where this result can be achieved by + setting a high Tolerance in the Algorithm group of + the REGDEF file. For great control points, use + Tolerance = 0.9, which is what was used in this example. + The network produced by findfeatures initially resulted in + 4646 control points with 12,203 control measures with a maximum + of 7 control measures in a control point. However, the average + number of measures was 2.6, which indicates the majority of + control points contain 2-3 measures - not so great. However, looking + carefully at the qmos data, there is not much potential for + deeper control points because of limited overlapping images. To + increase this number you can further increase HMGTOLERANCE + and EPITOLERANCE, or choose a different set of matching + algorithms. After pointreg, 3940 control points with 8338 + control measures remain, an average of 2.116 measures/point. This + is pretty good considering how high the Tolerance was set. The other + thing to consider is the distribution of the points. The screen shot + below shows the point distribution and density for each image. Given + the minimum coverage of many of the images, this will work - or at + least be worth producing a mosaic for evaluation. +
++ Producing a mosaic is the best way to assess the quality of the + network. It is recommended to create both an uncontrolled and + controlled mosaic to visually inspect/compare with qview or + an alternative image viewer. The screen shot below shows a portion + of the two mosaics. One important thing to note is this example does + not control to a ground truth source. There are at least several ways + to control your mosaic to ground truth but that is outside the + scope of this example (and they are typically a great deal of work!). + With that said, the spacecraft position serves as our "ground truth" + but you may also see the MATCH image will have the least adjustment + because it is highly biased since it has the most control measures. +
+