[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-92671":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":9,"totalLinesOfCode":9,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":9,"subscribersCount":16,"size":16,"stars1d":16,"stars7d":16,"stars30d":17,"stars90d":16,"forks30d":16,"starsTrendScore":16,"compositeScore":18,"rankGlobal":9,"rankLanguage":9,"license":9,"archived":19,"fork":19,"defaultBranch":20,"hasWiki":19,"hasPages":19,"topics":21,"createdAt":9,"pushedAt":9,"updatedAt":24,"readmeContent":25,"aiSummary":26,"trendingCount":16,"starSnapshotCount":16,"syncStatus":27,"lastSyncTime":28,"discoverSource":29},92671,"autoremesher","huxingyi\u002Fautoremesher","huxingyi","Automatic quad remeshing tool",null,"https:\u002F\u002Fgithub.com\u002Fhuxingyi\u002Fautoremesher","C++",2286,168,69,25,0,297,65.68,false,"main",[22,23],"quadremesh","retopology","2026-07-22 04:02:06","# AutoRemesher\n\nAutoRemesher is a cross-platform automatic quad remeshing tool that converts high-polygon meshes into clean quad-based topology. It is built on top of libraries: [Geogram](https:\u002F\u002Fgithub.com\u002FBrunoLevy\u002Fgeogram), [libigl](https:\u002F\u002Fgithub.com\u002Flibigl), [isotropicremesher](https:\u002F\u002Fgithub.com\u002Fhuxingyi\u002Fisotropicremesher) and [others](https:\u002F\u002Fgithub.com\u002Fhuxingyi\u002Fautoremesher\u002Fblob\u002Fmaster\u002FACKNOWLEDGEMENTS.html).\n\nBuy me a coffee for staying up late coding :-) [![](https:\u002F\u002Fwww.paypalobjects.com\u002Fen_US\u002Fi\u002Fbtn\u002Fbtn_donate_SM.gif)](https:\u002F\u002Fwww.paypal.com\u002Fcgi-bin\u002Fwebscr?cmd=_donations&business=GHALWLWXYGCU6&item_name=Support+me+coding+in+my+spare+time&currency_code=AUD&source=url)\n\n\u003Cimg width=\"3644\" height=\"2202\" alt=\"autoremesher-1 0-screenshot\" src=\"https:\u002F\u002Fgithub.com\u002Fuser-attachments\u002Fassets\u002F47851f1e-127c-49af-81b7-0c8ac06fb3ad\" \u002F>\n\n## Getting Started\n\nThese instructions will get you a copy of **AutoRemesher** up and running on your local machine for development.\n\n### Prerequisites\n\n- C++ compiler with C++14 support (GCC, Clang, or MSVC)\n- Qt 5.15.2\n- TBB (Intel Threading Building Blocks)\n- CMake 3.12 or later (only needed on Windows to build TBB from source)\n\n### Building\n\n#### Linux (Ubuntu\u002FDebian)\n\n```bash\n# Install Qt and build tools\nsudo apt install build-essential qt5-qmake qtbase5-dev qttools5-dev-tools libqt5svg5-dev libqt5multimedia5-dev\n\n# Install TBB and OpenGL\nsudo apt install libtbb-dev libgl1-mesa-dev\n\n# Clone and build\ngit clone https:\u002F\u002Fgithub.com\u002Fhuxingyi\u002Fautoremesher.git\ncd autoremesher\nqmake\nmake -j$(nproc)\n```\n\n> **Fedora:** `sudo dnf install gcc-c++ qt5-qtbase-devel qt5-qttools-devel tbb-devel mesa-libGL-devel`\n\n#### Windows (Visual Studio 2022)\n\n1. Install [Visual Studio 2022](https:\u002F\u002Fvisualstudio.microsoft.com\u002F) with **Desktop development with C++** workload.\n2. Install [CMake](https:\u002F\u002Fcmake.org\u002Fdownload\u002F) (required to build TBB from source).\n3. Install Qt 5.15.2 with the [online installer](https:\u002F\u002Fwww.qt.io\u002Fdownload-open-source) — select the `msvc2019_64` archive.\n4. Open a **x64 Native Tools Command Prompt for VS 2022** and run:\n\n```cmd\n:: Build TBB from the bundled third-party source\ncd thirdparty\\tbb\ncmake -B build2 ^\n    -DTBB_BUILD_SHARED=ON ^\n    -DTBB_BUILD_STATIC=OFF ^\n    -DTBB_BUILD_TBBMALLOC=OFF ^\n    -DTBB_BUILD_TBBMALLOC_PROXY=OFF ^\n    -DTBB_BUILD_TESTS=OFF\ncmake --build build2 --config Release\ncd ..\\..\n\n:: Build AutoRemesher\nqmake -spec win32-msvc\nset CL=\u002FMP\nnmake -f Makefile.Release\n```\n\nThe release binary will be at `release\\autoremesher.exe`.\n\n#### macOS\n\n```bash\n# Install Xcode Command Line Tools\nxcode-select --install\n\n# Install dependencies via Homebrew\nbrew install qt@5 tbb cmake\n\n# Build\nexport PATH=\"\u002Fusr\u002Flocal\u002Fopt\u002Fqt@5\u002Fbin:$PATH\"\ngit clone https:\u002F\u002Fgithub.com\u002Fhuxingyi\u002Fautoremesher.git\ncd autoremesher\nqmake CONFIG+=sdk_no_version_check\nmake -j$(sysctl -n hw.logicalcpu)\n```\n\n### Running a quick test\n\nAutoRemesher has a CLI mode for headless processing. Try it with one of the [common-3d-test-models](https:\u002F\u002Fgithub.com\u002Falecjacobson\u002Fcommon-3d-test-models):\n\n```bash\n.\u002Fautoremesher \\\n    --input armadillo.obj \\\n    --output remeshed.obj \\\n    --report remeshed_report.txt \\\n    --target-quads 50000 \\\n    --edge-scaling 1.0 \\\n    --sharp-edge 90.0 \\\n    --smooth-normal 0.0 \\\n    --adaptivity 1.0\n```\n\n### Quick Start\n\n#### Windows\n\nDownload `autoremesher-\u003Cversion>-win32-x86_64.zip` from [releases](https:\u002F\u002Fgithub.com\u002Fhuxingyi\u002Fautoremesher\u002Freleases), extract it and run `autoremesher.exe`.\n\n#### macOS\n\nDownload `autoremesher-\u003Cversion>.dmg` from [releases](https:\u002F\u002Fgithub.com\u002Fhuxingyi\u002Fautoremesher\u002Freleases).\n\n*For the first time, Apple will reject to run and popup something like \"can't be opened because its integrity cannot be verified\". Go to System Preferences > Security & Privacy > General and under \"Allow apps downloaded from\" click the button to allow it.*\n\n#### Linux\n\nDownload `autoremesher-\u003Cversion>.AppImage` from [releases](https:\u002F\u002Fgithub.com\u002Fhuxingyi\u002Fautoremesher\u002Freleases).\n\n```\n$ chmod a+x .\u002Fautoremesher-\u003Cversion>.AppImage\n$ .\u002Fautoremesher-\u003Cversion>.AppImage\n```\n\n### Links\n\n- [Check out open-source auto-retopology tool AutoRemesher](http:\u002F\u002Fwww.cgchannel.com\u002F2020\u002F08\u002Fcheck-out-open-source-auto-retopology-tool-autoremesher\u002F) **cgchannel.com**\n- [A New Open-Source Auto-Retopology Tool](https:\u002F\u002F80.lv\u002Farticles\u002Fa-new-open-source-auto-retopology-tool\u002F) **80.lv**\n- [[Non-Blender] Autoremesher auto-retopology tool released](https:\u002F\u002Fwww.blendernation.com\u002F2020\u002F08\u002F18\u002Fnon-blender-autoremesher-auto-retopology-tool-released\u002F) **blendernation.com**\n- [オープンソースの新しいオートリメッシュツール Auto Remesher](https:\u002F\u002Fcginterest.com\u002F2020\u002F08\u002F20\u002F%e3%82%aa%e3%83%bc%e3%83%97%e3%83%b3%e3%82%bd%e3%83%bc%e3%82%b9%e3%81%ae%e6%96%b0%e3%81%97%e3%81%84%e3%82%aa%e3%83%bc%e3%83%88%e3%83%aa%e3%83%a1%e3%83%83%e3%82%b7%e3%83%a5%e3%83%84%e3%83%bc%e3%83%ab-a\u002F) **cginterest.com**\n- [AutoRemesher 1.0.0-alpha - 超高速で高品質のクワッドポリゴン生成！Dust3D開発者によるオープンソースの自動リメッシュツール！](https:\u002F\u002F3dnchu.com\u002Farchives\u002Fautoremesher-1-0-0-alpha\u002F) **3dnchu.com**\n- [Open Source AutoRemesher released](https:\u002F\u002Fcgpress.org\u002Farchives\u002Fopen-source-remesher.html) **cgpress.org**\n- [「autoremesher」多角形を自動でリトポしてれる無料トポロジーツール](https:\u002F\u002Fmodelinghappy.com\u002Farchives\u002F30339) **modelinghappy.com**\n- [Open Source Auto Remesher](https:\u002F\u002Fblender-addons.org\u002Fopen-source-auto-remesher\u002F) **blender-addons.org**\n- [AutoRemesher | Auto-Retopology-Tool](https:\u002F\u002Fwww.digitalproduction.com\u002F2020\u002F08\u002F05\u002Fautoremesher-auto-retopology-tool\u002F) **digitalproduction.com**\n- [Autoremesher open source auto-retopology tool](https:\u002F\u002Fblenderartists.org\u002Ft\u002Fautoremesher-open-source-auto-retopology-tool\u002F1245131\u002F126) **blenderartists.org**\n\n## License\n\nAutoRemesher is licensed under the MIT License - see the [LICENSE](https:\u002F\u002Fgithub.com\u002Fhuxingyi\u002Fautoremesher\u002Fblob\u002Fmaster\u002FLICENSE) file for details.\n\n## Acknowledgements\n\nSee the full [ACKNOWLEDGEMENTS](https:\u002F\u002Fgithub.com\u002Fhuxingyi\u002Fautoremesher\u002Fblob\u002Fmaster\u002FACKNOWLEDGEMENTS.html) for a list of libraries and resources used in this project.\n\n\u003C!-- Sponsors begin -->\u003C!-- Sponsors end -->\n","AutoRemesher 是一款跨平台的自动四边形重网格化工具，用于将高多边形模型自动转换为结构规整、拓扑干净的四边形网格。其核心功能包括基于几何优化的各向同性重网格化、支持边界保持与特征线保留，并整合 Geogram、libigl 等成熟计算几何库实现高效鲁棒的网格处理。项目采用 C++ 实现，提供 GUI 与命令行双模式，适用于三维建模、角色绑定准备、动画拓扑优化及 CAD 模型简化等对网格质量要求较高的工业流程。",2,"2026-07-10 02:30:08","trending"]