本文整理汇总了C#中Int8Image类的典型用法代码示例。如果您正苦于以下问题:C# Int8Image类的具体用法?C# Int8Image怎么用?C# Int8Image使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Int8Image类属于命名空间,在下文中一共展示了Int8Image类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Extract1Channel
public static void Extract1Channel(HSV161616Image image, HSVColor plane, Int8Image chan) {
VisionLabPINVOKE.Extract1Channel__SWIG_54(HSV161616Image.getCPtr(image), (int)plane, Int8Image.getCPtr(chan));
if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
}
示例2: ClassifyOutputTab
public double ClassifyOutputTab(Int8Image image, vector_ClassOutput outputTab) {
double ret = VisionLabPINVOKE.BPN_ImageClassifier_Int8_ClassifyOutputTab(swigCPtr, Int8Image.getCPtr(image), vector_ClassOutput.getCPtr(outputTab));
if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
return ret;
}
示例3: GetImage
public Int8Image GetImage(int classId, int imageIndex) {
Int8Image ret = new Int8Image(VisionLabPINVOKE.ClassImageSet_Int8_GetImage__SWIG_1(swigCPtr, classId, imageIndex), false);
if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
return ret;
}
示例4: DeInterlace
public static void DeInterlace(Int8Image image) {
VisionLabPINVOKE.DeInterlace__SWIG_2(Int8Image.getCPtr(image));
if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
}
示例5: TrainImage
public double TrainImage(double learnRate, double momentum, Int8Image image, int classNr) {
double ret = VisionLabPINVOKE.BPN_ImageClassifier_Int8_TrainImage(swigCPtr, learnRate, momentum, Int8Image.getCPtr(image), classNr);
if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
return ret;
}
示例6: AddBorder
public static void AddBorder(Int8Image src, Int8Image dest, int top, int left, int right, int bottom, char value) {
VisionLabPINVOKE.AddBorder__SWIG_2(Int8Image.getCPtr(src), Int8Image.getCPtr(dest), top, left, right, bottom, value);
if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
}
示例7: CircleShape
public static void CircleShape(Int8Image image, XYCoord centre, int r, char value, ZeroOrOriginal zorg) {
VisionLabPINVOKE.CircleShape__SWIG_4(Int8Image.getCPtr(image), XYCoord.getCPtr(centre), r, value, (int)zorg);
if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
}
示例8: InvertLUT
public static void InvertLUT(Int8Image image) {
VisionLabPINVOKE.InvertLUT__SWIG_2(Int8Image.getCPtr(image));
if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
}
示例9: LUT
public static void LUT(Int8Image image, char minPixel, vector_char tab) {
VisionLabPINVOKE.LUT__SWIG_5(Int8Image.getCPtr(image), minPixel, vector_char.getCPtr(tab));
if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
}
示例10: GammaLUT
public static void GammaLUT(Int8Image image, double gamma) {
VisionLabPINVOKE.GammaLUT__SWIG_2(Int8Image.getCPtr(image), gamma);
if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
}
示例11: HistogramEqualize
public static void HistogramEqualize(Int8Image image) {
VisionLabPINVOKE.HistogramEqualize__SWIG_2(Int8Image.getCPtr(image));
if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
}
示例12: ContrastStretchLUT
public static void ContrastStretchLUT(Int8Image image, char low, char high) {
VisionLabPINVOKE.ContrastStretchLUT__SWIG_2(Int8Image.getCPtr(image), low, high);
if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
}
示例13: CalcHistogram0
public static void CalcHistogram0(Int8Image image, int hisSize, SWIGTYPE_p_int his) {
VisionLabPINVOKE.CalcHistogram0__SWIG_2(Int8Image.getCPtr(image), hisSize, SWIGTYPE_p_int.getCPtr(his));
if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
}
示例14: CalcHistogram
public static Histogram CalcHistogram(Int8Image image, Int8Image roi) {
Histogram ret = new Histogram(VisionLabPINVOKE.CalcHistogram__SWIG_11(Int8Image.getCPtr(image), Int8Image.getCPtr(roi)), true);
if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
return ret;
}
示例15: ThresholdIsoData
public static int ThresholdIsoData(Int8Image image, Int8Image roi, ObjectBrightness arg2) {
int ret = VisionLabPINVOKE.ThresholdIsoData__SWIG_5(Int8Image.getCPtr(image), Int8Image.getCPtr(roi), (int)arg2);
if (VisionLabPINVOKE.SWIGPendingException.Pending) throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
return ret;
}