摘要: JSP文件结构及主要标签 ... 其他 HTML 语言 其他 HTML 语言 JSP示例(Hello.jsp) JSP示例(Hello_Date.jsp) JSP示例(浏览结果) JSP语法概述 n JSP原始代码中包含了JSP元素和Template(模板) data两类 n Template data指的是JSP引擎不处理的部分,即标记以外的部分... 阅读全文
posted @ 2008-09-12 18:01 zqblog007 阅读(430) 评论(0) 推荐(0) 编辑
摘要: 第四讲 DICOM介质存储功能与文件格式 在上一讲中,我们介绍了DICOM标准中的网络传输功能,即利用通信线路进行DICOM信息交换。这一讲将介绍通过存储介质而进行的信息交换。将图像、诊断、检查的结果等信息存储在如软盘和光盘等存储介质中,实现在不同的系统之间在不同的时间内进行信息交换,也可以实现信息长久的保存。 通过介质进行信息交换,与通过通信信道进行信息交换,两者既有联系又有区别。它们都使用了D... 阅读全文
posted @ 2008-09-12 17:46 zqblog007 阅读(1189) 评论(0) 推荐(0) 编辑
摘要: 2008年9月4日 星期四 09时31分 第五讲 医学图像的信息组织及其表现 如同我们前面所介绍的那样,DICOM是有关医学图像的标准。前面介绍了图像在存储介质和通信环境下的交换,本讲主要介绍有关图像的组织和表现方面的内容。 所谓表现(Presentation)是指图像数据在显示设备或胶片上完成可视化的过程。它要求在不同的系统,不同特性的设备上达到一致的显示效果,即视觉等价。这样才能保证临床应用上... 阅读全文
posted @ 2008-09-12 17:46 zqblog007 阅读(466) 评论(0) 推荐(0) 编辑
摘要: 第三讲 DICOM消息交换和网络通信 正如DICOM标准 本身的命名那样,DICOM标准 要解决的一个主要问题就是 网络传输,也就是 在各种各样的网络硬件和软件的环境下,如何能够实现 医学图像 可靠地高效地传送到 期望的目的计算机中。为此,DICOM标准采取的策略是 在成熟的标准化的网络环境基础上 增加对医学图像的支持,而不是从最低层开始定义,这样就可以直接利用 现有的网络... 阅读全文
posted @ 2008-09-12 17:45 zqblog007 阅读(571) 评论(0) 推荐(0) 编辑
摘要: MyWindow.cs: MyWindow.cs Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> 1using System; 2/**//**//**//// 3/// 运算类 4/// 5class Opera... 阅读全文
posted @ 2008-09-12 17:41 zqblog007 阅读(204) 评论(0) 推荐(0) 编辑
摘要: Program2.cs: Program2.cs Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> 1using System; 2class Program2 3{ 4 static void Main(string[] arg... 阅读全文
posted @ 2008-09-12 17:36 zqblog007 阅读(143) 评论(0) 推荐(0) 编辑
摘要: Program.cs: Program1.cs Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> 1using System; 2class Program1 3{ 4 static void Main(string[] args... 阅读全文
posted @ 2008-09-12 17:28 zqblog007 阅读(155) 评论(0) 推荐(0) 编辑
摘要: Program.cs: Program.cs Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> 1using System; 2class Program 3{ 4 static void Main(string[] args) ... 阅读全文
posted @ 2008-09-12 17:22 zqblog007 阅读(1784) 评论(0) 推荐(0) 编辑
摘要: link.h: 对线性表的各种操作函数 Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> 1#include"iostream.h" 2//1.初始化单链表 3void InitList(LNode *&HL) 4{ 5 ... 阅读全文
posted @ 2008-09-12 17:08 zqblog007 阅读(382) 评论(0) 推荐(0) 编辑
摘要: list.h: 对线性表的各种操作函数 Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> 1void InsertRear(List& L,const ElemType& item) 2{ 3 if(L.size==MaxSize)... 阅读全文
posted @ 2008-09-12 17:02 zqblog007 阅读(573) 评论(0) 推荐(0) 编辑
摘要: 使用 const变量 Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> 1//p1-12.cpp:使用const变量 2#include"iostream.h" 3const double PI=3.1416;//声明常量(const变量... 阅读全文
posted @ 2008-09-12 16:53 zqblog007 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 测试 布尔类型数据 Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->//p1-11.cpp:测试布尔类型数据 #include void main() { //声明bool变量,并初始化 bool flag1 = False;... 阅读全文
posted @ 2008-09-12 16:51 zqblog007 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 测试 转义字符 Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> 1//p1-10:测试转义字符 2#include 3void main() 4{ 5 char c1='\a',TAB='\t'; 6 7 //阵铃... 阅读全文
posted @ 2008-09-12 16:48 zqblog007 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 测试 字符型数据 运算和输入输出 Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> 1//p1-9.cpp:测试字符型数据运算和输入输出 2#include"iostream.h"//包含iostream.h头文件 3void mai... 阅读全文
posted @ 2008-09-12 16:44 zqblog007 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 测试 八进制、十进制和十六进制数 运算和输入输出 Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> 1//p1-7.cpp:测试八进制、十进制和十六进制数运算和输入输出 2#include"iostream.h" 3void main... 阅读全文
posted @ 2008-09-12 16:40 zqblog007 阅读(413) 评论(0) 推荐(0) 编辑
摘要: 测试整型数据 输入输出 算术运算 和 变量溢出 Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> 1//p1-6.cpp:测试整型数据输入输出\算术运算和变量溢出 2#include//包含iostream.h头文件 3void ma... 阅读全文
posted @ 2008-09-12 16:36 zqblog007 阅读(196) 评论(0) 推荐(0) 编辑