而現有的搜索引擎主要是基於文本信息的檢索,不能滿足用戶對音視頻信息、多媒體信息檢索的需求。要實現對多媒體內容的搜索,關鍵要定義一種標準的描述多媒體內容的接口,規範對多媒體內容的描述。 1998年10月,MPEG(運動圖像專家組)組織就著手製定MPEG-7標準,稱為“多媒體內容描述接口”(multimedia content des cription interface)。 該標準的第4版已於2000年10月公佈。本篇文章對MPEG-7給與介紹。
- Aug 30 Sat 2008 21:39
-
MPEG-7
隨著多媒體技術的發展,視音頻信息越來越多,面對大量的資源,用戶希望能夠通過一個簡單的搜索引擎快速地找到所需要的信息。
而現有的搜索引擎主要是基於文本信息的檢索,不能滿足用戶對音視頻信息、多媒體信息檢索的需求。要實現對多媒體內容的搜索,關鍵要定義一種標準的描述多媒體內容的接口,規範對多媒體內容的描述。 1998年10月,MPEG(運動圖像專家組)組織就著手製定MPEG-7標準,稱為“多媒體內容描述接口”(multimedia content des cription interface)。 該標準的第4版已於2000年10月公佈。本篇文章對MPEG-7給與介紹。
而現有的搜索引擎主要是基於文本信息的檢索,不能滿足用戶對音視頻信息、多媒體信息檢索的需求。要實現對多媒體內容的搜索,關鍵要定義一種標準的描述多媒體內容的接口,規範對多媒體內容的描述。 1998年10月,MPEG(運動圖像專家組)組織就著手製定MPEG-7標準,稱為“多媒體內容描述接口”(multimedia content des cription interface)。 該標準的第4版已於2000年10月公佈。本篇文章對MPEG-7給與介紹。
- Aug 25 Mon 2008 23:44
-
牡羊座 本週運勢【2008-08-23 到 2008-08-30】
- Aug 25 Mon 2008 10:39
-
Subversion 控制版本系統安裝雜記
會寫這篇文章純粹是剛好有朋友需要使用到Subversion 控制版本系統,以小弟目前的事業似乎還用不到這個控制版本的系統來幫助我管理軟體版本。或許大家對Subversion 控制版本系統比較沒有印象,但是對於另外由Karl Fogel 與 Jiim Blandy 成立了 Cyclic Software, 提供 Concurrent Versions System (CVS)應該就有所印象了吧。Subversion 控制版本系統的原始設計目標其實很簡單:
功能上要可以完全取代 CVS原先的功能。
在修正最顯而易見的bug時候,還要保留原來相同的發展模式。
必須和 CVS 很相似, 任何 CVS 原先的使用者不需要花費太多的精力便可以輕易上手。
功能上要可以完全取代 CVS原先的功能。
在修正最顯而易見的bug時候,還要保留原來相同的發展模式。
必須和 CVS 很相似, 任何 CVS 原先的使用者不需要花費太多的精力便可以輕易上手。
- Aug 17 Sun 2008 15:02
-
牡羊座 本週運勢【2008-08-16 到 2008-08-22】
- Aug 11 Mon 2008 19:25
-
牡羊座 本週運勢【2008-08-09 到 2008-08-15】
- Aug 04 Mon 2008 20:49
-
牡羊座 本週運勢【2008-08-02 到 2008-08-08】
- Aug 03 Sun 2008 21:13
-
研究所推薦甄試心得
當初我推薦甄試上了中正通訊工程所(直接錄取免口試)和自己學校的資管所;
事實上當初我好像也只報了這兩所,中山資管,中央通工和清大通工而已。
以我當時大學的畢業成績去報這些學校,現在想起來只覺得當初真是不知天高地厚啊,哈哈哈!
- Jul 26 Sat 2008 16:11
-
Types of JDBC technology drivers
Types of JDBC technology drivers
JDBC technology drivers fit into one of four categories:
A JDBC-ODBC bridge provides JDBC API access via one or more ODBC drivers. Note that some ODBC native code and in many cases native database client code must be loaded on each client machine that uses this type of driver. Hence, this kind of driver is generally most appropriate when automatic installation and downloading of a Java technology application is not important. For information on the JDBC-ODBC bridge driver provided by Sun, see JDBC-ODBC Bridge Driver.
A native-API partly Java technology-enabled driver converts JDBC calls into calls on the client API for Oracle, Sybase, Informix, DB2, or other DBMS. Note that, like the bridge driver, this style of driver requires that some binary code be loaded on each client machine.
A net-protocol fully Java technology-enabled driver translates JDBC API calls into a DBMS-independent net protocol which is then translated to a DBMS protocol by a server. This net server middleware is able to connect all of its Java technology-based clients to many different databases. The specific protocol used depends on the vendor. In general, this is the most flexible JDBC API alternative. It is likely that all vendors of this solution will provide products suitable for Intranet use. In order for these products to also support Internet access they must handle the additional requirements for security, access through firewalls, etc., that the Web imposes. Several vendors are adding JDBC technology-based drivers to their existing database middleware products.
A native-protocol fully Java technology-enabled driver converts JDBC technology calls into the network protocol used by DBMSs directly. This allows a direct call from the client machine to the DBMS server and is a practical solution for Intranet access. Since many of these protocols are proprietary the database vendors themselves will be the primary source for this style of driver. Several database vendors have these in progress.
JDBC technology drivers fit into one of four categories:
A JDBC-ODBC bridge provides JDBC API access via one or more ODBC drivers. Note that some ODBC native code and in many cases native database client code must be loaded on each client machine that uses this type of driver. Hence, this kind of driver is generally most appropriate when automatic installation and downloading of a Java technology application is not important. For information on the JDBC-ODBC bridge driver provided by Sun, see JDBC-ODBC Bridge Driver.
A native-API partly Java technology-enabled driver converts JDBC calls into calls on the client API for Oracle, Sybase, Informix, DB2, or other DBMS. Note that, like the bridge driver, this style of driver requires that some binary code be loaded on each client machine.
A net-protocol fully Java technology-enabled driver translates JDBC API calls into a DBMS-independent net protocol which is then translated to a DBMS protocol by a server. This net server middleware is able to connect all of its Java technology-based clients to many different databases. The specific protocol used depends on the vendor. In general, this is the most flexible JDBC API alternative. It is likely that all vendors of this solution will provide products suitable for Intranet use. In order for these products to also support Internet access they must handle the additional requirements for security, access through firewalls, etc., that the Web imposes. Several vendors are adding JDBC technology-based drivers to their existing database middleware products.
A native-protocol fully Java technology-enabled driver converts JDBC technology calls into the network protocol used by DBMSs directly. This allows a direct call from the client machine to the DBMS server and is a practical solution for Intranet access. Since many of these protocols are proprietary the database vendors themselves will be the primary source for this style of driver. Several database vendors have these in progress.
- Jul 26 Sat 2008 15:38
-
牡羊座 本週運勢【2008-07-26 到 2008-08-02】
- Jul 19 Sat 2008 19:32
-
牡羊座 本週運勢【2008-07-19 到 2008-07-25】
- Jul 16 Wed 2008 17:14
-
牡羊座 本週運勢【2008-07-12 到 2008-07-18】