MyCaffe  1.12.2.41
Deep learning software for Windows C# programmers.
MyCaffe.param.ssd.NonMaximumSuppressionParameter Class Reference

Specifies the parameters for the NonMaximumSuppressionParameter used with SSD. More...

Inheritance diagram for MyCaffe.param.ssd.NonMaximumSuppressionParameter:
MyCaffe.param.OptionalParameter

Public Member Functions

 NonMaximumSuppressionParameter (bool bActive)
 The constructor. More...
 
override void Copy (OptionalParameter src)
 Copy the object. More...
 
NonMaximumSuppressionParameter Clone ()
 Return a clone of the object. More...
 
override RawProto ToProto (string strName)
 Convert this object to a raw proto. More...
 
- Public Member Functions inherited from MyCaffe.param.OptionalParameter
 OptionalParameter (bool bActive=false)
 The constructor. More...
 

Static Public Member Functions

static new NonMaximumSuppressionParameter FromProto (RawProto rp)
 Parses the parameter from a RawProto. More...
 
- Static Public Member Functions inherited from MyCaffe.param.OptionalParameter
static OptionalParameter FromProto (RawProto rp)
 Parses the parameter from a RawProto. More...
 

Properties

float nms_threshold [getset]
 Get/set the threshold to be used in nms. More...
 
int? top_k [getset]
 Get/set the maximum number of results kept. More...
 
float eta [getset]
 Get/set the parameter for adaptive nms. More...
 
- Properties inherited from MyCaffe.param.OptionalParameter
bool Active [getset]
 When active, the parameter is used, otherwise it is ignored. More...
 

Detailed Description

Specifies the parameters for the NonMaximumSuppressionParameter used with SSD.

See also
SSD: Single Shot MultiBox Detector by Wei Liu, Dragomir Anguelov, Dumitru Erhan, Christian Szegedy, Scott Reed, Cheng-Yang Fu, Alexander C. Berg, 2016.
GitHub: SSD: Single Shot MultiBox Detector, by weiliu89/caffe, 2016

Definition at line 21 of file NonMaximumSuppressionParameter.cs.

Constructor & Destructor Documentation

◆ NonMaximumSuppressionParameter()

MyCaffe.param.ssd.NonMaximumSuppressionParameter.NonMaximumSuppressionParameter ( bool  bActive)

The constructor.

Parameters
bActiveSpecifies whether or not the parameter is active or not.

Definition at line 31 of file NonMaximumSuppressionParameter.cs.

Member Function Documentation

◆ Clone()

NonMaximumSuppressionParameter MyCaffe.param.ssd.NonMaximumSuppressionParameter.Clone ( )

Return a clone of the object.

Returns
A new copy of the object is returned.

Definition at line 86 of file NonMaximumSuppressionParameter.cs.

◆ Copy()

override void MyCaffe.param.ssd.NonMaximumSuppressionParameter.Copy ( OptionalParameter  src)
virtual

Copy the object.

Parameters
srcThe copy is placed in this parameter.

Reimplemented from MyCaffe.param.OptionalParameter.

Definition at line 69 of file NonMaximumSuppressionParameter.cs.

◆ FromProto()

static new NonMaximumSuppressionParameter MyCaffe.param.ssd.NonMaximumSuppressionParameter.FromProto ( RawProto  rp)
static

Parses the parameter from a RawProto.

Parameters
rpSpecifies the RawProto to parse.
Returns
A new instance of the parameter is returned.

Definition at line 119 of file NonMaximumSuppressionParameter.cs.

◆ ToProto()

override RawProto MyCaffe.param.ssd.NonMaximumSuppressionParameter.ToProto ( string  strName)
virtual

Convert this object to a raw proto.

Parameters
strNameSpecifies the name of the proto.
Returns
The new proto is returned.

Reimplemented from MyCaffe.param.OptionalParameter.

Definition at line 98 of file NonMaximumSuppressionParameter.cs.

Property Documentation

◆ eta

float MyCaffe.param.ssd.NonMaximumSuppressionParameter.eta
getset

Get/set the parameter for adaptive nms.

Definition at line 59 of file NonMaximumSuppressionParameter.cs.

◆ nms_threshold

float MyCaffe.param.ssd.NonMaximumSuppressionParameter.nms_threshold
getset

Get/set the threshold to be used in nms.

Definition at line 39 of file NonMaximumSuppressionParameter.cs.

◆ top_k

int? MyCaffe.param.ssd.NonMaximumSuppressionParameter.top_k
getset

Get/set the maximum number of results kept.

Definition at line 49 of file NonMaximumSuppressionParameter.cs.


The documentation for this class was generated from the following file: