Skip to main content
. 2021 Nov 27;21(23):7914. doi: 10.3390/s21237914
Algorithm 1: ATC Hand Gesture Recognition
Functions: ℱ = object detector; ℋ = hand detector; ℳ = 3D hand model; E = feature extractor; C = contrastive embedding; 𝔗 = single inference.
Input: videoframes (onboard device)
  A = ℱ(Input)   // ATC detection
  for each hand in f1 & f2:
  H = ℋ(A)   // Hand detection
  M = ℳ(H)   // 3D hand modeling
  E = E(M)   // Hand feature extraction
  E = {Ef1, Ef2}   // Stores hand features (of Ef1, and Ef2)
  C = C(E)   // Contrastive embedding calculation for Ef1, and Ef2
  I = 𝔗(Ef2)   // Inference for Ef2
  G={C+I, if poses have differenceI, if poses have no difference
return (G)