Zivid C++ API 2.5.0+19fa6891-1
Defining the Future of 3D Machine Vision
PointCloud.h
Go to the documentation of this file.
1
2
3/*******************************************************************************
4
5 * This file is part of the Zivid 3D Camera API
6
7 *
8
9 * Copyright 2015-2021 (C) Zivid AS
10
11 * All rights reserved.
12
13 *
14
15 * Zivid Software License, v1.0
16
17 *
18
19 * Redistribution and use in source and binary forms, with or without
20
21 * modification, are permitted provided that the following conditions are met:
22
23 *
24
25 * 1. Redistributions of source code must retain the above copyright notice,
26
27 * this list of conditions and the following disclaimer.
28
29 *
30
31 * 2. Redistributions in binary form must reproduce the above copyright notice,
32
33 * this list of conditions and the following disclaimer in the documentation
34
35 * and/or other materials provided with the distribution.
36
37 *
38
39 * 3. Neither the name of Zivid AS nor the names of its contributors may be used
40
41 * to endorse or promote products derived from this software without specific
42
43 * prior written permission.
44
45 *
46
47 * 4. This software, with or without modification, must not be used with any
48
49 * other 3D camera than from Zivid AS.
50
51 *
52
53 * 5. Any software provided in binary form under this license must not be
54
55 * reverse engineered, decompiled, modified and/or disassembled.
56
57 *
58
59 * THIS SOFTWARE IS PROVIDED BY ZIVID AS "AS IS" AND ANY EXPRESS OR IMPLIED
60
61 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
62
63 * MERCHANTABILITY, NONINFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE ARE
64
65 * DISCLAIMED. IN NO EVENT SHALL ZIVID AS OR CONTRIBUTORS BE LIABLE FOR ANY
66
67 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
68
69 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
70
71 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
72
73 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
74
75 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
76
77 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
78
79 *
80
81 * Contact: Zivid Customer Success Team <customersuccess@zivid.com>
82
83 * Info: http://www.zivid.com
84
85 ******************************************************************************/
86
87
88
89#pragma once
90
91#include <Zivid/Matrix.h>
92#include "Zivid/Array2D.h"
94#include "Zivid/Image.h"
95#include "Zivid/Normal.h"
96#include "Zivid/Point.h"
98#include "Zivid/SNR.h"
99
100#include <iosfwd>
101#include <memory>
102#include <string>
103
104namespace Zivid
105{
115 {
116 public:
123 enum class Downsampling
124 {
125 by2x2,
126 by3x3,
127 by4x4,
128 };
129
132
134 ZIVID_CORE_EXPORT size_t width() const;
135
137 ZIVID_CORE_EXPORT size_t height() const;
138
141 ZIVID_CORE_EXPORT size_t size() const;
142
145
161
181
193
206
219
226
240
254
268
280 template<typename DataFormat>
282 {
283 static_assert(HasCopyDataImplReturnArray2DTag<DataFormat>::value,
284 "The provided DataFormat is unsupported. Please refer to the documentation for "
285 "this method for the supported DataFormats.");
286 return copyDataImpl(ReturnArray2DTag<DataFormat>{});
287 }
288
348 template<typename DataFormat>
349 void copyData(DataFormat *destination) const
350 {
351 static_assert(HasCopyDataImpl<DataFormat *>::value,
352 "The provided DataFormat is unsupported. Please refer to the documentation for "
353 "this method for the supported data formats.");
354 return copyDataImpl(destination);
355 }
356
359 ZIVID_CORE_EXPORT std::string toString() const;
360
366
394
403
404#ifndef NO_DOC
405 ZIVID_CORE_EXPORT class PointCloudImpl &getImpl();
406 ZIVID_CORE_EXPORT const class PointCloudImpl &getImpl() const;
407 ZIVID_CORE_EXPORT explicit PointCloud(std::shared_ptr<class PointCloudImpl> other);
408#endif
409
410 private:
411 template<class T>
412 struct ReturnArray2DTag
413 {};
414
415 template<typename... Args>
416 class HasCopyDataImplReturnArray2DTag
417 {
418 template<typename C,
419 typename = decltype(std::declval<C>().copyDataImpl(std::declval<ReturnArray2DTag<Args>>()...))>
420 static std::true_type test(int);
421 template<typename C>
422 static std::false_type test(...);
423
424 public:
425 static constexpr bool value = decltype(test<PointCloud>(0))::value;
426 };
427
428 template<typename... Args>
429 class HasCopyDataImpl
430 {
431 template<typename C, typename = decltype(std::declval<C>().copyDataImpl(std::declval<Args>()...))>
432 static std::true_type test(int);
433 template<typename C>
434 static std::false_type test(...);
435
436 public:
437 static constexpr bool value = decltype(test<PointCloud>(0))::value;
438 };
439
440 ZIVID_CORE_EXPORT Array2D<PointXYZ> copyDataImpl(ReturnArray2DTag<PointXYZ> /*tag*/) const;
441 ZIVID_CORE_EXPORT Array2D<PointXYZW> copyDataImpl(ReturnArray2DTag<PointXYZW> /*tag*/) const;
442 ZIVID_CORE_EXPORT Array2D<PointZ> copyDataImpl(ReturnArray2DTag<PointZ> /*tag*/) const;
443 ZIVID_CORE_EXPORT Array2D<ColorRGBA> copyDataImpl(ReturnArray2DTag<ColorRGBA> /*tag*/) const;
444 ZIVID_CORE_EXPORT Array2D<PointXYZColorRGBA> copyDataImpl(ReturnArray2DTag<PointXYZColorRGBA> /*tag*/) const;
445 ZIVID_CORE_EXPORT Array2D<PointXYZColorBGRA> copyDataImpl(ReturnArray2DTag<PointXYZColorBGRA> /*tag*/) const;
446 ZIVID_CORE_EXPORT Array2D<SNR> copyDataImpl(ReturnArray2DTag<SNR> /*tag*/) const;
447 ZIVID_CORE_EXPORT Array2D<NormalXYZ> copyDataImpl(ReturnArray2DTag<NormalXYZ> /*tag*/) const;
448 ZIVID_CORE_EXPORT void copyDataImpl(PointXYZ *destination) const;
449 ZIVID_CORE_EXPORT void copyDataImpl(PointXYZW *destination) const;
450 ZIVID_CORE_EXPORT void copyDataImpl(PointZ *destination) const;
451 ZIVID_CORE_EXPORT void copyDataImpl(ColorRGBA *destination) const;
452 ZIVID_CORE_EXPORT void copyDataImpl(PointXYZColorRGBA *destination) const;
453 ZIVID_CORE_EXPORT void copyDataImpl(PointXYZColorBGRA *destination) const;
454 ZIVID_CORE_EXPORT void copyDataImpl(SNR *destination) const;
455 ZIVID_CORE_EXPORT void copyDataImpl(NormalXYZ *destination) const;
456
457 std::shared_ptr<class PointCloudImpl> m_impl;
458 };
459
461 ZIVID_CORE_EXPORT std::ostream &operator<<(std::ostream &stream, const PointCloud &pointCloud);
462
463#ifndef NO_DOC
465 namespace Detail
466 {
467 ZIVID_CORE_EXPORT void waitUntilProcessingIsComplete(const PointCloud &pointCloud);
468 } // namespace Detail
469#endif
470
471} // namespace Zivid
#define ZIVID_CORE_EXPORT
Definition: CoreExport.h:101
Two-dimensional container of data
Definition: Array2D.h:119
A 2-dimensional image
Definition: Image.h:115
Point cloud with x, y, z, RGB color and SNR laid out on a 2D grid
Definition: PointCloud.h:115
ZIVID_CORE_EXPORT Array2D< PointXYZW > copyPointsXYZW() const
Array2D of point coordinates in 4D
ZIVID_CORE_EXPORT PointCloud & downsample(Downsampling downsampling)
Downsample the point cloud in-place
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:349
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:124
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< PointXYZColorRGBA > copyPointsXYZColorsRGBA() const
Array2D of PointXYZColorRGBA
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:281
ZIVID_CORE_EXPORT PointCloud()
Create an empty point cloud
ZIVID_CORE_EXPORT Array2D< NormalXYZ > copyNormalsXYZ() const
Array2D of NormalXYZ
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 Array2D< PointZ > copyPointsZ() const
Array2D of Z coordinates
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 size_t height() const
Get the height of the point cloud (number of rows)
The main Zivid namespace. All Zivid code is found here
Definition: Application.h:99
std::ostream & operator<<(std::ostream &stream, const Array2D< T > &array)
Serialize array information to a stream
Definition: Array2D.h:214