CoolFace
Apppublic

gofeco/support

sourceHugging Faceapache-2.0updated 2y agoView on Hugging Face
0likes
api.set_keypoints_rep_in_ref.txt18 linesDownload Raw Back to src_en
1<h3 id='___set_keypoints_rep_in_ref'>set_keypoints_rep_in_ref</h3>2<pre>ECO setting. Replace keypoints naming in Reference Netlist.3Keypoints naming matching the first argument, and replace the matched string by the second argument4<b>Usage:</b> set_keypoints_rep_in_ref($match_string, $rep_string);5$match_string: Keypoints naming matching this string6$rep_string: To replace the matched string by this string7 8<b>Note:</b> The command only apply to Reference Netlist9 10<b>Examples:</b>11 12#1. Replace the last '_' in Keypoints naming in Reference Netlist13set_keypoints_rep_in_ref('_$', '');14 15#2. Replace the last '0' in Keypoints naming in Reference Netlist16set_keypoints_rep_in_ref('0$', '');17 18</pre>