Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authortamasmeszaros <meszaros.q@gmail.com>2020-04-13 13:31:37 +0300
committertamasmeszaros <meszaros.q@gmail.com>2020-04-23 20:05:32 +0300
commit247fca6d55318fbaa5c7424bf7605db7fb02e342 (patch)
tree828924c2f53b07b04260073ebee0c2928a0ba44b /tests
parent6eb51a1cca4d99385f8b1795d5fc1063424c1635 (diff)
Initial version of sl1 import with sla::Raster refactor.
Diffstat (limited to 'tests')
-rw-r--r--tests/libslic3r/CMakeLists.txt1
-rw-r--r--tests/libslic3r/test_marchingsquares.cpp342
-rw-r--r--tests/sla_print/sla_print_tests.cpp40
-rw-r--r--tests/sla_print/sla_test_utils.cpp39
-rw-r--r--tests/sla_print/sla_test_utils.hpp13
5 files changed, 397 insertions, 38 deletions
diff --git a/tests/libslic3r/CMakeLists.txt b/tests/libslic3r/CMakeLists.txt
index 2353414f9..b41dbf8ba 100644
--- a/tests/libslic3r/CMakeLists.txt
+++ b/tests/libslic3r/CMakeLists.txt
@@ -13,6 +13,7 @@ add_executable(${_TEST_NAME}_tests
test_stl.cpp
test_meshsimplify.cpp
test_meshboolean.cpp
+ test_marchingsquares.cpp
test_timeutils.cpp
)
diff --git a/tests/libslic3r/test_marchingsquares.cpp b/tests/libslic3r/test_marchingsquares.cpp
new file mode 100644
index 000000000..ce1c0e3ff
--- /dev/null
+++ b/tests/libslic3r/test_marchingsquares.cpp
@@ -0,0 +1,342 @@
+#include <catch2/catch.hpp>
+#include <test_utils.hpp>
+
+#include <fstream>
+
+#include <libslic3r/MarchingSquares.hpp>
+#include <libslic3r/SLA/RasterToPolygons.hpp>
+#include <libslic3r/SLA/AGGRaster.hpp>
+#include <libslic3r/MTUtils.hpp>
+#include <libslic3r/SVG.hpp>
+#include <libslic3r/ClipperUtils.hpp>
+
+#include <libslic3r/TriangulateWall.hpp>
+#include <libslic3r/Tesselate.hpp>
+#include <libslic3r/SlicesToTriangleMesh.hpp>
+#include <libslic3r/SLA/Contour3D.hpp>
+
+using namespace Slic3r;
+
+static Slic3r::sla::RasterGrayscaleAA create_raster(
+ const sla::RasterBase::Resolution &res,
+ double disp_w = 100.,
+ double disp_h = 100.)
+{
+ sla::RasterBase::PixelDim pixdim{disp_w / res.width_px, disp_h / res.height_px};
+
+ auto bb = BoundingBox({0, 0}, {scaled(disp_w), scaled(disp_h)});
+ sla::RasterBase::Trafo trafo;
+// trafo.center_x = bb.center().x();
+// trafo.center_y = bb.center().y();
+// trafo.center_x = scaled(pixdim.w_mm);
+// trafo.center_y = scaled(pixdim.h_mm);
+
+ return sla::RasterGrayscaleAA{res, pixdim, trafo, agg::gamma_threshold(.5)};
+}
+
+static ExPolygon square(double a, Point center = {0, 0})
+{
+ ExPolygon poly;
+ coord_t V = scaled(a / 2.);
+
+ poly.contour.points = {{-V, -V}, {V, -V}, {V, V}, {-V, V}};
+ poly.translate(center.x(), center.y());
+
+ return poly;
+}
+
+static ExPolygon square_with_hole(double a, Point center = {0, 0})
+{
+ ExPolygon poly = square(a);
+
+ poly.holes.emplace_back();
+ coord_t V = scaled(a / 4.);
+ poly.holes.front().points = {{-V, V}, {V, V}, {V, -V}, {-V, -V}};
+
+ poly.translate(center.x(), center.y());
+
+ return poly;
+}
+
+static ExPolygons circle_with_hole(double r, Point center = {0, 0}) {
+
+ ExPolygon poly;
+
+ std::vector<double> pis = linspace_vector(0., 2 * PI, 100);
+
+ coord_t rs = scaled(r);
+ for (double phi : pis) {
+ poly.contour.points.emplace_back(rs * std::cos(phi), rs * std::sin(phi));
+ }
+
+ poly.holes.emplace_back(poly.contour);
+ poly.holes.front().reverse();
+ for (auto &p : poly.holes.front().points) p /= 2;
+
+ poly.translate(center.x(), center.y());
+
+ return {poly};
+}
+
+template<class Rst>
+static void test_expolys(Rst && rst,
+ const ExPolygons & ref,
+ float accuracy,
+ const std::string &name = "test")
+{
+ for (const ExPolygon &expoly : ref) rst.draw(expoly);
+
+ std::fstream out(name + ".png", std::ios::out);
+ out << rst.encode(sla::PNGRasterEncoder{});
+ out.close();
+
+ ExPolygons extracted = sla::raster_to_polygons(rst, accuracy);
+
+ SVG svg(name + ".svg");
+ svg.draw(extracted);
+ svg.Close();
+
+ REQUIRE(extracted.size() == ref.size());
+ for (size_t i = 0; i < ref.size(); ++i) {
+ REQUIRE(extracted[i].contour.is_counter_clockwise());
+ REQUIRE(extracted[i].holes.size() == ref[i].holes.size());
+
+ for (auto &h : extracted[i].holes) REQUIRE(h.is_clockwise());
+
+ double refa = ref[i].area();
+ REQUIRE(std::abs(extracted[i].area() - refa) < 0.1 * refa);
+ }
+}
+
+TEST_CASE("Empty raster should result in empty polygons", "[MarchingSquares]") {
+ sla::RasterGrayscaleAAGammaPower rst{{}, {}, {}};
+ ExPolygons extracted = sla::raster_to_polygons(rst);
+ REQUIRE(extracted.size() == 0);
+}
+
+TEST_CASE("Marching squares directions", "[MarchingSquares]") {
+ marchsq::Coord crd{1, 1};
+
+ REQUIRE(step(crd, marchsq::__impl::Dir::left).r == 1);
+ REQUIRE(step(crd, marchsq::__impl::Dir::left).c == 0);
+
+ REQUIRE(step(crd, marchsq::__impl::Dir::down).r == 2);
+ REQUIRE(step(crd, marchsq::__impl::Dir::down).c == 1);
+
+ REQUIRE(step(crd, marchsq::__impl::Dir::right).r == 1);
+ REQUIRE(step(crd, marchsq::__impl::Dir::right).c == 2);
+
+ REQUIRE(step(crd, marchsq::__impl::Dir::up).r == 0);
+ REQUIRE(step(crd, marchsq::__impl::Dir::up).c == 1);
+}
+
+TEST_CASE("4x4 raster with one ring", "[MarchingSquares]") {
+
+ sla::RasterBase::PixelDim pixdim{1, 1};
+
+ // We need one additional row and column to detect edges
+ sla::RasterGrayscaleAA rst{{5, 5}, pixdim, {}, agg::gamma_threshold(.5)};
+
+ // Draw a triangle from individual pixels
+ rst.draw(square(1., {1500000, 1500000}));
+ rst.draw(square(1., {2500000, 1500000}));
+ rst.draw(square(1., {3500000, 1500000}));
+
+ rst.draw(square(1., {2500000, 2500000}));
+ rst.draw(square(1., {3500000, 2500000}));
+
+ rst.draw(square(1., {3500000, 3500000}));
+
+ std::fstream out("4x4.png", std::ios::out);
+ out << rst.encode(sla::PNGRasterEncoder{});
+ out.close();
+
+ ExPolygons extracted = sla::raster_to_polygons(rst);
+
+ SVG svg("4x4.svg");
+ svg.draw(extracted);
+ svg.Close();
+
+ REQUIRE(extracted.size() == 1);
+}
+
+TEST_CASE("4x4 raster with two rings", "[MarchingSquares]") {
+
+ sla::RasterBase::PixelDim pixdim{1, 1};
+
+ // We need one additional row and column to detect edges
+ sla::RasterGrayscaleAA rst{{5, 5}, pixdim, {}, agg::gamma_threshold(.5)};
+
+ SECTION("Ambiguous case with 'ac' square") {
+
+ // Draw a triangle from individual pixels
+ rst.draw(square(1., {3500000, 2500000}));
+ rst.draw(square(1., {3500000, 3500000}));
+ rst.draw(square(1., {2500000, 3500000}));
+
+ rst.draw(square(1., {2500000, 1500000}));
+ rst.draw(square(1., {1500000, 1500000}));
+ rst.draw(square(1., {1500000, 2500000}));
+
+ std::fstream out("4x4_ac.png", std::ios::out);
+ out << rst.encode(sla::PNGRasterEncoder{});
+ out.close();
+
+ ExPolygons extracted = sla::raster_to_polygons(rst);
+
+ SVG svg("4x4_ac.svg");
+ svg.draw(extracted);
+ svg.Close();
+
+ REQUIRE(extracted.size() == 2);
+ }
+
+ SECTION("Ambiguous case with 'bd' square") {
+
+ // Draw a triangle from individual pixels
+ rst.draw(square(1., {3500000, 1500000}));
+ rst.draw(square(1., {3500000, 2500000}));
+ rst.draw(square(1., {2500000, 1500000}));
+
+ rst.draw(square(1., {1500000, 2500000}));
+ rst.draw(square(1., {1500000, 3500000}));
+ rst.draw(square(1., {2500000, 3500000}));
+
+ std::fstream out("4x4_bd.png", std::ios::out);
+ out << rst.encode(sla::PNGRasterEncoder{});
+ out.close();
+
+ ExPolygons extracted = sla::raster_to_polygons(rst);
+
+ SVG svg("4x4_bd.svg");
+ svg.draw(extracted);
+ svg.Close();
+
+ REQUIRE(extracted.size() == 2);
+ }
+}
+
+TEST_CASE("Square with hole in the middle", "[MarchingSquares]") {
+ using namespace Slic3r;
+
+ ExPolygons inp = {square_with_hole(50.)};
+
+ SECTION("Proportional raster, 1x1 mm pixel size, full accuracy") {
+ test_expolys(create_raster({100, 100}, 100., 100.), inp, 1.f, "square_with_hole_proportional_1x1_mm_px_full");
+ }
+
+ SECTION("Proportional raster, 1x1 mm pixel size, half accuracy") {
+ test_expolys(create_raster({100, 100}, 100., 100.), inp, .5f, "square_with_hole_proportional_1x1_mm_px_half");
+ }
+
+ SECTION("Landscape raster, 1x1 mm pixel size, full accuracy") {
+ test_expolys(create_raster({150, 100}, 150., 100.), inp, 1.f, "square_with_hole_landsc_1x1_mm_px_full");
+ }
+
+ SECTION("Landscape raster, 1x1 mm pixel size, half accuracy") {
+ test_expolys(create_raster({150, 100}, 150., 100.), inp, .5f, "square_with_hole_landsc_1x1_mm_px_half");
+ }
+
+ SECTION("Portrait raster, 1x1 mm pixel size, full accuracy") {
+ test_expolys(create_raster({100, 150}, 100., 150.), inp, 1.f, "square_with_hole_portrait_1x1_mm_px_full");
+ }
+
+ SECTION("Portrait raster, 1x1 mm pixel size, half accuracy") {
+ test_expolys(create_raster({100, 150}, 100., 150.), inp, .5f, "square_with_hole_portrait_1x1_mm_px_half");
+ }
+
+ SECTION("Proportional raster, 2x2 mm pixel size, full accuracy") {
+ test_expolys(create_raster({200, 200}, 100., 100.), inp, 1.f, "square_with_hole_proportional_2x2_mm_px_full");
+ }
+
+ SECTION("Proportional raster, 2x2 mm pixel size, half accuracy") {
+ test_expolys(create_raster({200, 200}, 100., 100.), inp, .5f, "square_with_hole_proportional_2x2_mm_px_half");
+ }
+
+ SECTION("Proportional raster, 0.5x0.5 mm pixel size, full accuracy") {
+ test_expolys(create_raster({50, 50}, 100., 100.), inp, 1.f, "square_with_hole_proportional_0.5x0.5_mm_px_full");
+ }
+
+ SECTION("Proportional raster, 0.5x0.5 mm pixel size, half accuracy") {
+ test_expolys(create_raster({50, 50}, 100., 100.), inp, .5f, "square_with_hole_proportional_0.5x0.5_mm_px_half");
+ }
+}
+
+TEST_CASE("Circle with hole in the middle", "[MarchingSquares]") {
+ using namespace Slic3r;
+
+ test_expolys(create_raster({100, 100}), circle_with_hole(25.), 1.f, "circle_with_hole");
+}
+
+static void recreate_object_from_slices(const std::string &objname, float lh) {
+ TriangleMesh mesh = load_model(objname);
+ mesh.require_shared_vertices();
+
+ auto bb = mesh.bounding_box();
+ std::vector<ExPolygons> layers;
+ slice_mesh(mesh, grid(float(bb.min.z()), float(bb.max.z()), lh), layers, 0.f, []{});
+
+ TriangleMesh out = slices_to_triangle_mesh(layers, bb.min.z(), double(lh), double(lh));
+
+ out.require_shared_vertices();
+ out.WriteOBJFile("out_from_slices.obj");
+}
+
+static void recreate_object_from_rasters(const std::string &objname, float lh) {
+ TriangleMesh mesh = load_model(objname);
+
+ auto bb = mesh.bounding_box();
+// Vec3f tr = -bb.center().cast<float>();
+// mesh.translate(tr.x(), tr.y(), tr.z());
+// bb = mesh.bounding_box();
+
+ std::vector<ExPolygons> layers;
+ slice_mesh(mesh, grid(float(bb.min.z()) + lh, float(bb.max.z()), lh), layers, 0.f, []{});
+
+ sla::RasterBase::Resolution res{2560, 1440};
+ double disp_w = 120.96;
+ double disp_h = 68.04;
+
+ size_t cntr = 0;
+ for (ExPolygons &layer : layers) {
+ auto rst = create_raster(res, disp_w, disp_h);
+
+ for (ExPolygon &island : layer) {
+ rst.draw(island);
+ }
+
+ std::fstream out(objname + std::to_string(cntr) + ".png", std::ios::out);
+ out << rst.encode(sla::PNGRasterEncoder{});
+ out.close();
+
+ ExPolygons layer_ = sla::raster_to_polygons(rst);
+// float delta = scaled(std::min(rst.pixel_dimensions().h_mm,
+// rst.pixel_dimensions().w_mm));
+
+// layer_ = expolygons_simplify(layer_, delta);
+
+ SVG svg(objname + std::to_string(cntr) + ".svg", BoundingBox(Point{0, 0}, Point{scaled(disp_w), scaled(disp_h)}));
+ svg.draw(layer_);
+ svg.draw(layer, "green");
+ svg.Close();
+
+ double layera = 0., layera_ = 0.;
+ for (auto &p : layer) layera += p.area();
+ for (auto &p : layer_) layera_ += p.area();
+
+ std::cout << cntr++ << std::endl;
+ double diff = std::abs(layera_ - layera);
+ REQUIRE((diff <= 0.1 * layera || diff < scaled<double>(1.) * scaled<double>(1.)));
+
+ layer = std::move(layer_);
+ }
+
+ TriangleMesh out = slices_to_triangle_mesh(layers, bb.min.z(), double(lh), double(lh));
+
+ out.require_shared_vertices();
+ out.WriteOBJFile("out_from_rasters.obj");
+}
+
+TEST_CASE("Recreate object from rasters", "[SL1Import]") {
+ recreate_object_from_rasters("triang.obj", 0.05f);
+}
diff --git a/tests/sla_print/sla_print_tests.cpp b/tests/sla_print/sla_print_tests.cpp
index 10f5742d3..82df2c1a6 100644
--- a/tests/sla_print/sla_print_tests.cpp
+++ b/tests/sla_print/sla_print_tests.cpp
@@ -154,19 +154,12 @@ TEST_CASE("FloorSupportsDoNotPierceModel", "[SLASupportGeneration]") {
test_support_model_collision(fname, supportcfg);
}
-TEST_CASE("DefaultRasterShouldBeEmpty", "[SLARasterOutput]") {
- sla::Raster raster;
- REQUIRE(raster.empty());
-}
-
TEST_CASE("InitializedRasterShouldBeNONEmpty", "[SLARasterOutput]") {
// Default Prusa SL1 display parameters
- sla::Raster::Resolution res{2560, 1440};
- sla::Raster::PixelDim pixdim{120. / res.width_px, 68. / res.height_px};
+ sla::RasterBase::Resolution res{2560, 1440};
+ sla::RasterBase::PixelDim pixdim{120. / res.width_px, 68. / res.height_px};
- sla::Raster raster;
- raster.reset(res, pixdim);
- REQUIRE_FALSE(raster.empty());
+ sla::RasterGrayscaleAAGammaPower raster(res, pixdim, {}, 1.);
REQUIRE(raster.resolution().width_px == res.width_px);
REQUIRE(raster.resolution().height_px == res.height_px);
REQUIRE(raster.pixel_dimensions().w_mm == Approx(pixdim.w_mm));
@@ -174,13 +167,14 @@ TEST_CASE("InitializedRasterShouldBeNONEmpty", "[SLARasterOutput]") {
}
TEST_CASE("MirroringShouldBeCorrect", "[SLARasterOutput]") {
- sla::Raster::TMirroring mirrorings[] = {sla::Raster::NoMirror,
- sla::Raster::MirrorX,
- sla::Raster::MirrorY,
- sla::Raster::MirrorXY};
+ sla::RasterBase::TMirroring mirrorings[] = {sla::RasterBase::NoMirror,
+ sla::RasterBase::MirrorX,
+ sla::RasterBase::MirrorY,
+ sla::RasterBase::MirrorXY};
+
+ sla::RasterBase::Orientation orientations[] =
+ {sla::RasterBase::roLandscape, sla::RasterBase::roPortrait};
- sla::Raster::Orientation orientations[] = {sla::Raster::roLandscape,
- sla::Raster::roPortrait};
for (auto orientation : orientations)
for (auto &mirror : mirrorings)
check_raster_transformations(orientation, mirror);
@@ -189,10 +183,11 @@ TEST_CASE("MirroringShouldBeCorrect", "[SLARasterOutput]") {
TEST_CASE("RasterizedPolygonAreaShouldMatch", "[SLARasterOutput]") {
double disp_w = 120., disp_h = 68.;
- sla::Raster::Resolution res{2560, 1440};
- sla::Raster::PixelDim pixdim{disp_w / res.width_px, disp_h / res.height_px};
+ sla::RasterBase::Resolution res{2560, 1440};
+ sla::RasterBase::PixelDim pixdim{disp_w / res.width_px, disp_h / res.height_px};
- sla::Raster raster{res, pixdim};
+ double gamma = 1.;
+ sla::RasterGrayscaleAAGammaPower raster(res, pixdim, {}, gamma);
auto bb = BoundingBox({0, 0}, {scaled(disp_w), scaled(disp_h)});
ExPolygon poly = square_with_hole(10.);
@@ -215,6 +210,13 @@ TEST_CASE("RasterizedPolygonAreaShouldMatch", "[SLARasterOutput]") {
diff = std::abs(a - ra);
REQUIRE(diff <= predict_error(poly, pixdim));
+
+ sla::RasterGrayscaleAA raster0(res, pixdim, {}, [](double) { return 0.; });
+ REQUIRE(raster_pxsum(raster0) == 0);
+
+ raster0.draw(poly);
+ ra = raster_white_area(raster);
+ REQUIRE(raster_pxsum(raster0) == 0);
}
TEST_CASE("Triangle mesh conversions should be correct", "[SLAConversions]")
diff --git a/tests/sla_print/sla_test_utils.cpp b/tests/sla_print/sla_test_utils.cpp
index a844b2eae..883e4268a 100644
--- a/tests/sla_print/sla_test_utils.cpp
+++ b/tests/sla_print/sla_test_utils.cpp
@@ -1,4 +1,5 @@
#include "sla_test_utils.hpp"
+#include "libslic3r/SLA/AGGRaster.hpp"
void test_support_model_collision(const std::string &obj_filename,
const sla::SupportConfig &input_supportcfg,
@@ -293,18 +294,19 @@ void check_validity(const TriangleMesh &input_mesh, int flags)
}
}
-void check_raster_transformations(sla::Raster::Orientation o, sla::Raster::TMirroring mirroring)
+void check_raster_transformations(sla::RasterBase::Orientation o, sla::RasterBase::TMirroring mirroring)
{
double disp_w = 120., disp_h = 68.;
- sla::Raster::Resolution res{2560, 1440};
- sla::Raster::PixelDim pixdim{disp_w / res.width_px, disp_h / res.height_px};
+ sla::RasterBase::Resolution res{2560, 1440};
+ sla::RasterBase::PixelDim pixdim{disp_w / res.width_px, disp_h / res.height_px};
auto bb = BoundingBox({0, 0}, {scaled(disp_w), scaled(disp_h)});
- sla::Raster::Trafo trafo{o, mirroring};
- trafo.origin_x = bb.center().x();
- trafo.origin_y = bb.center().y();
+ sla::RasterBase::Trafo trafo{o, mirroring};
+ trafo.center_x = bb.center().x();
+ trafo.center_y = bb.center().y();
+ double gamma = 1.;
- sla::Raster raster{res, pixdim, trafo};
+ sla::RasterGrayscaleAAGammaPower raster{res, pixdim, trafo, gamma};
// create box of size 32x32 pixels (not 1x1 to avoid antialiasing errors)
coord_t pw = 32 * coord_t(std::ceil(scaled<double>(pixdim.w_mm)));
@@ -319,7 +321,7 @@ void check_raster_transformations(sla::Raster::Orientation o, sla::Raster::TMirr
// Now calculate the position of the translated box according to output
// trafo.
- if (o == sla::Raster::Orientation::roPortrait) expected_box.rotate(PI / 2.);
+ if (o == sla::RasterBase::Orientation::roPortrait) expected_box.rotate(PI / 2.);
if (mirroring[X])
for (auto &p : expected_box.contour.points) p.x() = -p.x();
@@ -340,10 +342,9 @@ void check_raster_transformations(sla::Raster::Orientation o, sla::Raster::TMirr
auto px = raster.read_pixel(w, h);
if (px != FullWhite) {
- sla::PNGImage img;
std::fstream outf("out.png", std::ios::out);
- outf << img.serialize(raster);
+ outf << raster.encode(sla::PNGRasterEncoder());
}
REQUIRE(px == FullWhite);
@@ -361,9 +362,21 @@ ExPolygon square_with_hole(double v)
return poly;
}
-double raster_white_area(const sla::Raster &raster)
+long raster_pxsum(const sla::RasterGrayscaleAA &raster)
{
- if (raster.empty()) return std::nan("");
+ auto res = raster.resolution();
+ long a = 0;
+
+ for (size_t x = 0; x < res.width_px; ++x)
+ for (size_t y = 0; y < res.height_px; ++y)
+ a += raster.read_pixel(x, y);
+
+ return a;
+}
+
+double raster_white_area(const sla::RasterGrayscaleAA &raster)
+{
+ if (raster.resolution().pixels() == 0) return std::nan("");
auto res = raster.resolution();
double a = 0;
@@ -377,7 +390,7 @@ double raster_white_area(const sla::Raster &raster)
return a;
}
-double predict_error(const ExPolygon &p, const sla::Raster::PixelDim &pd)
+double predict_error(const ExPolygon &p, const sla::RasterBase::PixelDim &pd)
{
auto lines = p.lines();
double pix_err = pixel_area(FullWhite, pd) / 2.;
diff --git a/tests/sla_print/sla_test_utils.hpp b/tests/sla_print/sla_test_utils.hpp
index f3727bd39..3652b1f81 100644
--- a/tests/sla_print/sla_test_utils.hpp
+++ b/tests/sla_print/sla_test_utils.hpp
@@ -16,7 +16,7 @@
#include "libslic3r/SLA/SupportTreeBuilder.hpp"
#include "libslic3r/SLA/SupportTreeBuildsteps.hpp"
#include "libslic3r/SLA/SupportPointGenerator.hpp"
-#include "libslic3r/SLA/Raster.hpp"
+#include "libslic3r/SLA/AGGRaster.hpp"
#include "libslic3r/SLA/ConcaveHull.hpp"
#include "libslic3r/MTUtils.hpp"
@@ -170,18 +170,19 @@ static constexpr const TPixel FullBlack = 0;
template <class A, int N> constexpr int arraysize(const A (&)[N]) { return N; }
-void check_raster_transformations(sla::Raster::Orientation o,
- sla::Raster::TMirroring mirroring);
+void check_raster_transformations(sla::RasterBase::Orientation o,
+ sla::RasterBase::TMirroring mirroring);
ExPolygon square_with_hole(double v);
-inline double pixel_area(TPixel px, const sla::Raster::PixelDim &pxdim)
+inline double pixel_area(TPixel px, const sla::RasterBase::PixelDim &pxdim)
{
return (pxdim.h_mm * pxdim.w_mm) * px * 1. / (FullWhite - FullBlack);
}
-double raster_white_area(const sla::Raster &raster);
+double raster_white_area(const sla::RasterGrayscaleAA &raster);
+long raster_pxsum(const sla::RasterGrayscaleAA &raster);
-double predict_error(const ExPolygon &p, const sla::Raster::PixelDim &pd);
+double predict_error(const ExPolygon &p, const sla::RasterBase::PixelDim &pd);
#endif // SLA_TEST_UTILS_HPP