Skip to Content.
Sympa Menu

cgal-discuss - [cgal-discuss] How to constrain edge in refine function in Polygon Mesh Processing Package

Subject: CGAL users discussion list

List archive

[cgal-discuss] How to constrain edge in refine function in Polygon Mesh Processing Package


Chronological Thread 
  • From: Yongzhou Gu <>
  • To:
  • Subject: [cgal-discuss] How to constrain edge in refine function in Polygon Mesh Processing Package
  • Date: Tue, 4 Apr 2017 22:54:54 -0500
  • Authentication-results: mail2-smtp-roc.national.inria.fr; spf=None ; spf=Neutral ; spf=None
  • Ironport-phdr: 9a23:dqN/TBUsXTqfe1AgRg4L+8FfBb/V8LGtZVwlr6E/grcLSJyIuqrYYhOBt8tkgFKBZ4jH8fUM07OQ6PG8HzRYqb+681k6OKRWUBEEjchE1ycBO+WiTXPBEfjxciYhF95DXlI2t1uyMExSBdqsLwaK+i764jEdAAjwOhRoLerpBIHSk9631+ev8JHPfglEnjSwbLd9IRmssQndqtQdjJd/JKo21hbHuGZDdf5MxWNvK1KTnhL86dm18ZV+7SleuO8v+tBZX6nicKs2UbJXDDI9M2Ao/8LrrgXMTRGO5nQHTGoblAdDDhXf4xH7WpfxtTb6tvZ41SKHM8D6Uaw4VDK/5KptVRTmijoINyQh/W/XhMJ+j79Vrgy9qBFk2YHYfJuYOeBicq/Bf94XQ3dKUMZLVyxGB4Oxd4kAD+0HPeZXroj9p1wOrQajDgetGePk1zhFh3/53aA4yOkhEAXG3AghH9IIt3TUrc71OL0MXu+o0anF1DPOZO5V1zfl8IXEbAwtrPWWUb9zccfd01cjGx7Fg1mKqIHoPjWY3fkXvWeB9epvT+evhnYnqw5vpjivwd8hiozTiYIUzlDI7CF5wIgpKdGhRk52YN+pHIFftyGdMIt2TcciTH9ytCkmzb0GvIa3fCkMyJs52x7Sc+KLf5SM7x75V+ucIS10iGx4dL+/nRq/8EmtxvX5Vsau0VZKqiRFksPLtnAIzxHS6seHR/lm80eg3TaP0wHT6udDIUA1jqrXMYAuzaMtlpYLq0TMAjf2mFnqjK+Rbkgr5ueo5P7jYrn/u5CcNpR0hR3jMqQ1gcyyGv84MwgLX2iD4+uwzrzj/UvjQLVLlPI6iKfZsIqJbfgc86W2CgsQ3oc44AukFB+n1s4ZlD8JNgFrYhWC2rnuPV7cIPflRdiiywC9n2hDxvTCP7vmA46LI3TexuSyNY1h4lJRnVJghetU4IhZX+kM

Subject: How to constrain edge in refine function in Polygon Mesh Processing Package
Hi,
I want to use the refine function in Polygon Mesh Processing Package to refine a triangulation mesh. During the mesh, I want to constrain some edges from being deleted. I found that the refine function can add a "edge_is_constrained_map" as parameter, but I don't know how to create a edge map. (I don't know how to get edge_descripter from a polyhedron)

Here is my code:


#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Polyhedron_3.h>
#include <CGAL/boost/graph/graph_traits_Polyhedron_3.h>
#include <CGAL/IO/Polyhedron_iostream.h>
#include <CGAL/Polygon_mesh_processing/refine.h>
//#include <CGAL/Polygon_mesh_processing/fair.h>
#include <boost/graph/graph_traits.hpp>
#include <fstream>
#include <map>
using namespace std;
typedef CGAL::Exact_predicates_inexact_constructions_kernel Kernel;
typedef CGAL::Polyhedron_3<Kernel>  Polyhedron;
typedef Polyhedron::Vertex_handle   Vertex_handle;
typedef boost::graph_traits<Polyhedron>::edge_descriptor ED;
typedef boost::graph_traits<Polyhedron>::vertex_descriptor VD;
typedef Polyhedron::Halfedge    edge;
// extract vertices which are at most k (inclusive)
// far from vertex v in the graph of edges
void extract_k_ring(Vertex_handle v,
                    int k,
                    std::vector<Vertex_handle>& qv)
{
  std::map<Vertex_handle, int>  D;
  qv.push_back(v);
  D[v] = 0;
  std::size_t current_index = 0;
  int dist_v;
  while (current_index < qv.size() && (dist_v = D[qv[current_index]]) < k)
  {
    v = qv[current_index++];
    Polyhedron::Halfedge_around_vertex_circulator e(v->vertex_begin()), e_end(e);
    do {
      Vertex_handle new_v = e->opposite()->vertex();
      if (D.insert(std::make_pair(new_v, dist_v + 1)).second) {
        qv.push_back(new_v);
      }
    } while (++e != e_end);
  }
}

class RMap{
private:
    map<ED, bool> mymap;
public:
    bool get(ED& ed){
        return mymap[ed];
    }
    void put(ED ed, bool v){
        mymap[ed] = v;
    }
};

class VMap{
private:
    map<VD, bool> mymap;
public:
    bool get(VD& ed){
        return mymap[ed];
    }
    void put(VD ed, bool v){
        mymap[ed] = v;
    }
};

int main(int argc, char* argv[])
{
  const char* filename = (argc > 1) ? argv[1] : "data/OFF.off";
  std::ifstream input(filename);
  Polyhedron poly;
  if ( !input || !(input >> poly) || poly.empty() ) {
    std::cerr << "Not a valid off file." << std::endl;
    return 1;
  }
  std::vector<Polyhedron::Facet_handle>  new_facets;
  std::vector<Vertex_handle> new_vertices;
  
  RMap mymap;
  VMap imap;
  ED e1,e2;
  //auto it = poly.vertices_begin();
  //auto it = poly.halfedges_begin();
  //mymap.put(*it, true);
    auto a = add_edge(poly);
    mymap.put(a, true);
  //imap.put(a, true);
  //cout << *it << endl;
  

  CGAL::Polygon_mesh_processing::refine(poly,
                  faces(poly),
                  std::back_inserter(new_facets),
                  std::back_inserter(new_vertices),
                  CGAL::Polygon_mesh_processing::parameters::density_control_factor(100.).
                  protect_constraints(true).
                  edge_is_constrained_map(mymap));//.
                  //vertex_is_constrained_map(imap));
  std::ofstream refined_off("refined.off");
  refined_off << poly;
  refined_off.close();
  std::cout << "Refinement added " << new_vertices.size() << " vertices." << std::endl;
  Polyhedron::Vertex_iterator v = poly.vertices_begin();
  std::advance(v, 82);
  std::vector<Vertex_handle> region;
  extract_k_ring(v, 12, region);
  //bool success = CGAL::Polygon_mesh_processing::fair(poly, region);
  //std::cout << "Fairing : " << (success ? "succeeded" : "failed") << std::endl;
  //std::ofstream faired_off("faired.off");
  //faired_off << poly;
  //faired_off.close();
  return 0;
}



Archive powered by MHonArc 2.6.18.

Top of Page