Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ public class FeatureList {
public static final String PERSON_FOLLOWING = "Person Following";
public static final String OBJECT_NAV = "Object Tracking";
public static final String CART_SIMULATOR = "Cart Simulator";
public static final String PERSON_CROP_COLLECTOR = "Person Crop Collector";
public static final String MODEL_MANAGEMENT = "Model Management";
public static final String POINT_GOAL_NAVIGATION = "Point Goal Navigation";
public static final String AUTONOMOUS_DRIVING = "Autonomous Driving";
Expand Down Expand Up @@ -84,6 +85,8 @@ public static ArrayList<Category> getCategories() {
subCategories.add(new SubCategory(AUTOPILOT, R.drawable.ic_autopilot, "#44525F"));
subCategories.add(new SubCategory(OBJECT_NAV, R.drawable.ic_person_search, "#E7CE88"));
subCategories.add(new SubCategory(CART_SIMULATOR, R.drawable.ic_person_search, "#6BBF8A"));
subCategories.add(
new SubCategory(PERSON_CROP_COLLECTOR, R.drawable.ic_person_search, "#8BBF6B"));
subCategories.add(
new SubCategory(POINT_GOAL_NAVIGATION, R.drawable.ic_baseline_golf_course, "#1BBFBF"));
subCategories.add(new SubCategory(MODEL_MANAGEMENT, R.drawable.ic_list_bulleted_48, "#BC7680"));
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package org.openbot.cropcollector;

public class PersonCropCaptureConfig {
public String personId = "";
public long intervalMs = 500;
public float minConfidence = 0.5f;
public boolean singlePersonOnly = true;
public float paddingRatio = 0.08f;
public int maxCrops = 120;
public int jpegQuality = 95;
}
Loading