- 授权协议: BSD
- 开发语言: Java C/C++
- 操作系统: 跨平台
- 软件首页: http://www.flagstonesoftware.com/index.html
软件介绍
Transform SWF提供一套完整的,面向对象的API来分析、操作和生成Flash文件。
Transform SWF 是一个简单易用的用户库,用来读写 Flash 的swf 和 Flash 视频文件。它包含对应每种tag和数据结构的类。提供 C 语言和 Java 语言两种版本。
Java 的示例代码:
import java.awt.Font;
import java.io.IOException;
import com.flagstone.transform.*;
import com.flagstone.transform.util.*;
int width = 6000;
int height = 1000;
int border = 400;
int fontSize = 240;
try {
FSMovie movie = new FSMovie();
Font font = new Font("Arial", Font.PLAIN, 1);
String txt = "The quick, brown, fox jumped over the lazy dog.";
char[] characters = txt.toCharArray();
java.util.Arrays.sort(characters);
FSTextConstructor constructor = new FSTextConstructor(
movie.newIdentifier(), font);
constructor.willDisplay(characters);
FSDefineFont2 definition = constructor.defineFont();
FSDefineText2 text = constructor.defineText( movie.newIdentifier(), txt, fontSize, new FSColor(0,0,0));
movie.setFrameSize(new FSBounds(-border, -border, width, height));
movie.setFrameRate(1.0f);
movie.add(new FSSetBackgroundColor(FSColorTable.lightblue()));
movie.add(definition);
movie.add(text);
movie.add(new FSPlaceObject2(text.getIdentifier(), 1, 0 , 0));
movie.add(new FSShowFrame());
movie.encodeToFile("example.swf");
}
catch (IOException e) {
System.err.println("Cannot write to file");
}
数据挖掘中的新方法:支持向量机
邓乃扬、田英杰 / 科学出版社 / 2004-6-10 / 53.00元
支持向量机是数据挖掘中的一个新方法。支持向量机能非常成功地处理回归问题(时间序列分析)和模式识别(分类问题、判别分析)等诸多问题,并可推广于预测和综合评价等领域,因此可应用于理科、工科和管理等多种学科。目前国际上支持向量机在理论研究和实际应用两方面都正处于飞速发展阶段。希望本书能促进它在我国的普及与提高。 本书对象既包括关心理论的研究工作者,也包括关心应用的实际工作者。对于有关领域的具有高等......一起来看看 《数据挖掘中的新方法:支持向量机》 这本书的介绍吧!
