Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
VisualDL
提交
34caf1a3
V
VisualDL
项目概览
PaddlePaddle
/
VisualDL
1 年多 前同步成功
通知
88
Star
4655
Fork
642
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
5
Wiki
分析
仓库
DevOps
项目成员
Pages
V
VisualDL
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
5
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
34caf1a3
编写于
12月 29, 2017
作者:
S
superjom
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add image
上级
3f63067c
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
103 addition
and
0 deletion
+103
-0
visualdl/utils/image.h
visualdl/utils/image.h
+84
-0
visualdl/utils/test_image.cc
visualdl/utils/test_image.cc
+19
-0
未找到文件。
visualdl/utils/image.h
0 → 100644
浏览文件 @
34caf1a3
#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.0
f
:
127.0
f
)
/
max_val
;
}
else
{
scale
=
(
image_max
<
image_max
<
kZeroThreshold
?
0.0
f
:
255.0
f
)
/
image_max
;
offset
=
0.0
f
;
}
// 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
visualdl/utils/test_image.cc
0 → 100644
浏览文件 @
34caf1a3
#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.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录