示例#1
0
 private static double[] ExtractHandFeatures(PreprocessedFrame frame)
 {
     return(HandFeatureExtractor.ExtractFeatures(frame.CroppedVideoLeft, frame.DepthMapLeft)
            .Concat(HandFeatureExtractor.ExtractFeatures(frame.CroppedVideoRight, frame.DepthMapRight))
            .ToArray());
 }
示例#2
0
 private static double[] ExtractHandFeatures(PreprocessedFrame frame)
 {
     return HandFeatureExtractor.ExtractFeatures(frame.CroppedVideoLeft, frame.DepthMapLeft)
         .Concat(HandFeatureExtractor.ExtractFeatures(frame.CroppedVideoRight, frame.DepthMapRight))
         .ToArray();
 }