Zivid C++ API 2.17.1+7516d437-1
Barcode.h
Go to the documentation of this file.
1/*******************************************************************************
2 * This file is part of the Zivid API
3 *
4 * Copyright 2015-2025 (C) Zivid AS
5 * All rights reserved.
6 *
7 * Zivid Software License, v1.0
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met:
11 *
12 * 1. Redistributions of source code must retain the above copyright notice,
13 * this list of conditions and the following disclaimer.
14 *
15 * 2. Redistributions in binary form must reproduce the above copyright notice,
16 * this list of conditions and the following disclaimer in the documentation
17 * and/or other materials provided with the distribution.
18 *
19 * 3. Neither the name of Zivid AS nor the names of its contributors may be used
20 * to endorse or promote products derived from this software without specific
21 * prior written permission.
22 *
23 * 4. This software, with or without modification, must not be used with any
24 * other 3D camera than from Zivid AS.
25 *
26 * 5. Any software provided in binary form under this license must not be
27 * reverse engineered, decompiled, modified and/or disassembled.
28 *
29 * THIS SOFTWARE IS PROVIDED BY ZIVID AS "AS IS" AND ANY EXPRESS OR IMPLIED
30 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
31 * MERCHANTABILITY, NONINFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE ARE
32 * DISCLAIMED. IN NO EVENT SHALL ZIVID AS OR CONTRIBUTORS BE LIABLE FOR ANY
33 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
34 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
35 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
36 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
38 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 *
40 * Contact: Zivid Customer Success Team <customersuccess@zivid.com>
41 * Info: http://www.zivid.com
42 ******************************************************************************/
43
44#pragma once
45
46#include <Zivid/Camera.h>
48#include <Zivid/Detail/Pimpl.h>
50#include <Zivid/Frame2D.h>
51#include <Zivid/Point.h>
52
53#include <ostream>
54#include <string>
55#include <vector>
56
57namespace Zivid
58{
59 namespace Experimental
60 {
61 namespace Toolbox
62 {
65 {
67
68 public:
71 ZIVID_CORE_EXPORT std::string code() const;
72
76
80
83 ZIVID_CORE_EXPORT std::string toString() const;
84 };
85
88 std::ostream &stream,
89 const LinearBarcodeDetectionResult &result);
90
93 {
95
96 public:
99 ZIVID_CORE_EXPORT std::string code() const;
100
104
108
111 ZIVID_CORE_EXPORT std::string toString() const;
112 };
113
116 std::ostream &stream,
117 const MatrixBarcodeDetectionResult &result);
118
134 {
136
137 public:
140
145
155 ZIVID_CORE_EXPORT std::vector<LinearBarcodeDetectionResult> readLinearCodes(
156 const Frame2D &frame2d,
157 const LinearBarcodeFormatFilter &formatFilter = LinearBarcodeFormatFilter::all()) const;
158
168 ZIVID_CORE_EXPORT std::vector<MatrixBarcodeDetectionResult> readMatrixCodes(
169 const Frame2D &frame2d,
170 const MatrixBarcodeFormatFilter &formatFilter = MatrixBarcodeFormatFilter::all()) const;
171
174 ZIVID_CORE_EXPORT std::string toString() const;
175 };
176
178 ZIVID_CORE_EXPORT std::ostream &operator<<(std::ostream &stream, const BarcodeDetector &barcodeDetector);
179
183
187 } // namespace Toolbox
188 } // namespace Experimental
189} // namespace Zivid
#define ZIVID_CORE_EXPORT
Definition CoreExport.h:56
#define ZIVID_PIMPL_VALUE_SEMANTICS(ClassName, Attributes)
Definition Pimpl.h:53
#define ZIVID_PIMPL_REFERENCE_SEMANTICS(ClassName, Attributes)
Definition Pimpl.h:149
Interface to one Zivid camera.
Definition Camera.h:70
Class for enabling the detection of barcodes.
Definition Barcode.h:134
ZIVID_CORE_EXPORT Settings2D suggestSettings(Camera &camera) const
Get 2D capture settings that are ideal for barcode reading with the given camera.
ZIVID_CORE_EXPORT std::vector< MatrixBarcodeDetectionResult > readMatrixCodes(const Frame2D &frame2d, const MatrixBarcodeFormatFilter &formatFilter=MatrixBarcodeFormatFilter::all()) const
Detect and decode matrix (2D) barcodes based on the result of a 2D capture.
ZIVID_CORE_EXPORT std::vector< LinearBarcodeDetectionResult > readLinearCodes(const Frame2D &frame2d, const LinearBarcodeFormatFilter &formatFilter=LinearBarcodeFormatFilter::all()) const
Detect and decode linear (1D) barcodes based on the result of a 2D capture.
ZIVID_CORE_EXPORT std::string toString() const
Get string representation of the object.
ZIVID_CORE_EXPORT BarcodeDetector()
Constructor.
static constexpr BarcodeFormatFilter all()
Definition BarcodeFormats.h:96
Information about a detected linear (1D) barcode.
Definition Barcode.h:65
ZIVID_CORE_EXPORT std::string code() const
Get the code encoded in the barcode.
ZIVID_CORE_EXPORT LinearBarcodeFormat codeFormat() const
Get the format of the code.
ZIVID_CORE_EXPORT std::string toString() const
Get string representation of the object.
ZIVID_CORE_EXPORT PointXY centerPosition() const
Get the location of the barcode in the 2D image.
Information about a detected matrix (2D) barcode.
Definition Barcode.h:93
ZIVID_CORE_EXPORT std::string toString() const
Get string representation of the object.
ZIVID_CORE_EXPORT PointXY centerPosition() const
Get the location of the barcode in the 2D image.
ZIVID_CORE_EXPORT std::string code() const
Get the code encoded in the barcode.
ZIVID_CORE_EXPORT MatrixBarcodeFormat codeFormat() const
Get the format of the code.
A 2D frame captured by a Zivid camera.
Definition Frame2D.h:69
Settings used when capturing 2D images with a Zivid camera.
Definition Settings2D.h:79
Definition Barcode.h:62
LinearBarcodeFormat
Enum describing the supported linear (1D) barcode formats.
Definition BarcodeFormats.h:62
ZIVID_CORE_EXPORT std::string toString(LinearBarcodeFormat format)
Get string representation of a barcode format.
MatrixBarcodeFormat
Enum describing the supported matrix (2D) barcode formats.
Definition BarcodeFormats.h:79
BarcodeFormatFilter< LinearBarcodeFormat > LinearBarcodeFormatFilter
Filter type for defining which linear (1D) barcode formats to look for when reading barcodes.
Definition BarcodeFormats.h:152
ZIVID_CORE_EXPORT std::ostream & operator<<(std::ostream &stream, const LinearBarcodeDetectionResult &result)
Serialize the value to a stream.
BarcodeFormatFilter< MatrixBarcodeFormat > MatrixBarcodeFormatFilter
Filter type for defining which matrix (2D) barcode formats to look for when reading barcodes.
Definition BarcodeFormats.h:163
Definition Calibration.h:59
The main Zivid namespace. All Zivid code is found here.
Definition Application.h:84
Point with two coordinates as float.
Definition Point.h:207