mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-05 00:05:32 -04:00
5 lines
5.8 KiB
HTML
5 lines
5.8 KiB
HTML
<html><head>
|
|
<style type="text/css">
|
|
dl { border: 3px double #ccc; padding: 0.5em; } dt { float: left; clear: left; text-align: left; font-weight: bold; color: green; } dt:after { content: ":"; } dd { margin: 0 0 0 220px; padding: 0 0 0.5em 0; }
|
|
</style>
|
|
</head><body><h1>HomologousPointsExtraction</h1><h2>Brief Description</h2>Compute homologous points between images using keypoints<h2>Tags</h2>Feature Extraction<h2>Long Description</h2>This application allows computing homologous points between images using keypoints. SIFT or SURF keypoints can be used and the band on which keypoints are computed can be set independantly for both images. The application offers two modes : the first is the full mode where keypoints are extracted from the full extent of both images (please note that in this mode large image file are not supported). The second mode, called geobins, allows one to set-up spatial binning to get fewer points spread across the entire image. In this mode, the corresponding spatial bin in the second image is estimated using geographical transform or sensor modelling, and is padded according to the user defined precision. Last, in both modes the application can filter matches whose colocalisation in first image exceed this precision. The elevation parameters are to deal more precisely with sensor modelling in case of sensor geometry data. The outvector option allows creating a vector file with segments corresponding to the localisation error between the matches. It can be useful to assess the precision of a registration for instance. The vector file is always reprojected to EPSG:4326 to allow display in a GIS. This is done via reprojection or by applying the image sensor models.<h2>Parameters</h2><ul><li><b>[param] -in1</b> <string> First input image. Mandatory: True. Default Value: ""</li><li><b>[param] -band1</b> <int32> Index of the band from input image 1 to use for keypoints extraction. Mandatory: True. Default Value: "1"</li><li><b>[param] -in2</b> <string> Second input image. Mandatory: True. Default Value: ""</li><li><b>[param] -band2</b> <int32> Index of the band from input image 1 to use for keypoints extraction. Mandatory: True. Default Value: "1"</li><li><b>[param] -threshold</b> <float> The distance threshold for matching.. Mandatory: True. Default Value: "0.6"</li><li><b>[param] -backmatching</b> <boolean> If set to true, matches should be consistent in both ways.. Mandatory: False. Default Value: "True"</li><li><b>[param] -precision</b> <float> Estimated precision of the colocalisation function in pixels. Mandatory: True. Default Value: "0"</li><li><b>[param] -mfilter</b> <boolean> If enabled, this option allows one to filter matches according to colocalisation from sensor or geographical information, using the given tolerancy expressed in pixels. Mandatory: False. Default Value: "True"</li><li><b>[param] -2wgs84</b> <boolean> . Mandatory: False. Default Value: "True"</li><li><b>[param] -elev</b> <string> This group of parameters allows managing elevation values. Supported formats are SRTM, DTED or any geotiff. DownloadSRTMTiles application could be a useful tool to list/download tiles related to a product.. Mandatory: True. Default Value: "0"</li><li><b>[param] -out</b> <string> File containing the list of tie points. Mandatory: True. Default Value: ""</li><li><b>[param] -outvector</b> <string> File containing segments representing matches . Mandatory: False. Default Value: ""</li><li><b>[param] -inxml</b> <string> Load otb application from xml file. Mandatory: False. Default Value: ""</li><li><b>[param] -outxml</b> <string> Save otb application to xml file. Mandatory: False. Default Value: ""</li><b>[choice] -algorithm</b> Choice of the detection algorithm to use surf,sift. Mandatory: True. Default Value: "surf"<ul><li><b>[group] -surf</b></li><ul></ul><li><b>[group] -sift</b></li><ul></ul></ul><b>[choice] -mode</b> full,geobins. Mandatory: True. Default Value: "full"<ul><li><b>[group] -full</b></li><ul></ul><li><b>[group] -geobins</b></li><ul><li><b>[param] -mode.geobins.binsize</b> <int32> Radius of the spatial bin in pixels. Mandatory: True. Default Value: "256"</li><li><b>[param] -mode.geobins.binsizey</b> <int32> Radius of the spatial bin in pixels (y direction). If not set, the mode.geobins.binsize value is used.. Mandatory: False. Default Value: "0"</li><li><b>[param] -mode.geobins.binstep</b> <int32> Steps between bins in pixels. Mandatory: True. Default Value: "256"</li><li><b>[param] -mode.geobins.binstepy</b> <int32> Steps between bins in pixels (y direction). If not set, the mode.geobins.binstep value is used.. Mandatory: False. Default Value: "0"</li><li><b>[param] -mode.geobins.margin</b> <int32> Margin from image border to start/end bins (in pixels). Mandatory: True. Default Value: "10"</li></ul></ul></ul><h2>Limitations</h2>Full mode does not handle large images.<h2>Authors</h2>OTB-Team<h2>See Also</h2>RefineSensorModel<h2>Example of use</h2><ul><li><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">in1: sensor_stereo_left.tif</p></li><li><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">in2: sensor_stereo_right.tif</p></li><li><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">mode: full</p></li><li><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">out: homologous.txt</p></li></ul></body></html> |