コード例 #1
0
ファイル: Algorithm.cs プロジェクト: shimat/opencvsharp_2410
 /// <summary>
 /// Sets the algorithm parameter
 /// </summary>
 /// <param name="name">The parameter name.</param>
 /// <param name="value">The parameter value.</param>
 public void SetAlgorithm(string name, Algorithm value)
 {
     throw new NotImplementedException();
 }
コード例 #2
0
ファイル: Algorithm.cs プロジェクト: 0sv/opencvsharp
 /// <summary>
 /// Sets the algorithm parameter
 /// </summary>
 /// <param name="name">The parameter name.</param>
 /// <param name="value">The parameter value.</param>
 public void SetAlgorithm(string name, Algorithm value)
 {
     throw new NotImplementedException();
 }
コード例 #3
0
ファイル: Algorithm.cs プロジェクト: neoxeo/opencvsharp
 public void SetAlgorithm(string name, Algorithm value)
 {
     CppInvoke.cv_Algorithm_setAlgorithm(ptr, name, value.CvPtr);
 }