Exemplo n.º 1
0
 public virtual void drawPolygon(WPIPolygon p, WPIColor color, int thickness)
 {
   object obj = this.image;
   p.getCVSeq();
   color.toCvScalar();
   color.toCvScalar();
   throw new NoClassDefFoundError("com.googlecode.javacv.cpp.opencv_core");
 }
Exemplo n.º 2
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");
     }
   }
 }