Skip to content

2.Implementation of "Greedy cut construction for parameterizations"

Notifications You must be signed in to change notification settings

anapupa/GreedyCut

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GreedyCut

This is a C++ implement of the following paper:

Tianyu Zhu, Chunyang Ye, Shuangming Chai, and Xiao-Ming Fu. Greedy cut construction for parameterizations. Computer Graphics Forum (Eurographics), 2020.

The code is written by Tianyu Zhu using Microsoft Visual Studio 2019 with OpenMP, and has passed the test on Windows 10, Ubuntu 18.04 and macOS 10.14.3.

External Libraries

All the required libraries are the latest versions.

Clone Repository

git clone https://github.com/Mizuki7fan/GreedyCut

Build and Run

build

cd GreedyCut

Edit CmakeLists.txt to set the solver and configuration path.

mkdir build && cd build
cmake ..

run

GreedyCut.exe <mesh> opt.txt

Arguments in opt.txt:

  • PointSampling_method: the method to find second vertex.
  • PointFinding_method: the metric of distance in PointFinding stage.
  • BanArea_Method: weather to connect local maximizer before finding second cut.
  • BanArea_Dn: the radius of forbidden region.
  • BanArea_Alpha: the threshold in dual cut strategy.
  • BanArea_Metric: the metric of distance of the radius of forbidden region.
  • BanArea_ShrinkRate: the shrink rate of radius of forbidden region.
  • Influence_Threshold: the scope of influence threshold.
  • Distortion_Threshold: the distortion threshold of filtering stage.
  • Trimming_Rate: the length threshold of add auxiliary point stage.
  • Max_AddCount: the maximum of adding auxiliary point.

example

GreedyCut.exe alien.obj opt.txt

Output Files

  • landmark.txt: the landmark find by algorithm.
  • cut.txt: the cut find by algorithm
  • cuted_mesh.obj: the open mesh cuted by the cut.

About

2.Implementation of "Greedy cut construction for parameterizations"

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 95.3%
  • CMake 4.7%