![]() |
MyCaffe
1.12.2.41
Deep learning software for Windows C# programmers.
|
The LabelBBox manages a bounding box used in SSD. More...
Public Member Functions | |
| LabelBBox () | |
| The constructor. More... | |
| List< KeyValuePair< int, List< NormalizedBBox > > > | ToList () |
| Returns the internal dictionary of items as a list. More... | |
| void | Add (int nLabel, NormalizedBBox bbox) |
| Add a new bbox to the label. More... | |
| bool | Contains (int nLabel) |
| Returns whether or not the label is contained in the label bounding boxe set. More... | |
| void | Clear () |
| Remove all items from the group. More... | |
Properties | |
| int | Count [get] |
| Returns the number of items. More... | |
| List< NormalizedBBox > | this[int nLabel] [getset] |
| Returns the list of NormalizedBBox items at the label specified. More... | |
The LabelBBox manages a bounding box used in SSD.
Definition at line 16 of file LabelBBox.cs.
| MyCaffe.basecode.LabelBBox.LabelBBox | ( | ) |
The constructor.
Definition at line 23 of file LabelBBox.cs.
| void MyCaffe.basecode.LabelBBox.Add | ( | int | nLabel, |
| NormalizedBBox | bbox | ||
| ) |
| void MyCaffe.basecode.LabelBBox.Clear | ( | ) |
Remove all items from the group.
Definition at line 90 of file LabelBBox.cs.
| bool MyCaffe.basecode.LabelBBox.Contains | ( | int | nLabel | ) |
Returns whether or not the label is contained in the label bounding boxe set.
| nLabel | Specifies the label. |
Definition at line 62 of file LabelBBox.cs.
| List< KeyValuePair< int, List< NormalizedBBox > > > MyCaffe.basecode.LabelBBox.ToList | ( | ) |
Returns the internal dictionary of items as a list.
Definition at line 31 of file LabelBBox.cs.
|
get |
Returns the number of items.
Definition at line 52 of file LabelBBox.cs.
|
getset |
Returns the list of NormalizedBBox items at the label specified.
| nLabel | Specifies the label. |
Definition at line 72 of file LabelBBox.cs.