You are here: Start » DLInvoke.DL_LocateObjects

DLInvoke.DL_LocateObjects

Performs locating objects using a pretrained deep learning model.

Namespace:Avl
Assembly:AvlNet.DL.Cpu.dll

Syntax

C++
C#
 
public static void DL_LocateObjects
(
	Avl.Image inImage,
	Optional<Avl.Region> inRoi,
	Avl.LocateObjectsModelId inModelId,
	float inMinDetectionScore,
	float inMaxOverlap,
	List<Avl.ClassifiedRectangle> outObjects
)

Parameters

Name Type Range Default Description
inImageAvl.ImageInput image.
inRoiAtl.Optional<Avl.Region>Limits the area where objects may be located. Default value: atl::NIL.
inModelIdAvl.LocateObjectsModelIdIdentifier of a LocateObjects model.
inMinDetectionScorefloatSets a minimum required score for an object to be returned. Default value: 0.5f.
inMaxOverlapfloatMaximum overlap factor of two object allowed. Default value: 0.2f.
outObjectsSystem.Collections.Generic.List<Avl.ClassifiedRectangle>

See also