Zivid C++ API 2.18.0+1b44dbef-1
Barcode.h
Go to the documentation of this file.
1/*******************************************************************************
2 * This file is part of the Zivid API
3 *
4 * Copyright 2015-2026 (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/BoundingBox.h>
47#include <Zivid/Camera.h>
49#include <Zivid/Detail/Pimpl.h>
51#include <Zivid/Frame2D.h>
52#include <Zivid/Point.h>
53
54#include <optional>
55#include <ostream>
56#include <string>
57#include <vector>
58
59namespace Zivid
60{
61 namespace Experimental
62 {
63 namespace Toolbox
64 {
67 {
69
70 public:
74
78
81 ZIVID_CORE_EXPORT std::string toString() const;
82 };
83
86 std::ostream &stream,
87 const LinearBarcodeDetectionResult &result);
88
91 {
93
94 public:
97 ZIVID_CORE_EXPORT std::string code() const;
98
102
106
110
113 ZIVID_CORE_EXPORT std::string toString() const;
114 };
115
117 ZIVID_CORE_EXPORT std::ostream &operator<<(std::ostream &stream, const LinearBarcodeDecodingResult &result);
118
121 {
123
124 public:
127 ZIVID_CORE_EXPORT std::string code() const;
128
132
136
140
143 ZIVID_CORE_EXPORT std::string toString() const;
144 };
145
147 ZIVID_CORE_EXPORT std::ostream &operator<<(std::ostream &stream, const MatrixBarcodeDecodingResult &result);
148
164 {
166
167 public:
170
175
185 ZIVID_CORE_EXPORT std::vector<LinearBarcodeDetectionResult> detectLinearCodes(
186 const Frame2D &frame2d) const;
187
202 ZIVID_CORE_EXPORT std::vector<std::optional<LinearBarcodeDecodingResult>> decodeLinearCodes(
203 const std::vector<LinearBarcodeDetectionResult> &detectionResults,
204 const LinearBarcodeFormatFilter &formatFilter = LinearBarcodeFormatFilter::all()) const;
205
215 ZIVID_CORE_EXPORT std::vector<LinearBarcodeDecodingResult> readLinearCodes(
216 const Frame2D &frame2d,
217 const LinearBarcodeFormatFilter &formatFilter = LinearBarcodeFormatFilter::all()) const;
218
228 ZIVID_CORE_EXPORT std::vector<MatrixBarcodeDecodingResult> readMatrixCodes(
229 const Frame2D &frame2d,
230 const MatrixBarcodeFormatFilter &formatFilter = MatrixBarcodeFormatFilter::all()) const;
231
234 ZIVID_CORE_EXPORT std::string toString() const;
235 };
236
238 ZIVID_CORE_EXPORT std::ostream &operator<<(std::ostream &stream, const BarcodeDetector &barcodeDetector);
239
243
247 } // namespace Toolbox
248 } // namespace Experimental
249} // 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:71
Class for enabling the detection of barcodes.
Definition Barcode.h:164
ZIVID_CORE_EXPORT std::vector< LinearBarcodeDecodingResult > 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 Settings2D suggestSettings(Camera &camera) const
Get 2D capture settings that are ideal for barcode reading with the given camera.
ZIVID_CORE_EXPORT std::vector< LinearBarcodeDetectionResult > detectLinearCodes(const Frame2D &frame2d) const
Detect linear (1D) barcode candidate regions based on the result of a 2D capture.
ZIVID_CORE_EXPORT std::vector< MatrixBarcodeDecodingResult > 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::string toString() const
Get string representation of the object.
ZIVID_CORE_EXPORT BarcodeDetector()
Constructor.
ZIVID_CORE_EXPORT std::vector< std::optional< LinearBarcodeDecodingResult > > decodeLinearCodes(const std::vector< LinearBarcodeDetectionResult > &detectionResults, const LinearBarcodeFormatFilter &formatFilter=LinearBarcodeFormatFilter::all()) const
Decode linear (1D) barcode candidate regions.
static constexpr BarcodeFormatFilter all()
Definition BarcodeFormats.h:100
Information about a decoded linear (1D) barcode.
Definition Barcode.h:91
ZIVID_CORE_EXPORT std::string code() const
Get the code encoded in the barcode.
ZIVID_CORE_EXPORT std::string toString() const
Get string representation of the object.
ZIVID_CORE_EXPORT LinearBarcodeFormat codeFormat() const
Get the format of the code.
ZIVID_CORE_EXPORT BoundingBox boundingBox() const
Get the bounding box of the barcode in the 2D image.
ZIVID_CORE_EXPORT PointXY centerPosition() const
Get the location of the barcode in the 2D image.
Information about an image region that is likely (but not guaranteed) to be a linear (1D) barcode.
Definition Barcode.h:67
ZIVID_CORE_EXPORT BoundingBox boundingBox() const
Get the bounding box of the region in the 2D image.
ZIVID_CORE_EXPORT std::string toString() const
Get string representation of the object.
ZIVID_CORE_EXPORT PointXY centerPosition() const
Get the location of the region in the 2D image.
Information about a detected matrix (2D) barcode.
Definition Barcode.h:121
ZIVID_CORE_EXPORT BoundingBox boundingBox() const
Get the bounding box of the barcode in the 2D image.
ZIVID_CORE_EXPORT MatrixBarcodeFormat codeFormat() const
Get the format of the code.
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 std::string toString() const
Get string representation of the object.
A 2D frame captured by a Zivid camera.
Definition Frame2D.h:74
Settings used when capturing 2D images with a Zivid camera.
Definition Settings2D.h:79
Definition Barcode.h:64
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:80
BarcodeFormatFilter< LinearBarcodeFormat > LinearBarcodeFormatFilter
Filter type for defining which linear (1D) barcode formats to look for when reading barcodes.
Definition BarcodeFormats.h:172
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:183
Definition Calibration.h:59
The main Zivid namespace. All Zivid code is found here.
Definition Application.h:85
Defines a 2D rectangular bounding box in image coordinates.
Definition BoundingBox.h:57
Point with two coordinates as float.
Definition Point.h:207