提交 34caf1a3 编写于 作者: S superjom

add image

上级 3f63067c
#ifndef VISUALDL_UTILS_IMAGE_H
#define VISUALDL_UTILS_IMAGE_H
#include <glog/logging.h>
#include <Eigen/Core>
#include <unsupported/Eigen/CXX11/Tensor>
namespace visualdl {
using uint8_t = unsigned char;
/*
* 2: height*width, channel
*/
template <typename T>
using ImageDT = Eigen::Matrix<T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor>;
using Uint8Image = ImageDT<uint8_t>;
/*
* hw: height*width
* depth: number of channels
*/
static void NormalizeImage(Uint8Image* image,
float* buffer,
int hw,
int depth) {
Eigen::Map<Eigen::MatrixXf> values(buffer, depth, hw);
CHECK_EQ(image->size(), hw * depth);
CHECK_EQ(image->row(0).size(), hw);
CHECK_EQ(image->col(0).size(), depth);
std::vector<int> infinite_pixels;
// compute min and max ignoring nonfinite pixels
float image_min = std::numeric_limits<float>::infinity();
float image_max = -image_min;
for (int i = 0; i < hw; i++) {
bool finite = true;
for (int j = 0; j < depth; j++) {
// if infinite, skip this pixel
if (!std::isfinite(values(j, i))) {
infinite_pixels.emplace_back(i);
finite = false;
break;
}
}
if (finite) {
for (int j = 0; j < depth; j++) {
float v = values(j, i);
image_min = std::min(image_min, v);
image_max = std::max(image_max, v);
}
}
}
// Pick an affine transform into uint8
const float kZeroThreshold = 1e-6;
float scale, offset;
if (image_min < 0) {
float max_val = std::max(std::abs(image_min), image_max);
scale = (max_val < kZeroThreshold ? 0.0f : 127.0f) / max_val;
} else {
scale =
(image_max < image_max < kZeroThreshold ? 0.0f : 255.0f) / image_max;
offset = 0.0f;
}
// Transform image, turning nonfinite values to bad_color
for (int i = 0; i < depth; i++) {
auto tmp = scale * values.row(i).array() + offset;
image->row(i) = tmp.cast<uint8_t>();
}
for (int pixel : infinite_pixels) {
for (int i = 0; i < depth; i++) {
// TODO(ChunweiYan) use some highlight color to represent infinite pixels.
(*image)(pixel, i) = (uint8_t)0;
}
}
}
} // namespace visualdl
#endif
#include "visualdl/utils/image.h"
#include <gtest/gtest.h>
using namespace visualdl;
TEST(image, NormalizeImage) {
Uint8Image image(128, 3);
const int size = 128 * 3;
float arr[size];
for (int i = 0; i < size; i++) {
// set a strange scale
arr[i] = 234. * (rand() / RAND_MAX - 0.5);
}
NormalizeImage(&image, arr, 3, 128);
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册