yuchi233 commited on
Commit
0654d0d
·
verified ·
1 Parent(s): ac18756

Upload README_zh.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README_zh.md +30 -0
README_zh.md CHANGED
@@ -278,6 +278,36 @@ MuJoCo 接入方式:
278
 
279
  不要直接修改 `raw/` 里的 `model.xml`。如果要替换原始 collision,应该在下游任务工程里选择性 include 派生 collision 文件。
280
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
281
  完整规范见:
282
 
283
  ```text
 
278
 
279
  不要直接修改 `raw/` 里的 `model.xml`。如果要替换原始 collision,应该在下游任务工程里选择性 include 派生 collision 文件。
280
 
281
+ 凸分解后的 part 尺寸不能直接通过“目标长度/目标体积”指定,CoACD 主要通过粒度参数间接控制:
282
+
283
+ ```text
284
+ --threshold 越小通常越细,part 更多/更小;越大越粗,part 更少/更大
285
+ --max-convex-hull 限制最多生成多少个 convex hull;越小越粗
286
+ --no-merge 禁止合并 hull,通常会保留更多/更小的 part
287
+ --mcts-max-depth 允许更深层递归切分,可能得到更细的结果
288
+ --resolution 提高几何采样/细节分辨率
289
+ ```
290
+
291
+ 粗 collision 示例:
292
+
293
+ ```bash
294
+ python scripts/run_convex_decomposition.py <raw_asset_dir> \
295
+ --mesh <mesh.obj> \
296
+ --threshold 0.08 \
297
+ --max-convex-hull 8
298
+ ```
299
+
300
+ 细 collision 示例:
301
+
302
+ ```bash
303
+ python scripts/run_convex_decomposition.py <raw_asset_dir> \
304
+ --mesh <mesh.obj> \
305
+ --threshold 0.02 \
306
+ --max-convex-hull 32 \
307
+ --no-merge \
308
+ --mcts-max-depth 4
309
+ ```
310
+
311
  完整规范见:
312
 
313
  ```text