You are here: Start » DLInvoke.DL_LocateObjects

DLInvoke.DL_LocateObjects

Performs locating objects using a pretrained deep learning model.

Namespace:Fil
Assembly:FilNet.DL.Cpu.dll

Syntax

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

Parameters

Name Type Range Default Description
inImageFil.ImageInput image.
inRoiFtl.Optional<Fil.Region>Limits the area where objects may be located. Default value: ftl::NIL.
inModelIdFil.LocateObjectsModelIdIdentifier of a LocateObjects model.
inMinDetectionScorefloatSets a minimum required score for an object to be returned. Default value: 0.5f.
outObjectsSystem.Collections.Generic.List<Fil.ClassifiedRectangle>

See also