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 | |
---|---|---|---|---|---|
![]() | inOrganicModel | FilNet.OrganicModel | Trained model. | ||
![]() | inImage | FilNet.Image | Image, which will be classified. | ||
![]() | inRegion | FilNet.Region | Region, which selects organic object in the image provided. | ||
![]() | outClass | int | Class number, to which image was assigned. | ||
![]() | outScore | float | Score of the decision - the greater the better. | ||
![]() | outScores | System.Collections.Generic.IList<float> | Scores for all classes known by classifier. |