removed unnecessary parameters

This commit is contained in:
ori
2019-09-21 09:42:22 -07:00
parent 4c315ac554
commit 4160b2aba7
2 changed files with 2 additions and 3 deletions

View File

@@ -50,7 +50,7 @@ public class VisionProcess {
}
private List<MatOfPoint> FilteredContours = new ArrayList<MatOfPoint>();
List<MatOfPoint> FilterContours(List<MatOfPoint> InputContours, List<Integer> area, List<Integer> ratio, List<Integer> extent, String SortMode, String TargetIntersection, String TargetGrouping) {
List<MatOfPoint> FilterContours(List<MatOfPoint> InputContours, List<Integer> area, List<Integer> ratio, List<Integer> extent) {
for (MatOfPoint Contour : InputContours){
try{
var contourArea = Imgproc.contourArea(Contour);