You are here: Start » AVL.NET » AVS.FindMatchingRegions_IoU Method

AVS.FindMatchingRegions_IoU Method

Finds corresponding regions in two arrays based on IoU value.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

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

Parameters

Name Type Range Default Description
inMasksSystem.Collections.Generic.IList<AvlNet.Region>Original masks.
inMasksClassesSystem.Collections.Generic.IList<int>
inPredictedSystem.Collections.Generic.IList<AvlNet.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<AvlNet.NullableRef<AvlNet.Region>>
outScoresSystem.Collections.Generic.IList<double?>Returns scores of accepted regions.

Function Overrides

See also