/** BSD 3-Clause License This file is part of the Basalt project. https://gitlab.com/VladyslavUsenko/basalt-headers.git Copyright (c) 2019, Vladyslav Usenko and Nikolaus Demmel. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. @file @brief Image datatype with views, interpolation, gradients */ // This file is adapted from Pangolin. Original license: /* This file is part of the Pangolin Project. * http://github.com/stevenlovegrove/Pangolin * * Copyright (c) 2011 Steven Lovegrove * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without * restriction, including without limitation the rights to use, * copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following * conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. */ #pragma once #include #include #include // Renamed Pangoling defines to avoid clash #define BASALT_HOST_DEVICE #define BASALT_EXTENSION_IMAGE #ifdef BASALT_ENABLE_BOUNDS_CHECKS #define BASALT_BOUNDS_ASSERT(...) BASALT_ASSERT(##__VA_ARGS__) #else #define BASALT_BOUNDS_ASSERT(...) ((void)0) #endif namespace basalt { /// @brief Helper class for copying objects. template struct CopyObject { CopyObject(const T& obj) : obj(obj) {} const T& obj; }; inline void PitchedCopy(char* dst, unsigned int dst_pitch_bytes, const char* src, unsigned int src_pitch_bytes, unsigned int width_bytes, unsigned int height) { if (dst_pitch_bytes == width_bytes && src_pitch_bytes == width_bytes) { std::memcpy(dst, src, height * width_bytes); } else { for (unsigned int row = 0; row < height; ++row) { std::memcpy(dst, src, width_bytes); dst += dst_pitch_bytes; src += src_pitch_bytes; } } } /// @brief Image class that supports sub-images, interpolation, element access. template struct Image { using PixelType = T; inline Image() : pitch(0), ptr(0), w(0), h(0) {} inline Image(T* ptr, size_t w, size_t h, size_t pitch) : pitch(pitch), ptr(ptr), w(w), h(h) {} BASALT_HOST_DEVICE inline size_t SizeBytes() const { return pitch * h; } BASALT_HOST_DEVICE inline size_t Area() const { return w * h; } BASALT_HOST_DEVICE inline bool IsValid() const { return ptr != 0; } BASALT_HOST_DEVICE inline bool IsContiguous() const { return w * sizeof(T) == pitch; } ////////////////////////////////////////////////////// // Iterators ////////////////////////////////////////////////////// BASALT_HOST_DEVICE inline T* begin() { return ptr; } BASALT_HOST_DEVICE inline T* end() { return RowPtr(h - 1) + w; } BASALT_HOST_DEVICE inline const T* begin() const { return ptr; } BASALT_HOST_DEVICE inline const T* end() const { return RowPtr(h - 1) + w; } BASALT_HOST_DEVICE inline size_t size() const { return w * h; } ////////////////////////////////////////////////////// // Image transforms ////////////////////////////////////////////////////// template BASALT_HOST_DEVICE inline void Transform(UnaryOperation unary_op) { BASALT_ASSERT(IsValid()); for (size_t y = 0; y < h; ++y) { T* el = RowPtr(y); const T* el_end = el + w; for (; el != el_end; ++el) { *el = unary_op(*el); } } } BASALT_HOST_DEVICE inline void Fill(const T& val) { Transform([&](const T&) { return val; }); } BASALT_HOST_DEVICE inline void Replace(const T& oldval, const T& newval) { Transform([&](const T& val) { return (val == oldval) ? newval : val; }); } inline void Memset(unsigned char v = 0) { BASALT_ASSERT(IsValid()); if (IsContiguous()) { std::memset((char*)ptr, v, pitch * h); } else { for (size_t y = 0; y < h; ++y) { std::memset((char*)RowPtr(y), v, pitch); } } } inline void CopyFrom(const Image& img) { if (IsValid() && img.IsValid()) { BASALT_ASSERT(w >= img.w && h >= img.h); PitchedCopy((char*)ptr, pitch, (char*)img.ptr, img.pitch, std::min(img.w, w) * sizeof(T), std::min(img.h, h)); } else if (img.IsValid() != IsValid()) { BASALT_ASSERT(false && "Cannot copy from / to an unasigned image."); } } ////////////////////////////////////////////////////// // Reductions ////////////////////////////////////////////////////// template BASALT_HOST_DEVICE inline T Accumulate(const T init, BinaryOperation binary_op) { BASALT_ASSERT(IsValid()); T val = init; for (size_t y = 0; y < h; ++y) { T* el = RowPtr(y); const T* el_end = el + w; for (; el != el_end; ++el) { val = binary_op(val, *el); } } return val; } std::pair MinMax() const { BASALT_ASSERT(IsValid()); std::pair minmax(std::numeric_limits::max(), std::numeric_limits::lowest()); for (size_t r = 0; r < h; ++r) { const T* ptr = RowPtr(r); const T* end = ptr + w; while (ptr != end) { minmax.first = std::min(*ptr, minmax.first); minmax.second = std::max(*ptr, minmax.second); ++ptr; } } return minmax; } template Tout Sum() const { return Accumulate((T)0, [](const T& lhs, const T& rhs) { return lhs + rhs; }); } template Tout Mean() const { return Sum() / Area(); } ////////////////////////////////////////////////////// // Direct Pixel Access ////////////////////////////////////////////////////// BASALT_HOST_DEVICE inline T* RowPtr(size_t y) { return (T*)((unsigned char*)(ptr) + y * pitch); } BASALT_HOST_DEVICE inline const T* RowPtr(size_t y) const { return (T*)((unsigned char*)(ptr) + y * pitch); } BASALT_HOST_DEVICE inline T& operator()(size_t x, size_t y) { BASALT_BOUNDS_ASSERT(InBounds(x, y)); return RowPtr(y)[x]; } BASALT_HOST_DEVICE inline const T& operator()(size_t x, size_t y) const { BASALT_BOUNDS_ASSERT(InBounds(x, y)); return RowPtr(y)[x]; } template BASALT_HOST_DEVICE inline T& operator()(const TVec& p) { BASALT_BOUNDS_ASSERT(InBounds(p[0], p[1])); return RowPtr(p[1])[p[0]]; } template BASALT_HOST_DEVICE inline const T& operator()(const TVec& p) const { BASALT_BOUNDS_ASSERT(InBounds(p[0], p[1])); return RowPtr(p[1])[p[0]]; } BASALT_HOST_DEVICE inline T& operator[](size_t ix) { BASALT_BOUNDS_ASSERT(InImage(ptr + ix)); return ptr[ix]; } BASALT_HOST_DEVICE inline const T& operator[](size_t ix) const { BASALT_BOUNDS_ASSERT(InImage(ptr + ix)); return ptr[ix]; } ////////////////////////////////////////////////////// // Interpolated Pixel Access ////////////////////////////////////////////////////// template inline S interp(const Eigen::Matrix& p) const { return interp(p[0], p[1]); } template inline Eigen::Matrix interpGrad( const Eigen::Matrix& p) const { return interpGrad(p[0], p[1]); } template inline S interp(S x, S y) const { static_assert(std::is_floating_point_v, "interpolation / gradient only makes sense " "for floating point result type"); int ix = x; int iy = y; S dx = x - ix; S dy = y - iy; S ddx = S(1.0) - dx; S ddy = S(1.0) - dy; return ddx * ddy * (*this)(ix, iy) + ddx * dy * (*this)(ix, iy + 1) + dx * ddy * (*this)(ix + 1, iy) + dx * dy * (*this)(ix + 1, iy + 1); } template inline Eigen::Matrix interpGrad(S x, S y) const { static_assert(std::is_floating_point_v, "interpolation / gradient only makes sense " "for floating point result type"); int ix = x; int iy = y; S dx = x - ix; S dy = y - iy; S ddx = S(1.0) - dx; S ddy = S(1.0) - dy; Eigen::Matrix res; const T& px0y0 = (*this)(ix, iy); const T& px1y0 = (*this)(ix + 1, iy); const T& px0y1 = (*this)(ix, iy + 1); const T& px1y1 = (*this)(ix + 1, iy + 1); res[0] = ddx * ddy * px0y0 + ddx * dy * px0y1 + dx * ddy * px1y0 + dx * dy * px1y1; const T& pxm1y0 = (*this)(ix - 1, iy); const T& pxm1y1 = (*this)(ix - 1, iy + 1); S res_mx = ddx * ddy * pxm1y0 + ddx * dy * pxm1y1 + dx * ddy * px0y0 + dx * dy * px0y1; const T& px2y0 = (*this)(ix + 2, iy); const T& px2y1 = (*this)(ix + 2, iy + 1); S res_px = ddx * ddy * px1y0 + ddx * dy * px1y1 + dx * ddy * px2y0 + dx * dy * px2y1; res[1] = S(0.5) * (res_px - res_mx); const T& px0ym1 = (*this)(ix, iy - 1); const T& px1ym1 = (*this)(ix + 1, iy - 1); S res_my = ddx * ddy * px0ym1 + ddx * dy * px0y0 + dx * ddy * px1ym1 + dx * dy * px1y0; const T& px0y2 = (*this)(ix, iy + 2); const T& px1y2 = (*this)(ix + 1, iy + 2); S res_py = ddx * ddy * px0y1 + ddx * dy * px0y2 + dx * ddy * px1y1 + dx * dy * px1y2; res[2] = S(0.5) * (res_py - res_my); return res; } ////////////////////////////////////////////////////// // Bounds Checking ////////////////////////////////////////////////////// BASALT_HOST_DEVICE bool InImage(const T* ptest) const { return ptr <= ptest && ptest < RowPtr(h); } BASALT_HOST_DEVICE inline bool InBounds(int x, int y) const { return 0 <= x && x < (int)w && 0 <= y && y < (int)h; } BASALT_HOST_DEVICE inline bool InBounds(float x, float y, float border) const { return border <= x && x < (w - border - 1) && border <= y && y < (h - border - 1); } template BASALT_HOST_DEVICE inline bool InBounds( const Eigen::MatrixBase& p, const typename Derived::Scalar border) const { EIGEN_STATIC_ASSERT_VECTOR_SPECIFIC_SIZE(Derived, 2); using Scalar = typename Derived::Scalar; Scalar offset(0); if constexpr (std::is_floating_point_v) { offset = Scalar(1); } return border <= p[0] && p[0] < ((int)w - border - offset) && border <= p[1] && p[1] < ((int)h - border - offset); } ////////////////////////////////////////////////////// // Obtain slices / subimages ////////////////////////////////////////////////////// BASALT_HOST_DEVICE inline const Image SubImage(size_t x, size_t y, size_t width, size_t height) const { BASALT_ASSERT((x + width) <= w && (y + height) <= h); return Image(RowPtr(y) + x, width, height, pitch); } BASALT_HOST_DEVICE inline Image SubImage(size_t x, size_t y, size_t width, size_t height) { BASALT_ASSERT((x + width) <= w && (y + height) <= h); return Image(RowPtr(y) + x, width, height, pitch); } BASALT_HOST_DEVICE inline Image Row(int y) const { return SubImage(0, y, w, 1); } BASALT_HOST_DEVICE inline Image Col(int x) const { return SubImage(x, 0, 1, h); } ////////////////////////////////////////////////////// // Data mangling ////////////////////////////////////////////////////// template BASALT_HOST_DEVICE inline Image Reinterpret() const { BASALT_ASSERT_STREAM(sizeof(TRecast) == sizeof(T), "sizeof(TRecast) must match sizeof(T): " << sizeof(TRecast) << " != " << sizeof(T)); return UnsafeReinterpret(); } template BASALT_HOST_DEVICE inline Image UnsafeReinterpret() const { return Image((TRecast*)ptr, w, h, pitch); } ////////////////////////////////////////////////////// // Deprecated methods ////////////////////////////////////////////////////// // PANGOLIN_DEPRECATED inline Image(size_t w, size_t h, size_t pitch, T* ptr) : pitch(pitch), ptr(ptr), w(w), h(h) {} // Use RAII/move aware pangolin::ManagedImage instead // PANGOLIN_DEPRECATED inline void Dealloc() { if (ptr) { ::operator delete(ptr); ptr = nullptr; } } // Use RAII/move aware pangolin::ManagedImage instead // PANGOLIN_DEPRECATED inline void Alloc(size_t w, size_t h, size_t pitch) { Dealloc(); this->w = w; this->h = h; this->pitch = pitch; this->ptr = (T*)::operator new(h* pitch); } ////////////////////////////////////////////////////// // Data members ////////////////////////////////////////////////////// size_t pitch; T* ptr; size_t w; size_t h; BASALT_EXTENSION_IMAGE }; template using DefaultImageAllocator = std::allocator; /// @brief Image that manages it's own memory, storing a strong pointer to it's /// memory template > class ManagedImage : public Image { public: using PixelType = T; using Ptr = std::shared_ptr>; // Destructor inline ~ManagedImage() { Deallocate(); } // Null image inline ManagedImage() {} // Row image inline ManagedImage(size_t w) : Image(Allocator().allocate(w), w, 1, w * sizeof(T)) {} inline ManagedImage(size_t w, size_t h) : Image(Allocator().allocate(w * h), w, h, w * sizeof(T)) {} inline ManagedImage(size_t w, size_t h, size_t pitch_bytes) : Image(Allocator().allocate((h * pitch_bytes) / sizeof(T) + 1), w, h, pitch_bytes) {} // Not copy constructable inline ManagedImage(const ManagedImage& other) = delete; // Move constructor inline ManagedImage(ManagedImage&& img) { *this = std::move(img); } // Move asignment inline void operator=(ManagedImage&& img) { Deallocate(); Image::pitch = img.pitch; Image::ptr = img.ptr; Image::w = img.w; Image::h = img.h; img.ptr = nullptr; } // Explicit copy constructor template ManagedImage(const CopyObject& other) { CopyFrom(other.obj); } // Explicit copy assignment template void operator=(const CopyObject& other) { CopyFrom(other.obj); } inline void Swap(ManagedImage& img) { std::swap(img.pitch, Image::pitch); std::swap(img.ptr, Image::ptr); std::swap(img.w, Image::w); std::swap(img.h, Image::h); } inline void CopyFrom(const Image& img) { if (!Image::IsValid() || Image::w != img.w || Image::h != img.h) { Reinitialise(img.w, img.h); } Image::CopyFrom(img); } inline void Reinitialise(size_t w, size_t h) { if (!Image::ptr || Image::w != w || Image::h != h) { *this = ManagedImage(w, h); } } inline void Reinitialise(size_t w, size_t h, size_t pitch) { if (!Image::ptr || Image::w != w || Image::h != h || Image::pitch != pitch) { *this = ManagedImage(w, h, pitch); } } inline void Deallocate() { if (Image::ptr) { Allocator().deallocate(Image::ptr, (Image::h * Image::pitch) / sizeof(T)); Image::ptr = nullptr; } } // Move asignment template inline void OwnAndReinterpret(ManagedImage&& img) { Deallocate(); Image::pitch = img.pitch; Image::ptr = (T*)img.ptr; Image::w = img.w; Image::h = img.h; img.ptr = nullptr; } template inline void ConvertFrom(const ManagedImage& img) { Reinitialise(img.w, img.h); for (size_t j = 0; j < img.h; j++) { T* this_row = this->RowPtr(j); const T1* other_row = img.RowPtr(j); for (size_t i = 0; i < img.w; i++) { this_row[i] = T(other_row[i]); } } } inline void operator-=(const ManagedImage& img) { for (size_t j = 0; j < img.h; j++) { T* this_row = this->RowPtr(j); const T* other_row = img.RowPtr(j); for (size_t i = 0; i < img.w; i++) { this_row[i] -= other_row[i]; } } } }; } // namespace basalt