Research Article

An Application of Classifier Combination Methods in Hand Gesture Recognition

Algorithm 1

The general algorithmic framework for bagging, random subspace, and random forest methods.
● Input
  A training set β„’ = { ( 𝐱 𝑖 , 𝑦 𝑖 ) } 𝑁 𝑖 = 1 ; A base learner 𝒲 ; Number of iterations 𝑇 ; A new data point 𝐱
  to be classified.
● Training Phase
  For 𝑑 = 1 , … , 𝑇
   (1) Utilize the corresponding technique (i.e., bootstrap sampling or randomly selecting
   features) to get a training set β„’ 𝑑 .
   (2) Provide β„’ 𝑑 as the input of 𝒲 (random forest has an additional randomness injection  
       operation) to train base classifier 𝐢 𝑑 .
  EndFor
● Output
   – The class label for 𝐱 predicted by the ensemble classifier 𝐢 βˆ— as
              𝐢 βˆ— ( 𝐱 ) = a r g m a x 𝑇 𝑦 ∈ Ξ¦ βˆ‘ 𝑑 = 1 𝐼 ( 𝐢 𝑑 ( 𝐱 ) = 𝑦 ) ,
   where 𝐼 ( β‹… ) denotes the indicator function which takes value 1 or 0 depending on
   whether the condition of it is true or false.