зеркало из
1
0
Форкнуть 0

Fix wrapper support for color images.

This commit is contained in:
Helen Oleynikova 2020-12-02 18:17:10 +01:00
Родитель 158db516ed
Коммит 1f38a72740
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -31,7 +31,7 @@ void AsaRosProvider::GetPixelData(const void* frame_context,
const auto iter = image_queue_.find(image_key);
if (iter != image_queue_.end()) {
const cv::Mat& image = iter->second;
size_t image_size = image.total() * image.elemSize();
size_t image_size = image.total() * image.elemSize() * image.channels();
if (image_size != buffer_size) {
LOG(ERROR) << "Image size and buffer size don't match! Image size: "
<< image_size << " Buffer size: " << buffer_size;