MyCaffe
1.12.2.41
Deep learning software for Windows C# programmers.
|
Specifies a collection of BlobProtos. More...
Public Member Functions | |
BlobProtoCollection () | |
The BlobProtoCollection Constructor. More... | |
void | Add (BlobProto bp) |
Add a new BlobProto to the collection. More... | |
void | RemoveAt (int nIdx) |
Remove a BlobProto at a given index. More... | |
bool | Remove (BlobProto bp) |
Remove a given BlobProto if it exists in the collection. More... | |
void | Clear () |
Remove all elements from the collection. More... | |
IEnumerator< BlobProto > | GetEnumerator () |
Retrive the enumerator for the collection. More... | |
Properties | |
int | Count [get] |
Specifies the number of items in the collection. More... | |
BlobProto | this[int nIdx] [getset] |
Get/set a given element in the collection. More... | |
Specifies a collection of BlobProtos.
Definition at line 11 of file BlobProtoCollection.cs.
MyCaffe.param.BlobProtoCollection.BlobProtoCollection | ( | ) |
The BlobProtoCollection Constructor.
Definition at line 18 of file BlobProtoCollection.cs.
void MyCaffe.param.BlobProtoCollection.Add | ( | BlobProto | bp | ) |
Add a new BlobProto to the collection.
bp | Specifies the BlobProto. |
Definition at line 45 of file BlobProtoCollection.cs.
void MyCaffe.param.BlobProtoCollection.Clear | ( | ) |
Remove all elements from the collection.
Definition at line 72 of file BlobProtoCollection.cs.
IEnumerator< BlobProto > MyCaffe.param.BlobProtoCollection.GetEnumerator | ( | ) |
Retrive the enumerator for the collection.
Definition at line 81 of file BlobProtoCollection.cs.
bool MyCaffe.param.BlobProtoCollection.Remove | ( | BlobProto | bp | ) |
Remove a given BlobProto if it exists in the collection.
bp | Specifies the BlobProto to remove. |
Definition at line 64 of file BlobProtoCollection.cs.
void MyCaffe.param.BlobProtoCollection.RemoveAt | ( | int | nIdx | ) |
Remove a BlobProto at a given index.
nIdx | Specifies the index. |
Definition at line 54 of file BlobProtoCollection.cs.
|
get |
Specifies the number of items in the collection.
Definition at line 25 of file BlobProtoCollection.cs.
|
getset |
Get/set a given element in the collection.
nIdx | Specifies the index of the element. |
Definition at line 35 of file BlobProtoCollection.cs.