MyCaffe  1.12.2.41
Deep learning software for Windows C# programmers.
ValueDescriptor.cs
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
8{
12 [Serializable]
14 {
15 double m_dfValue;
16
24 public ValueDescriptor(int nID, string strName, double dfVal, string strOwner)
25 : base(nID, strName, strOwner)
26 {
27 m_dfValue = dfVal;
28 }
29
35 : this(v.ID, v.Name, v.Value, v.Owner)
36 {
37 }
38
42 public double Value
43 {
44 get { return m_dfValue; }
45 }
46 }
47}
The BaseDescriptor is the base class for all other descriptors, where descriptors are used to describ...
string Owner
Get/set the owner of the item.
int ID
Get/set the database ID of the item.
string Name
Get/set the name of the item.
The ValueDescriptor class contains the description of a single value.
ValueDescriptor(ValueDescriptor v)
The ValueDescriptor constructor.
ValueDescriptor(int nID, string strName, double dfVal, string strOwner)
The ValueDescriptor constructor.
double Value
Returns the value of the item.
The descriptors namespace contains all descriptor used to describe various items stored within the da...