libcruft-util/image.hpp

92 lines
2.8 KiB
C++

/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Copyright 2011-2015 Danny Robson <danny@nerdcruft.net>
*/
#ifndef __UTIL_IMAGE_HPP
#define __UTIL_IMAGE_HPP
#include "extent.hpp"
#include "point.hpp"
#include <cstdint>
#include <cstdlib>
#include <memory>
namespace util { namespace image {
template <typename T>
struct buffer {
typedef T value_type;
//---------------------------------------------------------------------
buffer (util::extent2u);
buffer (size_t w, size_t h);
buffer (size_t w, size_t h, size_t s);
buffer (size_t w, size_t h, size_t s, std::unique_ptr<T[]> &&data);
buffer (const buffer<T>&) = delete;
buffer (buffer<T> &&) = default;
//---------------------------------------------------------------------
/// allocate and return a buffer of the same dimensions. contents are undefined.
template <typename U = T> buffer<U> alloc (void) const;
/// allocate and return a buffer with the same contents
template <typename U = T> buffer<U> clone (void) const;
template <typename U> buffer<U> cast (void) const { return clone<U> (); }
buffer<T> downsample (float factor) const;
//---------------------------------------------------------------------
constexpr extent2u extent (void) const;
constexpr vector2u stride (void) const;
constexpr size_t size (void) const; // elements allocated
constexpr bool is_packed (void) const;
size_t w;
size_t h;
size_t s;
//---------------------------------------------------------------------
constexpr size_t offset (point<2,size_t>) const;
const T& operator[] (point<2,size_t>) const;
T& operator[] (point<2,size_t>);
const T& operator[] (size_t) const;
T& operator[] (size_t);
//---------------------------------------------------------------------
T* begin (void);
T* end (void);
T* data (void);
const T* begin (void) const;
const T* end (void) const;
const T* data (void) const;
const T* cbegin (void) const;
const T* cend (void) const;
private:
std::unique_ptr<T[]> m_data;
};
} }
#include "image.ipp"
#endif