def applySettings(self): changed = False if self.filter is not None: if armor.applySettings(self.settingsList, self, self.filter): changed = True if changed: self.sendData()
def applySettings(self): changed = False if self.sift is not None: if armor.applySettings(self.settingsList, self, kwargs=self.sift.kwargs): self.sendData()
def applySettings(self): if self.feature: self.featureType = self.features[self.featureID] if armor.applySettings(self.settingsList, self, obj=self.feature, outputSlot=self.feature.outputSlot): self.sendData()
def applySettings(self): if self.histogram: if armor.applySettings(self.settingsList, self, obj=self.histogram, outputSlot=self.histogram.outputSlot): self.sendData()
def applySettings(self): if self.normalize: if armor.applySettings(self.settingsList, self, obj=self.normalize, outputSlot=self.normalize.outputSlot): self.sendData()
def applySettings(self): if self.transform: self.transtype = self.transtypes[self.transidx] self.kernel = self.kerneltypes[self.kernelidx] if armor.applySettings(self.settingsList, self, obj=self.transform, outputSlot=self.transform.outputSlot): self.sendData()
def applySettings(self): if self.kmeans: if armor.applySettings(self.settingsList, self, obj=self.kmeans, outputSlot=self.kmeans.outputSlot): self.sendData()