You are here: Start » FIL.NET » FIS.FindMatchingRegions_IoU Method

FIS.FindMatchingRegions_IoU Method

Finds corresponding regions in two arrays based on IoU value.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

public static void FindMatchingRegions_IoU
(
	IList<FilNet.Region> inMasks,
	IList<int> inMasksClasses,
	IList<FilNet.Region> inPredicted,
	IList<int> inPredictedClasses,
	double inThreshold,
	IList<int?> outMatchedIndexes,
	IList<NullableRef<FilNet.Region>> outMatchedRegions,
	IList<double?> outScores
)

Parameters

Name Type Range Default Description
inMasksSystem.Collections.Generic.IList<FilNet.Region>Original masks.
inMasksClassesSystem.Collections.Generic.IList<int>
inPredictedSystem.Collections.Generic.IList<FilNet.Region>Regions from the classifier.
inPredictedClassesSystem.Collections.Generic.IList<int>
inThresholddouble<0.0, 1.0>0.5DDefault value: 0.5D.
outMatchedIndexesSystem.Collections.Generic.IList<int?>
outMatchedRegionsSystem.Collections.Generic.IList<FilNet.NullableRef<FilNet.Region>>
outScoresSystem.Collections.Generic.IList<double?>Returns scores of accepted regions.

Function Overrides

See also