// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma // de Barcelona (UAB). // // This work is licensed under the terms of the MIT license. // For a copy, see . #pragma once #include "carla/sensor/data/Color.h" #include "carla/sensor/data/ImageTmpl.h" namespace carla { namespace sensor { namespace data { /// An image of 32-bit BGRA colors (8-bit channels, 4 bytes) using Image = ImageTmpl; /// An image of float BGRA colors (32-bit channels) using FloatImage = ImageTmpl; /// An image of 64-bit BGRA colors (16-bit channels, 2 floats) using OpticalFlowImage = ImageTmpl; /// An image of 32-bit BGRA colors (8-bit channels, 4 bytes) using NormalsImage = ImageTmpl; } // namespace data } // namespace sensor } // namespace carla