|
template<typename T > |
T * | open3d::geometry::PointerAt (const Image &image, int u, int v) |
| Function to access the raw data of a single-channel Image. More...
|
|
template float * | open3d::geometry::PointerAt< float > (const Image &image, int u, int v) |
|
template int * | open3d::geometry::PointerAt< int > (const Image &image, int u, int v) |
|
template uint8_t * | open3d::geometry::PointerAt< uint8_t > (const Image &image, int u, int v) |
|
template uint16_t * | open3d::geometry::PointerAt< uint16_t > (const Image &image, int u, int v) |
|
template<typename T > |
T * | open3d::geometry::PointerAt (const Image &image, int u, int v, int ch) |
| Function to access the raw data of a multi-channel Image. More...
|
|
template float * | open3d::geometry::PointerAt< float > (const Image &image, int u, int v, int ch) |
|
template int * | open3d::geometry::PointerAt< int > (const Image &image, int u, int v, int ch) |
|
template uint8_t * | open3d::geometry::PointerAt< uint8_t > (const Image &image, int u, int v, int ch) |
|
template uint16_t * | open3d::geometry::PointerAt< uint16_t > (const Image &image, int u, int v, int ch) |
|
std::shared_ptr< Image > | open3d::geometry::ConvertDepthToFloatImage (const Image &depth, double depth_scale, double depth_trunc) |
|
void | open3d::geometry::ClipIntensityImage (Image &input, double min, double max) |
|
void | open3d::geometry::LinearTransformImage (Image &input, double scale, double offset) |
|
std::shared_ptr< Image > | open3d::geometry::DownsampleImage (const Image &input) |
| Function to 2x image downsample using simple 2x2 averaging. More...
|
|
std::shared_ptr< Image > | open3d::geometry::FilterHorizontalImage (const Image &input, const std::vector< double > &kernel) |
|
std::shared_ptr< Image > | open3d::geometry::FilterImage (const Image &input, Image::FilterType type) |
| Function to filter image with pre-defined filtering type. More...
|
|
ImagePyramid | open3d::geometry::FilterImagePyramid (const ImagePyramid &input, Image::FilterType type) |
| Function to filter image pyramid. More...
|
|
std::shared_ptr< Image > | open3d::geometry::FilterImage (const Image &input, const std::vector< double > &dx, const std::vector< double > &dy) |
| Function to filter image with arbitrary dx, dy separable filters. More...
|
|
std::shared_ptr< Image > | open3d::geometry::FlipImage (const Image &input) |
|
std::shared_ptr< Image > | open3d::geometry::DilateImage (const Image &input, int half_kernel_size=1) |
| Function to dilate 8bit mask map. More...
|
|
std::shared_ptr< Image > | open3d::geometry::CreateDepthBoundaryMask (const Image &depth_image_input, double depth_threshold_for_discontinuity_check=0.1, int half_dilation_kernel_size_for_discontinuity_map=3) |
| Function to create a depthmap boundary mask from depth image. More...
|
|