Show / Hide Table of Contents

Class MatchesInfo

Structure containing information about matches between two images.

It's assumed that there is a transformation between those images. Transformation may be homography or affine transformation based on selected matcher.

Inheritance
System.Object
MatchesInfo
Namespace: OpenCvSharp.Detail
Assembly: OpenCvSharp.dll
Syntax
public sealed class MatchesInfo : IDisposable

Constructors

| Improve this Doc View Source

MatchesInfo(MatchesInfo)

Copy constructor

Declaration
public MatchesInfo(MatchesInfo other)
Parameters
Type Name Description
MatchesInfo other
| Improve this Doc View Source

MatchesInfo(Int32, Int32, IReadOnlyList<DMatch>, IReadOnlyList<Byte>, Int32, Mat, Double)

Constructor

Declaration
public MatchesInfo(int srcImgIdx, int dstImgIdx, IReadOnlyList<DMatch> matches, IReadOnlyList<byte> inliersMask, int numInliers, Mat h, double confidence)
Parameters
Type Name Description
System.Int32 srcImgIdx
System.Int32 dstImgIdx
IReadOnlyList<OpenCvSharp.DMatch> matches
IReadOnlyList<System.Byte> inliersMask
System.Int32 numInliers
Mat h
System.Double confidence

Properties

| Improve this Doc View Source

Confidence

Confidence two images are from the same panorama

Declaration
public double Confidence { get; }
Property Value
Type Description
System.Double
| Improve this Doc View Source

DstImgIdx

Images indices (optional)

Declaration
public int DstImgIdx { get; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

H

Estimated transformation

Declaration
public Mat H { get; }
Property Value
Type Description
Mat
| Improve this Doc View Source

InliersMask

Geometrically consistent matches mask

Declaration
public IReadOnlyList<byte> InliersMask { get; }
Property Value
Type Description
IReadOnlyList<System.Byte>
| Improve this Doc View Source

Matches

Declaration
public IReadOnlyList<DMatch> Matches { get; }
Property Value
Type Description
IReadOnlyList<OpenCvSharp.DMatch>
| Improve this Doc View Source

NumInliers

Number of geometrically consistent matches

Declaration
public int NumInliers { get; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

SrcImgIdx

Images indices (optional)

Declaration
public int SrcImgIdx { get; }
Property Value
Type Description
System.Int32

Methods

| Improve this Doc View Source

Dispose()

Dispose H

Declaration
public void Dispose()
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX