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

FIS.RecognizeOrganicObject Method

Analyzes provided image within given ROI, and classifies selected object with beforehand trained OrganicModel.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

public static void RecognizeOrganicObject
(
	FilNet.OrganicModel inOrganicModel,
	FilNet.Image inImage,
	FilNet.Region inRegion,
	out int outClass,
	out float outScore,
	IList<float> outScores
)

Parameters

Name Type Range Default Description
inOrganicModelFilNet.OrganicModelTrained model.
inImageFilNet.ImageImage, which will be classified.
inRegionFilNet.RegionRegion, which selects organic object in the image provided.
outClassintClass number, to which image was assigned.
outScorefloatScore of the decision - the greater the better.
outScoresSystem.Collections.Generic.IList<float>Scores for all classes known by classifier.

See also