- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章java简单实现八叉树图像处理代码示例由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
一晃工作有段时间了,第一次写博客,有点不知道怎么写,大家将就着看吧,说的有什么不正确的也请大家指正.
最近工作中用到了一个图像压缩的功能。找了一些工具,没有太好的选择。最后选了一个叫jdeli的,奈何效率又成了问题。我迫于无奈就只能研究了下它的源码,却发现自己对它的一个减色量化算法起了兴趣,可是尴尬的自己完全不明白它写的什么,就起了一个自己实现一个量化颜色算法的念头.
自己找了一些资料,找到三个比较常用的颜色处理算法:
流行色算法:
具体的算法就是,先对一个图像的所有颜色出现的次数进行统计,选举出出现次数最多的256个颜色作为图片的调色板的颜色,然后再次遍历图片的所有像素,对每个像素找出调色板中的最接近的颜色(这里我用的是方差的方式),写回到图片中。这个算法的实现比较简单,但是失真比较严重,图像中一些出现频率较低,但对人眼的视觉效挺明显的信息将丢失。比如,图像中存在的高亮度斑点,由于出现的次数少,很可能不能被算法选中,将被丢失.
中位切分算法:
这个算法我没有研究,想要了解的同学,可以看下这篇文章,里面有三种算法的介绍.
八叉树 。
这个算法就是我最后选用的算法,它的主要思想就是把图像的RGB颜色值转成二进制分布到八叉树中,例如:(173,234,144) 。
转成二进制就是(10101101,11101010,10010000),将R,G,B的第一位取出来组成(111),作为root节点的子节点,其中111作为root子节点数组的索引,以此类推,一直到最后一位,然后在叶子节点上存放这个颜色的分量值以及其出现的次数。具体看图.
其中我比较疑惑的有一个处理就是叶子节点的合并策略,这儿我用的最笨的一个方法,就是找到层次最深的节点,然后合并,有点简单粗暴,有别的比较好的方法,也请大家给我留言。图片太大上传不了了,直接上代码了,代码没有重构,大家凑合看吧.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
|
package
com.gys.pngquant.octree;
import
java.util.ArrayList;
import
java.util.HashMap;
import
java.util.List;
import
java.util.Map;
/**
*
*
* @ClassName 类名:Node
* @Description 功能说明:
* <p>
* 八叉树实现
* </p>
*
* 2015-12-16 guoys 创建该类功能。
*
**********************************************************
* </p>
*/
public
class
Node{
private
int
depth =
0
;
// 为0时为root节点
private
Node parent;
private
Node[] children =
new
Node[
8
];
private
Boolean isLeaf =
false
;
private
int
rNum =
0
;
private
int
gNum =
0
;
private
int
bNum =
0
;
private
int
piexls =
0
;
private
Map<Integer, List<Node>> levelMapping;
// 存放层次和node的关系
public
int
getRGBValue(){
int
r =
this
.rNum /
this
.piexls;
int
g =
this
.gNum /
this
.piexls;
int
b =
this
.bNum /
this
.piexls;
return
(r <<
16
| g <<
8
| b);
}
public
Map<Integer, List<Node>> getLevelMapping() {
return
levelMapping;
}
public
void
afterSetParam(){
if
(
this
.getParent() ==
null
&&
this
.depth ==
0
){
levelMapping =
new
HashMap<Integer, List<Node>>();
for
(
int
i =
1
; i <=
8
; i++) {
levelMapping.put(i,
new
ArrayList<Node>());
}
}
}
public
int
getrNum() {
return
rNum;
}
public
void
setrNum(
int
rNum) {
if
(!isLeaf){
throw
new
UnsupportedOperationException();
}
this
.rNum = rNum;
}
public
int
getgNum() {
return
gNum;
}
public
void
setgNum(
int
gNum) {
if
(!isLeaf){
throw
new
UnsupportedOperationException();
}
this
.gNum = gNum;
}
public
int
getbNum() {
return
bNum;
}
public
void
setbNum(
int
bNum) {
if
(!isLeaf){
throw
new
UnsupportedOperationException();
}
this
.bNum = bNum;
}
public
int
getPiexls() {
return
piexls;
}
public
void
setPiexls(
int
piexls) {
if
(!isLeaf){
throw
new
UnsupportedOperationException();
}
this
.piexls = piexls;
}
public
int
getDepth() {
return
depth;
}
// 返回节点原有的子节点数量
public
int
mergerLeafNode(){
if
(
this
.isLeaf){
return
1
;
}
this
.setLeaf(
true
);
int
rNum =
0
;
int
gNum =
0
;
int
bNum =
0
;
int
pixel =
0
;
int
i =
0
;
for
(Node child :
this
.children) {
if
(child ==
null
){
continue
;
}
rNum += child.getrNum();
gNum += child.getgNum();
bNum += child.getbNum();
pixel += child.getPiexls();
i +=
1
;
}
this
.setrNum(rNum);
this
.setgNum(gNum);
this
.setbNum(bNum);
this
.setPiexls(pixel);
this
.children =
null
;
return
i;
}
// 获取最深层次的node
public
Node getDepestNode(){
for
(
int
i =
7
; i >
0
; i--) {
List<Node> levelList =
this
.levelMapping.get(i);
if
(!levelList.isEmpty()){
return
levelList.remove(levelList.size() -
1
);
}
}
return
null
;
}
// 获取叶子节点的数量
public
int
getLeafNum(){
if
(isLeaf){
return
1
;
}
int
i =
0
;
for
(Node child :
this
.children) {
if
(child !=
null
){
i += child.getLeafNum();
}
}
return
i;
}
public
void
setDepth(
int
depth) {
this
.depth = depth;
}
public
Node getParent() {
return
parent;
}
public
void
setParent(Node parent) {
this
.parent = parent;
}
public
Node[] getChildren() {
return
children;
}
public
Node getChild(
int
index){
return
children[index];
}
public
void
setChild(
int
index, Node node){
children[index] = node;
}
public
Boolean isLeaf() {
return
isLeaf;
}
public
void
setPixel(
int
r,
int
g,
int
b){
this
.rNum += r;
this
.gNum += g;
this
.bNum += b;
this
.piexls +=
1
;
}
public
void
setLeaf(Boolean isLeaf) {
this
.isLeaf = isLeaf;
}
public
void
add8Bite2Root(
int
_taget,
int
_speed){
if
(depth !=
0
||
this
.parent !=
null
){
throw
new
UnsupportedOperationException();
}
int
speed =
7
+
1
- _speed;
int
r = _taget >>
16
&
0xFF
;
int
g = _taget >>
8
&
0xFF
;
int
b = _taget &
0xFF
;
Node proNode =
this
;
for
(
int
i=
7
;i>=speed;i--){
int
item = ((r >> i &
1
) <<
2
) + ((g >> i &
1
) <<
1
) + (b >> i &
1
);
Node child = proNode.getChild(item);
if
(child ==
null
){
child =
new
Node();
child.setDepth(
8
-i);
child.setParent(proNode);
child.afterSetParam();
this
.levelMapping.get(child.getDepth()).add(child);
proNode.setChild(item, child);
}
if
(i == speed){
child.setLeaf(
true
);
}
if
(child.isLeaf()){
child.setPixel(r, g, b);
break
;
}
proNode = child;
}
}
public
static
Node build(
int
[][] matrix,
int
speed){
Node root =
new
Node();
root.afterSetParam();
for
(
int
[] row : matrix) {
for
(
int
cell : row) {
root.add8Bite2Root(cell, speed);
}
}
return
root;
}
public
static
byte
[] mergeColors(Node root,
int
maxColors){
byte
[] byteArray =
new
byte
[maxColors *
3
];
List<
byte
> result =
new
ArrayList<
byte
>();
int
leafNum = root.getLeafNum();
try
{
while
(leafNum > maxColors){
int
mergerLeafNode = root.getDepestNode().mergerLeafNode();
leafNum -= (mergerLeafNode -
1
);
}
}
catch
(Exception e){
e.printStackTrace();
}
fillArray(root, result,
0
);
int
i =
0
;
for
(
byte
byte1 : result) {
byteArray[i++] = byte1;
}
return
byteArray;
}
private
static
void
fillArray(Node node, List<
byte
> result,
int
offset){
if
(node ==
null
){
return
;
}
if
(node.isLeaf()){
result.add((
byte
) (node.getrNum() / node.getPiexls()));
result.add((
byte
) (node.getgNum() / node.getPiexls()));
result.add((
byte
) (node.getbNum() / node.getPiexls()));
}
else
{
for
(Node child : node.getChildren()) {
fillArray(child, result, offset);
}
}
}
}
|
可怜我大学唯二挂的数据结构。代码实现的只是八叉树,对一个1920*1080图片量化,耗时大概是450ms,如果层次-2的话大概是100ms左右.
好吧,这篇就这样吧,本来写之前,感觉自己想说的挺多的,结果写的时候就不知道怎么说了,大家见谅.
总结 。
以上就是本文关于java简单实现八叉树图像处理代码示例的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站其他相关专题,如有不足之处,欢迎留言指出。感谢朋友们对本站的支持! 。
原文链接:http://blog.csdn.net/u013206238/article/details/50328359 。
最后此篇关于java简单实现八叉树图像处理代码示例的文章就讲到这里了,如果你想了解更多关于java简单实现八叉树图像处理代码示例的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我想在我的 Tree 类中创建一个函数来遍历 n-ary Tree[T] 以取回具有 (level, T) 的元组,以便该 Tree 的用户可以执行类似 tree.traverse.foreach{
给定一个层次格式的数组,它们的直接子级存储在一个连续的数组中,返回一个 n 叉树 给定输入格式: [{'name':'a', 'level': -1}, {'name':'b', 'level
我要求教授给我一份另一个学期的旧作业。它是关于构建一个家谱,然后找到给定的两个节点之间的亲属关系。家谱是关于那美克星人(龙珠z)的,所以每个那美克星人都有一个父亲。 问题是输入是这样的: First
我正在尝试创建一个包含子 vector 的 n 叉树。 这就是我到目前为止所得到的。 在 node.h 文件中我有这个: #include #include using namespa
我正在尝试了解 n 叉树的预序遍历。我一直在阅读,我发现的所有示例都使用左子树和右子树,但是在 n 叉树中,什么是左子树,什么是右子树?有人可以给出一个很好的解释或伪代码吗? 最佳答案 而不是考虑 l
我应该反序列化一个 n 叉树。 这段代码创建了我的树: foodtree.addChildren("Food", { "Plant", "Animal" } ); foodtree.a
我正在尝试创建叉 TreeMap ,但仍然没有成功。这是我的代码: #include #include #include void procStatus(int level) { prin
我有一个二叉树,代表一个解析后的逻辑公式。例如,f = a & b & -c | d 由前缀表示法的列表列表表示,其中第一个元素是运算符(一元或二元),接下来的元素是它们的参数: f = [ |, [
我正在尝试根据给定的输入创建一棵树。那里将有一个根,包括子节点和子子节点。我可以实现树,在其中我可以将子节点添加到特定的主节点(我已经知道根)。但是,我试图弄清楚实现树的推荐方法是什么,我们必须首先从
我在 n 个节点上有一个完整的 19 元树。我标记所有具有以下属性的节点,即它们的所有非根祖先都是最年长或最小的 child (包括根)。我必须为标记节点的数量给出一个渐近界限。 我注意到 第一层有一
如何在不使用递归的情况下遍历 n 叉树? 递归方式: traverse(Node node) { if(node == null) return; for(Node c
我的树/节点类: import java.util.ArrayList; import java.util.List; public class Node { private T data;
关闭。这个问题需要更多focused .它目前不接受答案。 想改善这个问题吗?更新问题,使其仅关注一个问题 editing this post . 4年前关闭。 Improve this questi
我在我的 Java 应用程序中有一个非 UI 使用的所谓的“k-ary”树,我想知道 javax.swing.tree 包是否是完成这项工作的正确工具,即使它与 Swing 打包在一起. 我有一类 W
我正在用 Java 实现 N 叉树;每个节点可以有尽可能多的节点。当我尝试 build 一棵树时,问题就来了。我有一个函数可以递归地创建一个特定高度的树,并根据节点列表分配子节点。当我调用该函数时,根
嗨,我有这段代码来搜索 n 叉树,但它不能正常工作,我不知道这有什么问题当搜索 n4 和 n5 时,它返回 n3怎么了? public FamilyNode findNodeByName(Family
哪个是 C 语言中 N 叉树的简洁实现? 特别是,我想实现一个 n 元树,而不是自平衡的,每个节点中的子节点数量不受限制,其中每个节点都包含一个已经定义的结构,例如: struct task {
#include #include #include typedef struct _Tree { struct _Tree *child; struct _Tree *
我正在编写文件系统层次结构的 N 叉树表示形式,其中每个节点都包含有关它所表示的文件/文件夹的一些信息。 public class TreeNode { private FileSystemE
如何在 R 中为给定数量的分支和深度构建 N 叉树,例如深度为 3 的二叉树? 编辑:将源问题与问答分开。 最佳答案 我想提出解决方案,我用它来构建树数据结构 叶安姆 分支因子。要将数据存储在树中,字
我是一名优秀的程序员,十分优秀!