hfl_pixel.cpp
Go to the documentation of this file.
1 // Copyright 2020 Continental AG
2 // All rights reserved.
3 //
4 // Software License Agreement (BSD 2-Clause Simplified License)
5 //
6 // Redistribution and use in source and binary forms, with or without
7 // modification, are permitted provided that the following conditions
8 // are met:
9 //
10 // * Redistributions of source code must retain the above copyright
11 // notice, this list of conditions and the following disclaimer.
12 // * Redistributions in binary form must reproduce the above
13 // copyright notice, this list of conditions and the following
14 // disclaimer in the documentation and/or other materials provided
15 // with the distribution.
16 //
17 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
20 // FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
21 // COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
22 // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
23 // BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24 // LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25 // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 // LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
27 // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 // POSSIBILITY OF SUCH DAMAGE.
29 
30 
36 #include <hfl_pixel.h>
37 
38 namespace hfl
39 {
40 Pixel::Pixel(size_t returns_size, size_t slices_size) : slices_(slices_size)
41 {
42  PixelReturn pixelReturn;
43  returns_.resize(returns_size, pixelReturn);
44 }
45 
47 {
48  return returns_[x];
49 }
50 
51 uint16_t& Pixel::atSlice(uint16_t x)
52 {
53  return slices_[x];
54 }
55 
56 } // namespace hfl
hfl
Definition: base_hfl110dcu.h:42
hfl::PixelReturn
Data structure for pixel returns.
Definition: hfl_pixel.h:51
hfl::Pixel::atSlice
uint16_t & atSlice(uint16_t x)
Definition: hfl_pixel.cpp:51
hfl::Pixel::slices_
Slice slices_
Slices data.
Definition: hfl_pixel.h:92
hfl_pixel.h
This file defines the frame's classes components.
hfl::Pixel::returns_
std::vector< PixelReturn > returns_
Pixel's returns data.
Definition: hfl_pixel.h:95
hfl::Pixel::atReturn
PixelReturn & atReturn(uint16_t x)
Definition: hfl_pixel.cpp:46
hfl::Pixel::Pixel
Pixel(size_t returns_size, size_t slices_size)
Definition: hfl_pixel.cpp:40


hfl_driver
Author(s): Evan Flynn , Maxton Ginier , Gerardo Bravo , Moises Diaz
autogenerated on Wed Mar 2 2022 00:22:32