当前位置: 首页>>代码示例>>C#>>正文


C# SWIGTYPE_p_int类代码示例

本文整理汇总了C#中SWIGTYPE_p_int的典型用法代码示例。如果您正苦于以下问题:C# SWIGTYPE_p_int类的具体用法?C# SWIGTYPE_p_int怎么用?C# SWIGTYPE_p_int使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


SWIGTYPE_p_int类属于命名空间,在下文中一共展示了SWIGTYPE_p_int类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: get_string

 public virtual void get_string(SWIGTYPE_p_long_double vector, SWIGTYPE_p_int len) {
   modshogunPINVOKE.StreamingFile_get_string__SWIG_12(swigCPtr, SWIGTYPE_p_long_double.getCPtr(vector), SWIGTYPE_p_int.getCPtr(len));
   if (modshogunPINVOKE.SWIGPendingException.Pending) throw modshogunPINVOKE.SWIGPendingException.Retrieve();
 }
开发者ID:Anshul-Bansal,项目名称:gsoc,代码行数:4,代码来源:StreamingFile.cs

示例2: IntNDArray

 public IntNDArray(SWIGTYPE_p_int a, SWIGTYPE_p_int d, int nd) : this(modshogunPINVOKE.new_IntNDArray__SWIG_1(SWIGTYPE_p_int.getCPtr(a), SWIGTYPE_p_int.getCPtr(d), nd), true) {
   if (modshogunPINVOKE.SWIGPendingException.Pending) throw modshogunPINVOKE.SWIGPendingException.Retrieve();
 }
开发者ID:Anshul-Bansal,项目名称:gsoc,代码行数:3,代码来源:IntNDArray.cs

示例3: getAmpStatus

 public virtual bool getAmpStatus(int j, SWIGTYPE_p_int v)
 {
     bool ret = yarpPINVOKE.IAmplifierControl_getAmpStatus__SWIG_1(swigCPtr, j, SWIGTYPE_p_int.getCPtr(v));
     return ret;
 }
开发者ID:dcam0050,项目名称:Unity-Yarp-Integration,代码行数:5,代码来源:IAmplifierControl.cs

