예제 #1
0
 public virtual void drawContours(WPIContour[] c, WPIColor color, int thickness)
 {
   WPIContour[] wpiContourArray = c;
   int length = wpiContourArray.Length;
   for (int index = 0; index < length; ++index)
     this.drawContour(wpiContourArray[index], color, thickness);
 }
예제 #2
0
 public virtual void drawPoint(WPIPoint p, WPIColor color, int thickness)
 {
   object obj = this.image;
   p.getCvPoint();
   color.toCvScalar();
   throw new NoClassDefFoundError("com.googlecode.javacv.cpp.opencv_core");
 }
예제 #3
0
 public virtual void drawContour(WPIContour c, WPIColor color, int thickness)
 {
   object obj = this.image;
   c.getCVSeq();
   color.toCvScalar();
   color.toCvScalar();
   throw new NoClassDefFoundError("com.googlecode.javacv.cpp.opencv_core");
 }
예제 #4
0
 public virtual void drawRect(int x, int y, int width, int height, WPIColor color, int thickness)
 {
   object obj = this.image;
   throw new NoClassDefFoundError("com.googlecode.javacv.cpp.opencv_core");
 }
예제 #5
0
 public virtual void drawPolygons(WPIPolygon[] p, WPIColor color, int thickness)
 {
   WPIPolygon[] wpiPolygonArray = p;
   int length = wpiPolygonArray.Length;
   for (int index = 0; index < length; ++index)
   {
     WPIPolygon wpiPolygon = wpiPolygonArray[index];
     if (wpiPolygon != null)
     {
       wpiPolygon.getCVSeq();
       throw new NoClassDefFoundError("com.googlecode.javacv.cpp.opencv_core$CvSeq");
     }
   }
 }
예제 #6
0
 public virtual void drawPoints(WPIPoint[] p, WPIColor color, int thickness)
 {
   for (int index = 0; index < p.Length; ++index)
     this.drawPoint(p[index], color, thickness);
 }