File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed
Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -555,7 +555,19 @@ int main(int argc, char **argv)
555555{
556556 if (argc != 4 )
557557 {
558- std::cout << " Usage:\t MeshDenoiser OPTION_FILE INPUT_MESH OUTPUT_MESH" << std::endl;
558+ std::cout << " MeshDenoiser - Mesh normal denoising filter" << std::endl;
559+ std::cout << std::endl;
560+ std::cout << " Usage: MeshDenoiser OPTION_FILE INPUT_MESH OUTPUT_MESH" << std::endl;
561+ std::cout << std::endl;
562+ std::cout << " Supported input formats:" << std::endl;
563+ std::cout << " - OBJ, PLY, OFF, STL (via OpenMesh)" << std::endl;
564+ std::cout << " - glTF (.gltf, .glb)" << std::endl;
565+ std::cout << " - USD (.usd, .usda, .usdc, .usdz)" << std::endl;
566+ std::cout << std::endl;
567+ std::cout << " Example:" << std::endl;
568+ std::cout << " MeshDenoiser options.txt input.obj output.obj" << std::endl;
569+ std::cout << " MeshDenoiser options.txt model.gltf denoised.obj" << std::endl;
570+ std::cout << " MeshDenoiser options.txt scene.usdz clean.ply" << std::endl;
559571 return 1 ;
560572 }
561573
You can’t perform that action at this time.
0 commit comments