Too many changes to list

running in to bug in CameraStreamer with native exceptions
This commit is contained in:
Banks Troutman
2019-11-21 05:32:19 -05:00
parent 35509c0162
commit 48da9f5dfd
21 changed files with 678 additions and 211 deletions

View File

@@ -0,0 +1,14 @@
package com.chameleonvision.classabstraction.util;
import org.opencv.core.Scalar;
import java.awt.*;
public class Helpers {
private Helpers() {}
public static Scalar colorToScalar(Color color) {
return new Scalar(color.getRed(), color.getGreen(), color.getBlue());
}
}

View File

@@ -27,7 +27,8 @@ public class ProgramDirectoryUtilities
return getCurrentJARDirectory();
} else
{
return getCurrentProjectDirectory();
return System.getProperty("user.dir");
// return getCurrentProjectDirectory();
}
}