2 * This program is free software: you can redistribute it and/or modify
3 * it under the terms of the GNU Lesser General Public License as
4 * published by the Free Software Foundation, either version 3 of the
5 * License, or (at your option) any later version.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 * @file NeighborhoodConfigurations.ih
20 * @author Pablo Hernandez-Cerdan. Institute of Fundamental Sciences.
21 * Massey University. Palmerston North, New Zealand
25 * Implementation of header NeighborhoodConfigurations.h
27 * This file is part of the DGtal library.
31 #include "DGtal/kernel/SpaceND.h"
32 #include "DGtal/kernel/domains/HyperRectDomain.h"
33 // zlib + boost for reading compressed tables
34 #include <boost/iostreams/filtering_streambuf.hpp>
35 #include <boost/iostreams/copy.hpp>
36 #include <boost/iostreams/filter/zlib.hpp>
39 /*---------------------------------------------------------------------*/
41 DGtal::CountedPtr< boost::dynamic_bitset<> >
42 loadTable(const std::string &input_filename,
43 const unsigned int known_size,
44 const bool compressed)
46 using ConfigMap = boost::dynamic_bitset<> ;
47 CountedPtr<ConfigMap> table(new ConfigMap(known_size));
50 std::ifstream in_file(input_filename, std::ios::binary);
51 namespace io = boost::iostreams ;
52 io::filtering_streambuf<io::input> filter;
53 filter.push(io::zlib_decompressor());
55 std::stringstream compressed_stream;
56 io::copy(filter,compressed_stream);
57 compressed_stream >> *table ;
59 std::ifstream in_file(input_filename);
62 } catch(std::exception &e) {
63 throw std::runtime_error("loadTable error in: " + input_filename + " with exception: " + e.what());
69 template<unsigned int N>
71 DGtal::CountedPtr< boost::dynamic_bitset<> >
72 loadTable(const std::string &input_filename, const bool compressed)
74 if (N == 3) // Default
75 return loadTable(input_filename, 67108864, compressed);
77 return loadTable(input_filename, 256, compressed);
78 throw std::domain_error("loadTable<N> error, template parameter N = "
79 + std::to_string(N) + " is invalid (use N = 2 or N = 3)");
83 /*---------------------------------------------------------------------*/
85 template<typename TPoint>
88 std::unordered_map<TPoint, NeighborhoodConfiguration > >
89 mapZeroPointNeighborhoodToConfigurationMask()
91 using Map = std::unordered_map<TPoint, NeighborhoodConfiguration> ;
92 NeighborhoodConfiguration mask = 1 ;
93 CountedPtr<Map> mapPtr(new Map);
95 auto p1 = TPoint::diagonal(-1);
96 auto p2 = TPoint::diagonal(1);
97 auto center = TPoint::diagonal(0);
98 // HyperRect Domain with lexicograpicOrder ensures same order.
99 using Space = SpaceND< TPoint::dimension , DGtal::int32_t>;
100 using Domain = HyperRectDomain< Space >;
101 const Domain domain(p1, p2);
102 for ( auto it = domain.begin(), itE = domain.end() ;
105 if (*it == center ) continue;
113 } // namespace functions