self.opWrapperFeatureSelection.ComplexityPenalty.setValue(self._selection_params["c"])
selected_feature_ids = self.opWrapperFeatureSelection.SelectedFeatureIDs.value
self.current_status_label.setText("Current Status: Get segmentation (new feature set)")
self.current_status_label.repaint()
// create a new layer for display in the volumina viewer
// make sure to save the feature matrix used to obtain it
// maybe also write down feature computation time and oob error
After Change
// make sure to save the feature matrix used to obtain it
// maybe also write down feature computation time and oob error
new_matrix = self._convert_featureIDs_to_featureMatrix(selected_feature_ids)
new_segmentation, new_oob, new_time = self.retrieve_segmentation(new_matrix)
new_feature_selection_result = FeatureSelectionResult(new_matrix,
new_segmentation,
self._selection_params,