Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify class likelihood. #78

Merged
merged 2 commits into from
Feb 8, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion doc/Analytics.xml
Original file line number Diff line number Diff line change
Expand Up @@ -888,7 +888,7 @@
</section>
<section xml:id="_Ref485906999">
<title>Object Class descriptor</title>
<para>A Class Descriptor is defined as an optional element of the appearance node of an abject node. The class descriptor is defined by a list of object classes together with a likelihood that the corresponding object belongs to this class. The sum of the likelihoods shall not exceed 1.</para>
<para>A Class Descriptor is defined as an optional element of the appearance node of an object node. The class descriptor is defined by a list of object classes together with a likelihood that the corresponding object belongs to this class. The range of likelihood is [0..1].</para>
<para>The following example shows an object metadata sample that contains object class information about a detected object:</para>
<programlisting><![CDATA[<tt:Frame UtcTime="2010-11-10T12:24:57.721">
<tt:Transformation>
Expand All @@ -904,6 +904,12 @@
<tt:Class>
<tt:Type Likelihood=”0.8”>Vehicle</tt:Type>
</tt:Class>
<tt:Class>
<tt:Type Likelihood=”0.75”>Car</tt:Type>
</tt:Class>
<tt:Class>
<tt:Type Likelihood=”0.3”>Truck</tt:Type>
</tt:Class>
</tt:Appearance>
</tt:Object>
</tt:Frame>
Expand Down