#include <cmath>
#include <type_traits>
#include "quantized.h"
Go to the source code of this file.
|
| template<unsigned int I, unsigned int F> |
| using | libcamera::ipa::Q = Quantized< FixedPointQTraits< I, F, decltype(details::qtype< I+F >())> > |
| | Define a signed fixed-point quantized type with automatic storage width.
|
| |
| template<unsigned int I, unsigned int F> |
| using | libcamera::ipa::UQ = Quantized< FixedPointQTraits< I, F, std::make_unsigned_t< decltype(details::qtype< I+F >())> > > |
| | Define an unsigned fixed-point quantized type with automatic storage width.
|
| |