CvBlobsTryGetValue Method |
http://www.emgu.com
Gets the blob associated with the specified label.
Namespace:
Emgu.CV.Cvb
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic bool TryGetValue(
uint label,
out CvBlob blob
)
Public Function TryGetValue (
label As UInteger,
<OutAttribute> ByRef blob As CvBlob
) As Boolean
public:
virtual bool TryGetValue(
unsigned int label,
[OutAttribute] CvBlob^% blob
) sealed
abstract TryGetValue :
label : uint32 *
blob : CvBlob byref -> bool
override TryGetValue :
label : uint32 *
blob : CvBlob byref -> bool
Parameters
- label
- Type: SystemUInt32
The blob label - blob
- Type: Emgu.CV.CvbCvBlob
When this method returns, contains the blob associated with the specified labe, if the label is found; otherwise, null. This parameter is passed uninitialized.
Return Value
Type:
BooleanTrue if the blobs contains a blob with the specific label; otherwise, false
Implements
IDictionaryTKey, TValueTryGetValue(TKey, TValue)
See Also