示例4: LUT

 public static void LUT(Int32Image image, int minPixel, SWIGTYPE_p_int tab) {
   VisionLabPINVOKE.LUT__SWIG_8(Int32Image.getCPtr(image), minPixel, SWIGTYPE_p_int.getCPtr(tab));
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:4,代码来源:VisionLab.cs

示例5: get_basealphas_ptr

 public SWIGTYPE_p_double get_basealphas_ptr(SWIGTYPE_p_int y, SWIGTYPE_p_int x) {
   IntPtr cPtr = modshogunPINVOKE.GMNPSVM_get_basealphas_ptr(swigCPtr, SWIGTYPE_p_int.getCPtr(y), SWIGTYPE_p_int.getCPtr(x));
   SWIGTYPE_p_double ret = (cPtr == IntPtr.Zero) ? null : new SWIGTYPE_p_double(cPtr, false);
   if (modshogunPINVOKE.SWIGPendingException.Pending) throw modshogunPINVOKE.SWIGPendingException.Retrieve();
   return ret;
 }
开发者ID:Anshul-Bansal,项目名称:gsoc,代码行数:6,代码来源:GMNPSVM.cs

示例6: getAxes

 public virtual bool getAxes(SWIGTYPE_p_int ax)
 {
     bool ret = yarpPINVOKE.ITorqueControlRaw_getAxes(swigCPtr, SWIGTYPE_p_int.getCPtr(ax));
     return ret;
 }
开发者ID:johnty,项目名称:YarpUnity,代码行数:5,代码来源:ITorqueControlRaw.cs

示例7: TMEdgeDetection

 public static void TMEdgeDetection(Int32Image src, Int32Image destMag, Int32Image destDir, int nrMasks, Mask_Int32 maskTab, SWIGTYPE_p_int alfaTab, Gradient grad) {
   VisionLabPINVOKE.TMEdgeDetection__SWIG_4(Int32Image.getCPtr(src), Int32Image.getCPtr(destMag), Int32Image.getCPtr(destDir), nrMasks, Mask_Int32.getCPtr(maskTab), SWIGTYPE_p_int.getCPtr(alfaTab), (int)grad);
   if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
 }
开发者ID:eddiesprietsma,项目名称:licplates11Okt12_b,代码行数:4,代码来源:VisionLab.cs

示例8: getAxes

 public virtual bool getAxes(SWIGTYPE_p_int ax)
 {
     bool ret = yarpPINVOKE.IEncoders_getAxes__SWIG_0(swigCPtr, SWIGTYPE_p_int.getCPtr(ax));
     return ret;
 }
开发者ID:johnty,项目名称:YarpUnity,代码行数:5,代码来源:IEncoders.cs

示例9: get_randomcoefficients

 public void get_randomcoefficients(SWIGTYPE_p_p_double randomcoeff_additive2, SWIGTYPE_p_p_double randomcoeff_multiplicative2, SWIGTYPE_p_int dim_feature_space2, SWIGTYPE_p_int dim_input_space2, SWIGTYPE_p_double kernelwidth2) {
   modshogunPINVOKE.RandomFourierGaussPreproc_get_randomcoefficients(swigCPtr, SWIGTYPE_p_p_double.getCPtr(randomcoeff_additive2), SWIGTYPE_p_p_double.getCPtr(randomcoeff_multiplicative2), SWIGTYPE_p_int.getCPtr(dim_feature_space2), SWIGTYPE_p_int.getCPtr(dim_input_space2), SWIGTYPE_p_double.getCPtr(kernelwidth2));
   if (modshogunPINVOKE.SWIGPendingException.Pending) throw modshogunPINVOKE.SWIGPendingException.Retrieve();
 }
开发者ID:Anshul-Bansal,项目名称:gsoc,代码行数:4,代码来源:RandomFourierGaussPreproc.cs

示例10: get_vector_and_label

 public virtual void get_vector_and_label(SWIGTYPE_p_VwExample ex, SWIGTYPE_p_int len, SWIGTYPE_p_double label) {
   modshogunPINVOKE.StreamingFile_get_vector_and_label__SWIG_13(swigCPtr, SWIGTYPE_p_VwExample.getCPtr(ex), SWIGTYPE_p_int.getCPtr(len), SWIGTYPE_p_double.getCPtr(label));
   if (modshogunPINVOKE.SWIGPendingException.Pending) throw modshogunPINVOKE.SWIGPendingException.Retrieve();
 }
开发者ID:Anshul-Bansal,项目名称:gsoc,代码行数:4,代码来源:StreamingFile.cs

示例11: get_vector

 public virtual void get_vector(SWIGTYPE_p_short vector, SWIGTYPE_p_int len) {
   modshogunPINVOKE.StreamingFile_get_vector__SWIG_6(swigCPtr, SWIGTYPE_p_short.getCPtr(vector), SWIGTYPE_p_int.getCPtr(len));
   if (modshogunPINVOKE.SWIGPendingException.Pending) throw modshogunPINVOKE.SWIGPendingException.Retrieve();
 }
开发者ID:Anshul-Bansal,项目名称:gsoc,代码行数:4,代码来源:StreamingFile.cs

示例12: get_sparse_vector_and_label

 public virtual void get_sparse_vector_and_label(SWIGTYPE_p_SGSparseVectorEntryT_long_double_t vector, SWIGTYPE_p_int len, SWIGTYPE_p_double label) {
   modshogunPINVOKE.StreamingFile_get_sparse_vector_and_label__SWIG_12(swigCPtr, SWIGTYPE_p_SGSparseVectorEntryT_long_double_t.getCPtr(vector), SWIGTYPE_p_int.getCPtr(len), SWIGTYPE_p_double.getCPtr(label));
   if (modshogunPINVOKE.SWIGPendingException.Pending) throw modshogunPINVOKE.SWIGPendingException.Retrieve();
 }
开发者ID:Anshul-Bansal,项目名称:gsoc,代码行数:4,代码来源:StreamingFile.cs

示例13: get_sparse_vector

 public virtual void get_sparse_vector(SWIGTYPE_p_SGSparseVectorEntryT_unsigned_long_long_t vector, SWIGTYPE_p_int len) {
   modshogunPINVOKE.StreamingFile_get_sparse_vector__SWIG_11(swigCPtr, SWIGTYPE_p_SGSparseVectorEntryT_unsigned_long_long_t.getCPtr(vector), SWIGTYPE_p_int.getCPtr(len));
   if (modshogunPINVOKE.SWIGPendingException.Pending) throw modshogunPINVOKE.SWIGPendingException.Retrieve();
 }
开发者ID:Anshul-Bansal,项目名称:gsoc,代码行数:4,代码来源:StreamingFile.cs

示例14: get_string_and_label

 public virtual void get_string_and_label(SWIGTYPE_p_unsigned_long_long vector, SWIGTYPE_p_int len, SWIGTYPE_p_double label) {
   modshogunPINVOKE.StreamingFile_get_string_and_label__SWIG_11(swigCPtr, SWIGTYPE_p_unsigned_long_long.getCPtr(vector), SWIGTYPE_p_int.getCPtr(len), SWIGTYPE_p_double.getCPtr(label));
   if (modshogunPINVOKE.SWIGPendingException.Pending) throw modshogunPINVOKE.SWIGPendingException.Retrieve();
 }
开发者ID:Anshul-Bansal,项目名称:gsoc,代码行数:4,代码来源:StreamingFile.cs

示例15: getAxes

 public virtual bool getAxes(SWIGTYPE_p_int axes)
 {
     bool ret = yarpPINVOKE.IVelocityControl_getAxes__SWIG_0(swigCPtr, SWIGTYPE_p_int.getCPtr(axes));
     return ret;
 }
开发者ID:dcam0050,项目名称:Unity-Yarp-Integration,代码行数:5,代码来源:IVelocityControl.cs


注:本文中的SWIGTYPE_p_int类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。