1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
|
// Copyright (c) 2020 GeometryFactory SARL (France).
// All rights reserved.
//
// This file is part of CGAL (www.cgal.org).
//
// $URL: https://github.com/CGAL/cgal/blob/v6.1.1/Shape_regularization/include/CGAL/Shape_regularization/internal/Unique_segments_2.h $
// $Id: include/CGAL/Shape_regularization/internal/Unique_segments_2.h 08b27d3db14 $
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial
//
//
// Author(s) : Dmitry Anisimov, Gennadii Sytov
//
#ifndef CGAL_SHAPE_REGULARIZATION_UNIQUE_SEGMENTS_2_H
#define CGAL_SHAPE_REGULARIZATION_UNIQUE_SEGMENTS_2_H
#include <CGAL/license/Shape_regularization.h>
// Boost includes.
#include <CGAL/boost/graph/named_params_helper.h>
#include <CGAL/Named_function_parameters.h>
// Internal includes.
#include <CGAL/Shape_regularization/internal/utils.h>
#include <CGAL/Shape_regularization/internal/Collinear_groups_2.h>
namespace CGAL {
namespace Shape_regularization {
namespace internal {
template<
typename GeomTraits,
typename InputRange,
typename SegmentMap>
class Unique_segments_2 {
public:
using Traits = GeomTraits;
using Input_range = InputRange;
using Segment_map = SegmentMap;
using FT = typename Traits::FT;
using Line_2 = typename Traits::Line_2;
using Point_2 = typename Traits::Point_2;
using Vector_2 = typename Traits::Vector_2;
using Segment_2 = typename Traits::Segment_2;
using Indices = std::vector<std::size_t>;
using CGroups_2 = Collinear_groups_2<Traits, Input_range, Segment_map>;
template<typename NamedParameters>
Unique_segments_2(
const InputRange& input_range,
const NamedParameters& np,
const SegmentMap segment_map,
const GeomTraits&) :
m_input_range(input_range),
m_segment_map(segment_map),
m_grouping(
input_range, np, segment_map, GeomTraits()) {
make_unique_segments();
}
template<typename OutputIterator>
OutputIterator segments(OutputIterator segments) const {
for (const auto& segment : m_segments) {
*(segments++) = segment;
}
return segments;
}
private:
const Input_range& m_input_range;
const Segment_map m_segment_map;
const CGroups_2 m_grouping;
std::vector<Segment_2> m_segments;
void make_unique_segments() {
std::vector<Indices> collinear_groups;
m_grouping.groups(
std::back_inserter(collinear_groups));
m_segments.reserve(collinear_groups.size());
for (const auto& collinear_group : collinear_groups) {
handle_collinear_group(collinear_group);
}
CGAL_assertion(m_segments.size() == collinear_groups.size());
}
void handle_collinear_group(
const Indices& collinear_group) {
CGAL_assertion(collinear_group.size() > 0);
if (collinear_group.size() == 1) {
const std::size_t seg_index = collinear_group[0];
CGAL_assertion(seg_index < m_input_range.size());
const auto& first = get(m_segment_map,
*(m_input_range.begin() + seg_index));
m_segments.push_back(first);
return;
}
m_segments.push_back(
find_weighted_segment(collinear_group));
}
Segment_2 find_weighted_segment(
const std::vector<std::size_t>& collinear_group) const {
std::vector<FT> weights;
compute_distance_weights(collinear_group, weights);
const std::size_t longest =
find_longest_segment(collinear_group);
CGAL_assertion(longest < m_input_range.size());
const auto& ref_segment = get(m_segment_map,
*(m_input_range.begin() + longest));
Segment_2 weighted = compute_weighted_segment(
collinear_group, weights, ref_segment);
if (weighted.source() == weighted.target()) {
weighted = ref_segment;
}
const Vector_2 ref_vector = weighted.to_vector();
const Line_2 ref_line = Line_2(weighted.source(), weighted.target());
Point_2 source, target;
compute_boundary_points(
collinear_group, ref_vector, source, target);
if (source != target) {
source = ref_line.projection(source);
target = ref_line.projection(target);
weighted = Segment_2(source, target);
}
return weighted;
}
void compute_distance_weights(
const std::vector<std::size_t>& collinear_group,
std::vector<FT>& weights) const {
CGAL_assertion(
collinear_group.size() > 0);
weights.clear();
weights.reserve(collinear_group.size());
FT sum_distance = FT(0);
for (const std::size_t seg_index : collinear_group) {
CGAL_assertion(seg_index < m_input_range.size());
const auto& segment = get(m_segment_map,
*(m_input_range.begin() + seg_index));
const FT sq_distance = segment.squared_length();
sum_distance += sq_distance;
weights.push_back(sq_distance);
}
CGAL_assertion(sum_distance > FT(0));
for (auto& weight : weights) {
weight /= sum_distance;
}
CGAL_assertion(
weights.size() == collinear_group.size());
}
std::size_t find_longest_segment(
const Indices& collinear_group) const {
FT max_length = -FT(1);
std::size_t longest = std::size_t(-1);
for (const std::size_t seg_index : collinear_group) {
CGAL_assertion(seg_index < m_input_range.size());
const auto& segment = get(m_segment_map,
*(m_input_range.begin() + seg_index));
const FT length = segment.squared_length();
if (length > max_length) {
longest = seg_index; max_length = length;
}
}
CGAL_assertion(longest != std::size_t(-1));
return longest;
}
Segment_2 compute_weighted_segment(
const Indices& collinear_group,
const std::vector<FT>& weights,
const Segment_2& ref_segment) const {
const auto& sref = ref_segment.source();
const auto& tref = ref_segment.target();
const auto center = CGAL::midpoint(sref, tref);
CGAL_assertion(
weights.size() == collinear_group.size());
Vector_2 dir = Vector_2(FT(0), FT(0));
for (std::size_t i = 0; i < weights.size(); ++i) {
const FT weight = weights[i];
const std::size_t seg_index = collinear_group[i];
CGAL_assertion(seg_index < m_input_range.size());
const auto& segment = get(m_segment_map,
*(m_input_range.begin() + seg_index));
const Line_2 line = Line_2(
segment.source(), segment.target());
const Point_2 proj = line.projection(center);
const Vector_2 v = Vector_2(center, proj);
dir += v * weight;
}
const Point_2 source = sref + dir;
const Point_2 target = tref + dir;
return Segment_2(source, target);
}
void compute_boundary_points(
const std::vector<std::size_t>& collinear_group,
const Vector_2& ref_vector,
Point_2& p, Point_2& q) const {
const FT max_value = internal::max_value<FT>();
FT min_proj_value = max_value;
FT max_proj_value = -max_value;
CGAL_assertion(collinear_group.size() > 0);
CGAL_assertion(collinear_group[0] < m_input_range.size());
const auto& first = get(m_segment_map,
*(m_input_range.begin() + collinear_group[0]));
const Point_2& ref_point = first.source();
for (const std::size_t seg_index : collinear_group) {
CGAL_assertion(seg_index < m_input_range.size());
const auto& segment = get(m_segment_map,
*(m_input_range.begin() + seg_index));
const auto& source = segment.source();
const auto& target = segment.target();
recompute_end_points(
source, ref_point, ref_vector,
min_proj_value, max_proj_value, p, q);
recompute_end_points(
target, ref_point, ref_vector,
min_proj_value, max_proj_value, p, q);
}
}
void recompute_end_points(
const Point_2& query,
const Point_2& ref_point,
const Vector_2& ref_vector,
FT& min_proj_value,
FT& max_proj_value,
Point_2& p,
Point_2& q) const {
const Vector_2 curr_vector(ref_point, query);
const FT value = CGAL::scalar_product(curr_vector, ref_vector);
if (value < min_proj_value) {
min_proj_value = value;
p = query;
}
if (value > max_proj_value) {
max_proj_value = value;
q = query;
}
}
};
} // namespace internal
} // namespace Shape_regularization
} // namespace CGAL
#endif // CGAL_SHAPE_REGULARIZATION_UNIQUE_SEGMENTS_2_H
|