Skip to content

class_label_change_filter

nickgillian edited this page Aug 21, 2016 · 3 revisions

#Class Label Change Filter

##Description The Class Label Change Filter module signals when the predicted output of a classifier changes. For instance, if the output stream of a classifier was {1,1,1,1,2,2,2,2,3,3}, then the output of the filter would be {1,0,0,0,2,0,0,0,3,0}. This module is useful if you want to debounce a gesture and only care about when the gesture label changes.

The Class Label Change Filter module is part of the GRT post-processing modules.

ClassLabelChangeFilter

##Advantages The Class Label Change Filter is a useful post-processing module which signals when the predicted output of a classifier changes.

##Disadvantages None.

##Example Class Label Change Filter Example