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

AVS.RecognizeOrganicObject Method

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

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

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

Parameters

Name Type Range Default Description
inOrganicModelAvlNet.OrganicModelTrained model.
inImageAvlNet.ImageImage, which will be classified.
inRegionAvlNet.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