Skip to content

Commit

Permalink
Update ObjectDetectionPipelineSettings.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Alextopher committed Sep 11, 2024
1 parent 1130907 commit 0b2d30c
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@ public class ObjectDetectionPipelineSettings extends AdvancedPipelineSettings {
public double nms; // non maximal suppression
public String model;

public List<String> availableModels;

public ObjectDetectionPipelineSettings() {
super();
this.pipelineType = PipelineType.ObjectDetection; // TODO: FIX this
Expand All @@ -37,6 +35,5 @@ public ObjectDetectionPipelineSettings() {
confidence = .9;
nms = .45;
model = NeuralNetworkModelManager.getInstance().getDefaultRknnModel().getName();
availableModels = NeuralNetworkModelManager.getInstance().getModels();
}
}

0 comments on commit 0b2d30c

Please sign in to comment.