19template <
typename Accessor>
29 : volume_(
volume ), accessor_( accessor )
36 : volume_(
other.volume_ ), accessor_( accessor )
42 IndexAndPos index = getIndexAndPos( pos - mult( accessor_.shift(), volume_.voxelSize ) );
44 float cx[2] = { 1.0f - index.
pos.x, index.
pos.x };
45 float cy[2] = { 1.0f - index.
pos.y, index.
pos.y };
46 float cz[2] = { 1.0f - index.
pos.z, index.
pos.z };
47 for (
int i = 0; i < 8; i++ )
49 Vector3i d{ i & 1, ( i >> 1 ) & 1, i >> 2 };
50 const auto voxPos = index.
index + d;
51 if ( voxPos.x >= 0 && voxPos.x < volume_.dims.x &&
52 voxPos.y >= 0 && voxPos.y < volume_.dims.y &&
53 voxPos.z >= 0 && voxPos.z < volume_.dims.z )
55 value += accessor_.get( voxPos ) * ( cx[d.x] * cy[d.y] * cz[d.z] );
63 const Accessor& accessor_;
71 IndexAndPos getIndexAndPos( Vector3f pos )
const
74 res.pos.x = pos.x / volume_.voxelSize.x;
75 res.pos.y = pos.y / volume_.voxelSize.y;
76 res.pos.z = pos.z / volume_.voxelSize.z;
77 pos.x = floor( res.pos.x );
78 pos.y = floor( res.pos.y );
79 pos.z = floor( res.pos.z );
80 res.index.x = int( pos.x );
81 res.index.y = int( pos.y );
82 res.index.z = int( pos.z );
91template <
typename Accessor>
93 const typename Accessor::VolumeType &
volume,
94 const Accessor &accessor,
95 const Vector3f &newVoxelSize )
97 SimpleVolumeMinMax res{
98 { .voxelSize{ newVoxelSize } },
101 res.dims.x = int(
volume.dims.x *
volume.voxelSize.x / res.voxelSize.x );
102 res.dims.y = int(
volume.dims.y *
volume.voxelSize.y / res.voxelSize.y );
103 res.dims.z = int(
volume.dims.z *
volume.voxelSize.z / res.voxelSize.z );
104 res.data.resize(
size_t( res.dims.x ) * res.dims.y * res.dims.z );
108 for (
int k = 0; k < res.dims.z; k++ )
109 for (
int j = 0; j < res.dims.y; j++ )
110 for (
int i = 0; i < res.dims.x; i++ )
111 res.data[indexer.
toVoxelId( { i, j, k } )] = interpolator.
get(
112 { i * res.voxelSize.x, j * res.voxelSize.y, k * res.voxelSize.z } );
Definition MRVolumeIndexer.h:65
Definition MRVolumeInterpolation.h:21
VoxelsVolumeInterpolatedAccessor(const VoxelsVolumeInterpolatedAccessor &)=delete
delete copying constructor to avoid accidentally creating non-thread-safe accessors
ValueType get(const Vector3f &pos) const
get value at specified coordinates
Definition MRVolumeInterpolation.h:40
MRMESH_API double volume(const MeshTopology &topology, const VertCoords &points, const FaceBitSet *region=nullptr)
VoxelsVolumeInterpolatedAccessor(const VolumeType &volume, const Accessor &accessor)
Definition MRVolumeInterpolation.h:28
Vector3i index
Definition MRVolumeInterpolation.h:67
Vector3f pos
Zero-based voxel index in the volume.
Definition MRVolumeInterpolation.h:68
typename Accessor::VolumeType VolumeType
Definition MRVolumeInterpolation.h:23
SimpleVolumeMinMax resampleVolumeByInterpolation(const typename Accessor::VolumeType &volume, const Accessor &accessor, const Vector3f &newVoxelSize)
sample function that resamples the voxel volume using interpolating accessor
Definition MRVolumeInterpolation.h:92
typename Accessor::ValueType ValueType
Definition MRVolumeInterpolation.h:24
VoxelsVolumeInterpolatedAccessor(const VoxelsVolumeInterpolatedAccessor &other, const Accessor &accessor)
a copying-like constructor with explicitly provided accessor
Definition MRVolumeInterpolation.h:35
@ other
Angle, normally float. Measure in radians.
VoxelId toVoxelId(const Vector3i &pos) const
Definition MRVolumeIndexer.h:141
only for bindings generation
Definition MRCameraOrientationPlugin.h:8