388 typename ColorFormat,
389 typename = std::enable_if_t<Detail::SupportedImageDeviceArrayColorFormat<ColorFormat>::value>>
404 typename ColorFormat,
405 typename = std::enable_if_t<Detail::SupportedImageDeviceArrayColorFormat<ColorFormat>::value>>
476 template<
typename DataFormat>
480 HasCopyDataImplReturnArray2DTag<DataFormat>::value,
481 "The provided DataFormat is unsupported. Please refer to the documentation for "
482 "this method for the supported DataFormats.");
483 return copyDataImpl(ReturnArray2DTag<DataFormat>{});
572 template<
typename DataFormat>
576 HasCopyDataImpl<DataFormat *>::value,
577 "The provided DataFormat is unsupported. Please refer to the documentation for "
578 "this method for the supported data formats.");
579 return copyDataImpl(destination);
734 struct ReturnArray2DTag
737 template<
typename... Args>
738 class HasCopyDataImplReturnArray2DTag
742 typename =
decltype(std::declval<C>().copyDataImpl(std::declval<ReturnArray2DTag<Args>>()...))>
743 static std::true_type test(
int);
745 static std::false_type test(...);
748 static constexpr bool value =
decltype(test<PointCloud>(0))::value;
751 template<
typename... Args>
752 class HasCopyDataImpl
754 template<typename C, typename = decltype(std::declval<C>().copyDataImpl(std::declval<Args>()...))>
755 static std::true_type test(
int);
757 static std::false_type test(...);
760 static constexpr bool value =
decltype(test<PointCloud>(0))::value;
763 ZIVID_CORE_EXPORT Array2D<PointXYZ> copyDataImpl(ReturnArray2DTag<PointXYZ> )
const;
764 ZIVID_CORE_EXPORT Array2D<PointXYZW> copyDataImpl(ReturnArray2DTag<PointXYZW> )
const;
766 ZIVID_CORE_EXPORT Array2D<ColorRGBA> copyDataImpl(ReturnArray2DTag<ColorRGBA> )
const;
767 ZIVID_CORE_EXPORT Array2D<ColorBGRA> copyDataImpl(ReturnArray2DTag<ColorBGRA> )
const;
768 ZIVID_CORE_EXPORT Array2D<ColorRGBA_SRGB> copyDataImpl(ReturnArray2DTag<ColorRGBA_SRGB> )
const;
769 ZIVID_CORE_EXPORT Array2D<ColorBGRA_SRGB> copyDataImpl(ReturnArray2DTag<ColorBGRA_SRGB> )
const;
770 ZIVID_CORE_EXPORT Array2D<PointXYZColorRGBA> copyDataImpl(ReturnArray2DTag<PointXYZColorRGBA> )
const;
772 ReturnArray2DTag<PointXYZColorRGBA_SRGB> )
const;
773 ZIVID_CORE_EXPORT Array2D<PointXYZColorBGRA> copyDataImpl(ReturnArray2DTag<PointXYZColorBGRA> )
const;
775 ReturnArray2DTag<PointXYZColorBGRA_SRGB> )
const;
777 ZIVID_CORE_EXPORT Array2D<NormalXYZ> copyDataImpl(ReturnArray2DTag<NormalXYZ> )
const;
793 std::shared_ptr<class PointCloudImpl> m_impl;
808# define ZIVID_POINT_CLOUD_IMAGE_DEVICE_ARRAY_EXTERN(Format) \
809 extern template ZIVID_CORE_EXPORT DeviceArray<Format> PointCloud::imageDeviceArray<Format>(StreamOrQueue) \
811 extern template ZIVID_CORE_EXPORT void \
812 PointCloud::imageDeviceArray<Format>(DeviceArrayView<Format>, StreamOrQueue) const
814 ZIVID_POINT_CLOUD_IMAGE_DEVICE_ARRAY_EXTERN(ColorRGBA);
816 ZIVID_POINT_CLOUD_IMAGE_DEVICE_ARRAY_EXTERN(ColorBGRA);
817 ZIVID_POINT_CLOUD_IMAGE_DEVICE_ARRAY_EXTERN(ColorBGRA_SRGB);
818 ZIVID_POINT_CLOUD_IMAGE_DEVICE_ARRAY_EXTERN(ColorRGBAf);
819# undef ZIVID_POINT_CLOUD_IMAGE_DEVICE_ARRAY_EXTERN
#define ZIVID_CORE_EXPORT
Definition CoreExport.h:56
Two-dimensional container of data.
Definition Array2D.h:83
Non-owning view of a device buffer.
Definition DeviceArray.h:270
Reference-counted handle to data on a GPU device.
Definition DeviceArray.h:94
A frame captured by a Zivid camera.
Definition Frame.h:70
A 2-dimensional image.
Definition Image.h:141
A mask for filtering point cloud data.
Definition Mask.h:63
Point cloud with x, y, z, RGB color and SNR laid out on a 2D grid.
Definition PointCloud.h:87
ZIVID_CORE_EXPORT DeviceArray< PointXYZ > devicePointsXYZ(StreamOrQueue streamOrQueue) const
Get a device buffer containing XYZ point coordinates, synchronized to the user's stream/queue.
ZIVID_CORE_EXPORT Image< ColorBGRA_SRGB > copyImageBGRA_SRGB() const
Get point cloud colors as 8-bit BGRA image in the sRGB color space.
ZIVID_CORE_EXPORT DeviceArray< SNR > deviceSNRs(StreamOrQueue streamOrQueue) const
Get a device buffer containing SNR values, synchronized to the user's stream/queue.
ZIVID_CORE_EXPORT Array2D< PointXYZW > copyPointsXYZW() const
Array2D of point coordinates in 4D.
ZIVID_CORE_EXPORT Array2D< PointXYZColorRGBA_SRGB > copyPointsXYZColorsRGBA_SRGB() const
Array2D of PointXYZColorRGBA_SRGB.
ZIVID_CORE_EXPORT PointCloud clone() const
Returns a clone of the point cloud. The clone will include a copy of all of the point cloud data on t...
ZIVID_CORE_EXPORT PointCloud masked(const Zivid::Mask &mask) const
Get a masked point cloud.
ZIVID_CORE_EXPORT Resolution resolution() const
Get the resolution of the point cloud.
ZIVID_CORE_EXPORT DeviceArray< NormalXYZ > deviceNormalsXYZ(StreamOrQueue streamOrQueue) const
Get a device buffer containing normal vectors, synchronized to the user's stream/queue.
ZIVID_CORE_EXPORT PointCloud & downsample(Downsampling downsampling)
Downsample the point cloud in-place.
ZIVID_CORE_EXPORT PointCloud transformed(const Zivid::Matrix4x4 &matrix) const
Transform the point cloud by the given 4x4 transformation matrix.
ZIVID_CORE_EXPORT Image< ColorRGBA > copyImageRGBA() const
Get point cloud colors as 8-bit RGBA image.
void copyData(DataFormat *destination) const
Copy data in the specified DataFormat to a destination buffer.
Definition PointCloud.h:573
ZIVID_CORE_EXPORT DeviceArray< PointZ > devicePointsZ(StreamOrQueue streamOrQueue) const
Get a device buffer containing Z point coordinates, synchronized to the user's stream/queue.
ZIVID_CORE_EXPORT Array2D< SNR > copySNRs() const
Array2D of SNR values.
ZIVID_CORE_EXPORT PointCloud & transform(const Zivid::Matrix4x4 &matrix)
Transform the point cloud in-place by the given 4x4 transformation matrix.
Downsampling
Option for downsampling.
Definition PointCloud.h:96
@ by4x4
Definition PointCloud.h:99
@ by3x3
Definition PointCloud.h:98
@ by2x2
Definition PointCloud.h:97
ZIVID_CORE_EXPORT PointCloud maskedByRegionOfInterest(const Zivid::Settings::RegionOfInterest::Box &roiSettings) const
Apply region of interest filtering to a copy of the point cloud.
void imageDeviceArray(DeviceArrayView< ColorFormat > destinationBuffer, StreamOrQueue streamOrQueue) const
Fill a user-provided DeviceArrayView with the point cloud's color image in the specified format.
ZIVID_CORE_EXPORT DeviceArray< PointXYZW > devicePointsXYZW(StreamOrQueue streamOrQueue) const
Get a device buffer containing XYZW point coordinates, synchronized to the user's stream/queue.
ZIVID_CORE_EXPORT Array2D< ColorRGBA > copyColorsRGBA() const
Array2D of point colors in 8-bit RGBA format.
ZIVID_CORE_EXPORT size_t size() const
Get the size of the point cloud (total number of points)
ZIVID_CORE_EXPORT Array2D< ColorBGRA_SRGB > copyColorsBGRA_SRGB() const
Array2D of point colors in 8-bit BGRA format in the sRGB color space.
ZIVID_CORE_EXPORT Array2D< PointXYZColorRGBA > copyPointsXYZColorsRGBA() const
Array2D of PointXYZColorRGBA.
ZIVID_CORE_EXPORT Array2D< ColorRGBA_SRGB > copyColorsSRGB() const
Array2D of point colors in 8-bit RGBA format in the sRGB color space.
ZIVID_CORE_EXPORT Image< ColorRGBA_SRGB > copyImageRGBA_SRGB() const
Get point cloud colors as 8-bit RGBA image in the sRGB color space.
ZIVID_CORE_EXPORT std::string toString() const
Get string representation of the point cloud.
Array2D< DataFormat > copyData() const
Array2D with point cloud data using specified DataFormat.
Definition PointCloud.h:477
ZIVID_CORE_EXPORT PointCloud()
Create an empty point cloud.
ZIVID_CORE_EXPORT Array2D< NormalXYZ > copyNormalsXYZ() const
Array2D of NormalXYZ.
ZIVID_CORE_EXPORT Array2D< ColorRGBA_SRGB > copyColorsRGBA_SRGB() const
Array2D of point colors in 8-bit RGBA format in the sRGB color space.
ZIVID_CORE_EXPORT size_t width() const
Get the width of the point cloud (number of columns)
ZIVID_CORE_EXPORT Array2D< PointXYZ > copyPointsXYZ() const
Array2D of point coordinates.
ZIVID_CORE_EXPORT Array2D< PointXYZColorBGRA > copyPointsXYZColorsBGRA() const
Array2D of PointXYZColorBGRA.
ZIVID_CORE_EXPORT Image< ColorRGBA_SRGB > copyImageSRGB() const
Get point cloud colors as 8-bit RGBA image in the sRGB color space.
ZIVID_CORE_EXPORT Array2D< PointZ > copyPointsZ() const
Array2D of Z coordinates.
ZIVID_CORE_EXPORT UnorganizedPointCloud toUnorganizedPointCloud() const
Convert to an UnorganizedPointCloud.
ZIVID_CORE_EXPORT PointCloud downsampled(Downsampling downsampling) const
Get a downsampled point cloud.
ZIVID_CORE_EXPORT bool isEmpty() const
Check if the point cloud is empty (contains zero points)
ZIVID_CORE_EXPORT Array2D< PointXYZColorBGRA_SRGB > copyPointsXYZColorsBGRA_SRGB() const
Array2D of PointXYZColorBGRA_SRGB.
ZIVID_CORE_EXPORT PointCloud & mask(const Zivid::Mask &mask)
Apply a mask to the point cloud in-place.
DeviceArray< ColorFormat > imageDeviceArray(StreamOrQueue streamOrQueue) const
Get the point cloud color image as a device buffer in the specified format.
ZIVID_CORE_EXPORT Image< ColorBGRA > copyImageBGRA() const
Get point cloud colors as 8-bit BGRA image.
ZIVID_CORE_EXPORT Zivid::Matrix4x4 transformationMatrix() const
Return the current transformation matrix of this point cloud.
ZIVID_CORE_EXPORT size_t height() const
Get the height of the point cloud (number of rows)
ZIVID_CORE_EXPORT Array2D< ColorBGRA > copyColorsBGRA() const
Array2D of point colors in 8-bit BGRA format.
ZIVID_CORE_EXPORT PointCloud & maskByRegionOfInterest(const Zivid::Settings::RegionOfInterest::Box &roiSettings)
Apply region of interest filtering to the point cloud in-place.
Class describing a resolution with a width and a height.
Definition Resolution.h:56
Removes points outside the given three-dimensional box.
Definition Settings.h:12718
Point cloud with x, y, z, RGB color and SNR laid out as a linear list of only valid points.
Definition UnorganizedPointCloud.h:75
Definition EnvironmentInfo.h:74
The main Zivid namespace. All Zivid code is found here.
Definition Application.h:85
ColorSRGB ColorRGBA_SRGB
Color with 8-bit red, green, blue and alpha channels in the sRGB color space.
Definition Color.h:93
Matrix< float, 4, 4 > Matrix4x4
Matrix of size 4x4 containing floats.
Definition Matrix.h:329
std::ostream & operator<<(std::ostream &stream, const Array1D< T > &array)
Serialize array information to a stream.
Definition Array1D.h:183
A user CUDA stream or OpenCL command queue, selected by which member is populated.
Definition ComputeWrappers.h:106