/usr/include/OpenImageIO/image_view.h is in libopenimageio-dev 1.6.17~dfsg0-1+b2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*
Copyright 2014 Larry Gritz and the other authors and contributors.
All Rights Reserved.
Based on BSD-licensed software Copyright 2004 NVIDIA Corp.
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 software's owners 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
OWNER 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.
(This is the Modified BSD License)
*/
#pragma once
#include <vector>
#include <stdexcept>
// We're including stdint.h to get int64_t and INT64_MIN. But on some
// platforms, stdint.h only defines them if __STDC_LIMIT_MACROS is defined,
// so we do so. But, oops, if user code included stdint.h before this file,
// and without defining the macro, it may have had ints one and only include
// and not seen the definitions we need, so at least try to make a helpful
// compile-time error in that case.
// And very old MSVC 9 versions don't even have stdint.h.
#if defined(_MSC_VER) && _MSC_VER < 1600
typedef __int64 int64_t;
#else
# ifndef __STDC_LIMIT_MACROS
# define __STDC_LIMIT_MACROS /* needed for some defs in stdint.h */
# endif
# include <stdint.h>
# if ! defined(INT64_MIN)
# error You must define __STDC_LIMIT_MACROS prior to including stdint.h
# endif
#endif
#include "oiioversion.h"
#include "strided_ptr.h"
OIIO_NAMESPACE_BEGIN
/// image_view : a non-owning reference to an image-like array (indexed by
/// x, y, z, and channel) with known dimensions and optionally non-default
/// strides (expressed in bytes) through the data. An image_view<T> is
/// mutable (the values in the image may be modified), whereas an
/// image_view<const T> is not mutable.
template <typename T>
class image_view {
public:
typedef T value_type;
typedef T& reference;
typedef const T& const_reference;
typedef int64_t stride_t;
#ifdef INT64_MIN
static const stride_t AutoStride = INT64_MIN;
#else
// Some systems don't have INT64_MIN defined. Sheesh.
static const stride_t AutoStride = (-9223372036854775807LL-1);
#endif
/// Default ctr -- points to nothing
image_view () { init(); }
/// Copy constructor
image_view (const image_view ©) {
init (copy.m_data, copy.m_nchannels,copy.m_width, copy.m_height, copy.m_depth,
copy.m_chanstride, copy.m_xstride, copy.m_ystride, copy.m_zstride);
}
/// Construct from T*, dimensions, and (possibly default) strides (in
/// bytes).
image_view (T *data, int nchannels,
int width, int height, int depth=1,
stride_t chanstride=AutoStride, stride_t xstride=AutoStride,
stride_t ystride=AutoStride, stride_t zstride=AutoStride) {
init (data, nchannels, width, height, depth,
chanstride, xstride, ystride, zstride);
}
/// assignments -- not a deep copy, just make this image_view
/// point to the same data as the operand.
image_view& operator= (const image_view ©) {
init (copy.m_data, copy.m_nchannels,copy.m_width, copy.m_height, copy.m_depth,
copy.m_chanstride, copy.m_xstride, copy.m_ystride, copy.m_zstride);
return *this;
}
/// iav(x,y,z)returns a strided_ptr for the pixel (x,y,z). The z
/// can be omitted for 2D images. Note than the resulting
/// strided_ptr can then have individual channels accessed with
/// operator[].
strided_ptr<T> operator() (int x, int y, int z=0) {
return strided_ptr<T> (getptr(0,x,y,z), m_chanstride);
}
int nchannels() const { return m_nchannels; }
int width() const { return m_width; }
int height() const { return m_height; }
int depth() const { return m_depth; }
stride_t chanstride() const { return m_chanstride; }
stride_t xstride() const { return m_xstride; }
stride_t ystride() const { return m_ystride; }
stride_t zstride() const { return m_zstride; }
const T* data() const { return m_data; }
void clear() { init(); }
private:
const T * m_data;
int m_nchannels, m_width, m_height, m_depth;
stride_t m_chanstride, m_xstride, m_ystride, m_zstride;
void init (T *data, int nchannels,
int width, int height, int depth=1,
stride_t chanstride=AutoStride, stride_t xstride=AutoStride,
stride_t ystride=AutoStride, stride_t zstride=AutoStride) {
m_data = data;
m_nchannels = nchannels;
m_width = width; m_height = height; m_depth = depth;
m_chanstride = chanstride != AutoStride ? chanstride : sizeof(T);
m_xstride = xstride != AutoStride ? xstride : m_nchannels * m_chanstride;
m_ystride = ystride != AutoStride ? ystride : m_width * m_xstride;
m_zstride = zstride != AutoStride ? zstride : m_height * m_ystride;
}
inline T* getptr (int c, int x, int y, int z=0) const {
return (T*)((char *)m_data +
c*m_chanstride + x*m_xstride +
y*m_ystride + z*m_zstride);
}
inline T& get (int c, int x, int y, int z=0) const {
return *getptr (c, x, y, z);
}
};
OIIO_NAMESPACE_END
|