use of boofcv.gui.StandardAlgConfigPanel in project BoofCV by lessthanoptimal.
the class DemoThreeViewControls method createSelfCalibPanel.
private JPanel createSelfCalibPanel() {
StandardAlgConfigPanel panel = new StandardAlgConfigPanel();
panel.addLabeled(sMaxSize, "Max Image Size", "Maximum width/height of input image. Image is scaled down if larger");
panel.addLabeled(sInliers, "Inliers (px)", "RANSAC inlier threshold in pixels for reprojection error.");
panel.addLabeled(sPrune, "Prune %", "Prunes this percent of the worse matches after computing the solution once.");
panel.addAlignLeft(cFocalAuto);
panel.addLabeled(sFocal, "Focal", "User specified value for focal length in pixels.");
return panel;
}
Aggregations