SLA backround processing pipeline invisible but runs.

This commit is contained in:
tamasmeszaros 2018-11-12 11:46:38 +01:00
parent e05063c8b1
commit 33eade5300
4 changed files with 26 additions and 13 deletions

View file

@ -924,6 +924,11 @@ bool SLASupportTree::generate(const PointSet &points,
//...
};
// Debug:
for(int pn = 0; pn < points.rows(); ++pn) {
std::cout << "p " << pn << " " << points.row(pn) << std::endl;
}
auto filterfn = [] (
const SupportConfig& cfg,
const PointSet& points,
@ -1511,7 +1516,7 @@ bool SLASupportTree::generate(const PointSet &points,
auto progress = [&ctl, &pc, &pc_prev] () {
static const std::array<std::string, NUM_STEPS> stepstr {
"",
"Starting",
"Filtering",
"Generate pinheads",
"Classification",