saknarak
saknarak
18 keypoints? first 4 float values is dx,dy,w,h == bbox but dx and dy must know anchor points anther 14 values is (x0,y0), (x1,y1), ...(x6,y6) = 7 keypoints Source: https://github.com/junhwanjang/mediapipe-models/blob/main/palm_detection/assets/palm_7_landmark_index.png...
From ssd_anchors_calculator https://github.com/google/mediapipe/blob/master/mediapipe/calculators/tflite/ssd_anchors_calculator.cc I try to create anchors point with parameter from https://github.com/google/mediapipe/blob/master/mediapipe/modules/palm_detection/palm_detection_cpu.pbtxt I can produce only half anchor points (1008) not 2016 Layer 1: 192/8 = 24 => 24*24...
Now I can generate all 2016 anchor points by add 0.5 ratio in aspectRatios array ```javascript let anchorOptions = { numLayers: 4, minScale: 0.1484375, maxScale: 0.75, inputSizeWidth: 192, inputSizeHeight: 192,...
I'm still waiting for tensorflow lite model exporter
same problem here https://github.com/windicss/windicss/issues/826