Ejemplo n.º 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);
 }
Ejemplo n.º 2
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");
 }