著者
森 崇圭 菊池 司
出版者
一般社団法人 映像情報メディア学会
雑誌
映像情報メディア学会技術報告 (ISSN:13426893)
巻号頁・発行日
vol.40, pp.49-52, 2016

インターネットの普及によりメディアの多様化が進み,誰もが気軽に多くのメディアに接することができるようになった.そのような中で,企業は効果的な広告のあり方を模索しなければならない時代であると言える.本研究では既存のロゴデザインを分析,分類し,最適なモーショングラフィックスの生成を目的とする.ロゴマーク,ロゴタイプ,配色,モーションといったロゴムービーを構成する要素の調査を行い,すでに存在するロゴを印象評価により分類し,さらにモーションに関する印象評価も同様に行うことで,それぞれが持つイメージを明らかにし,その結果に基づき最適なロゴデザインとモーションの組み合わせ手法を提案する.
著者
葛原 和三
出版者
錦正社
雑誌
軍事史学 (ISSN:03868877)
巻号頁・発行日
vol.40, no.1, pp.19-37, 2004-06
著者
上野 照剛
出版者
一般社団法人 電気学会
雑誌
電氣學會雜誌 (ISSN:00202878)
巻号頁・発行日
vol.104, no.2, pp.87-89, 1984-02-20 (Released:2008-04-17)
参考文献数
10
被引用文献数
1
著者
石崎 一明 安江 俊明 川人 基弘 小松 秀昭
出版者
一般社団法人情報処理学会
雑誌
情報処理学会論文誌プログラミング(PRO) (ISSN:18827802)
巻号頁・発行日
vol.43, no.8, pp.110, 2002-09-15

本発表では,Java などの動的クラスロードをともなう言語において,実装が容易な動的メソッド呼び出しの直接devirtualization 手法を提案する.本手法では,コンパイル時に動的メソッド呼び出しに対して直接devirtualization されたコードとメソッドがオーバライドされた場合に実行する動的メソッド呼び出し,の2 種類のコードを生成する.最初は前者を実行し,オーバライドが起きたときにコードを書き換えて後者を実行する.本手法では,コード書換えによって直接devirtualization されたコードを無効化するので,脱最適化のような再コンパイルのための複雑な実装が不要である.一方,再コンパイルを不要にするためにコンパイル時に2 種類のコードを用意するので,制御フロー上に合流点が生成される.一般に制御フローの合流点はコンパイラの最適化を妨げるが,本発表では合流点が存在しても十分な最適化を可能にする手法を示す.さらに,本手法と他のdevirtualization 手法を組み合わせてJava のJust-In-Time コンパイラに実装し,評価を行った.その結果,devirtualizationを行わない場合に比べ,SPECjvm98 とSPECjbb2000 において0 ?181%(平均24%)性能を改善できることを示す.This presentation presents a direct devirtualization technique for a language such as Java with dynamic class loading.The implementation of this technique is easy.For a given dynamic method call,a compiler generates the inlined code of the method,together with the code of making the dynamic call.Only the inlined code is actually executed until our assumption about the devirtualizationbecomes invalidated,at which time the compiler performs code patching to make the code of dynamic call executed subsequently.This technique does not require the complicated implementation such as deoptimization to recompile the method that is active on stack.Since this technique prevents some optimizations across the merge point between the inlined code and the dynamic call,we have further more proposed optimization techniques effectively.We made some experiments to understand the effectiveness and characteristics of the devirtualization techniques in our Java Just-In-Time compiler.In summary, we improved the execution performance of SPECjvm98 and SPECjbb2000 by ranging from 0%to 181%(with the geometric mean of 24%).
著者
石崎 一明 安江 俊明 川人 基弘 小松 秀昭
出版者
一般社団法人情報処理学会
雑誌
情報処理学会論文誌 (ISSN:18827764)
巻号頁・発行日
vol.43, no.1, pp.124-136, 2002-01-15
参考文献数
13
被引用文献数
1

本論文では,Java等の動的クラスローディングをともなう言語において,実装が容易な動的メソッド呼び出しの直接devirtualization手法を提案する.本手法では,動的メソッド呼び出しに対して直接devirtualizationされたコードと,メソッドがオーバライドされた場合に実行する動的メソッド呼び出しの2種類のコードをコンパイル時に生成する.最初は前者を実行し,メソッドのオーバライドが起きたときにコードを書き換えて後者を実行する.本手法では,コード書換えによって直接devirtualizationされたコードを無効化するので,脱最適化のような再コンパイルのための複雑な実装が不要である.一方,再コンパイルを不要にするためにコンパイル時に2種類のコードを用意するため,制御フロー上に合流点が生成される.一般に制御フローの合流点はコンパイラの最適化を妨げるが,本論文では合流点が存在しても十分な最適化を可能にする手法を示す.また本手法と他のdevirtualization手法を組み合わせてJavaのJust-In-Timeコンパイラに実装し評価を示す.その結果,devirtualizationを行わない場合に比べ,SPECjvm98とSPECjbb2000において0?181%(平均24%)性能を改善できることを示す.This paper presents a direct devirtualization technique for a language such as Java with dynamic class loading.The implemetation of this technique is easy. For a given dynamic method call, a compiler generates the inlined code of the method, together with the code of making the dynamic call. Only the inlined code is actually executed until our assumption about the devirtualization becomes invalidated, at which time the compiler performs code patching to make the code of dynamic call executed subsequently. This technique does not require complicated implementations such as deoptimization to recompile the method that is active on the stack. Since this technique prevents some optimizations across the merge point between the inlined code and the dynamic call, we have furthermore proposed optimization techniques effectively. We made some experiments to understand the effectiveness and characteristics of the devirtualization techniques in our Java Just-In-Time compiler. To summarize our result, we improved the execution performance of SPECjvm98 and SPECjbb2000 ranging from 0% to 181% (with the geometric mean of 24%).
著者
Kenji YOSHIDA Hisanori ITOH
出版者
Meteorological Society of Japan
雑誌
気象集誌. 第2輯 (ISSN:00261165)
巻号頁・発行日
vol.90, no.3, pp.377-401, 2012-06-25 (Released:2012-06-30)
参考文献数
46
被引用文献数
12 17

This study examines the indirect effect of tropical cyclones (TCs) on cases of heavy rainfall during the Baiu season in Kyushu, Japan using data analyses and numerical experiments. A detailed analysis of the heavy rainfall event that occurred on 7 June 1999 (JST) is performed. This event was remotely affected by Typhoon Maggie (9903), which was located approximately 2000 km from Kyushu at the time. As Typhoon Maggie passed close to Taiwan, a high potential vorticity (PV) zone appeared to the north of Taiwan. A low PV region formed simultaneously to the east of Taiwan, corresponding to a northwestward extension of the Pacific high. These dynamical changes induced an enhanced southerly moisture flux between the high PV zone and the low PV region, leading to moisture convergence and heavy rain in the vicinity of Kyushu. During this time, Typhoon Maggie also caused the northward advection of a separate tropical disturbance.The high PV zone to the north of Taiwan was produced by diabatic heating associated with interplay between the circulation of Typhoon Maggie and the topography of Taiwan. In contrast, the low PV region was formed through the advection of low-PV air from low latitudes by Typhoon Maggie. A piecewise PV inversion diagnostic shows that the low PV region was the largest contributor to the southerly moisture flux, although both Typhoon Maggie and the high PV zone also made positive contributions. Numerical experiments reveal that the precipitation in and around Kyushu was enhanced by both the topography of Taiwan and the northward advection of the additional tropical disturbance.This study identifies a new mechanism as an indirect effect of TCs. The core element of this mechanism is a large moisture flux south of Kyushu, which is termed “moisture road,” and the difference from “atmospheric river” is discussed. This mechanism is not unique to Typhoon Maggie, as other cases of heavy rainfall in and around Kyushu are associated with similar situations.
著者
富永 孝昭 古木 達郎
出版者
日本蘚苔類学会
雑誌
蘚苔類研究 (ISSN:13430254)
巻号頁・発行日
vol.11, no.3, pp.53-62, 2014 (Released:2018-07-03)

Japanese species of the sect. Riccia of the genus Riccia (Ricciaceae, Hepatics) were taxonomically revised and four species were recognized: they are R. beyrichiana Hampe ex Lehm., R. bifurca Hoffm, R. glauca L., and R. subbifurca Warnst. ex Croz. Most specimens previously named by Japanese bryologists as R. glauca are revealed to be R. bifurca, which is commonly distributed from Hokkaido to Kyushu. Riccia glauca is, on the contrary, very rare in Japan. Both R. beyrichiana and R. subbifurca are newly reported from Japan. Descriptions, diagnostic characters, distribution and illustrations of these four species are provided based on Japanese plants.
著者
北岡 茂男
出版者
日本応用動物昆虫学会
雑誌
日本応用動物昆虫学会誌 (ISSN:00214914)
巻号頁・発行日
vol.15, no.3, pp.161-167, 1971-09-25 (Released:2009-02-12)
参考文献数
22
被引用文献数
2 3

マダニ類のマダニ科成ダニの吸血成長過程,またはヒメダニ科の若・成ダニの吸血時における体液浸透圧調節機能の違いを明らかにするため,主要陰イオン成分であるCl-につき宿主血液,ダニ体液,唾液,基節液,尿,体内での各含有量を比較し,その値の浸透圧調節機能における意義につき検討した。1) マダニ科のフタトゲチマダニ,オウシマダニはその吸血過程を通じ,またヒメダニ科のツバメヒメダニ,O. moubataはそれらの発育段階や吸血条件などの著しい相違にもかかわらず,宿主のそれより常に高い100∼160meq/lのほぼ恒常の体液Cl-濃度値を保った。2) 唾液Cl-濃度は以上の種類と条件下において体液のCl-濃度に依存しほぼ同等か,それよりわずかに高めの値であった。3) マダニ類におけるマルピギー管は,昆虫類と比較してCl平衡の上では二次的器官であると言える。4) 体液浸透圧の恒常性を保つための余剰水分と塩分の処理は,マダニ科ダニでは主として唾液分泌による宿主への還元により,ヒメダニ科ダニでは基節器官からの分泌により行なっており,吸血期間の長短を主とする吸血習性や吸血機構の相違と明らかに関連性があるものと考えられる。
著者
鈴本 正樹 島田 純 山中 昇
出版者
日本DDS学会
雑誌
Drug Delivery System (ISSN:09135006)
巻号頁・発行日
vol.21, no.5, pp.523-528, 2006 (Released:2006-12-15)
参考文献数
18

近年の薬剤耐性菌の急増に伴い, 従来まで経口抗菌薬により良好な経過をとっていた急性中耳炎や副鼻腔炎の難治化が臨床上の大きな問題となっている. 薬物移行が不良である中耳腔および副鼻腔における感染症に対しては, 抗菌薬の持つ殺菌作用のみでなく, 有効な抗菌薬濃度を感染局所へ到達させるdrug delivery system (DDS) の利用が鍵となる.チンチラ実験的中耳炎モデルを用い, 徐放抗菌薬製剤による治療効果についての比較検討を行った結果, 徐放抗菌薬製剤は全身投与あるいは局所点耳投与に比較して高い除菌効果を示した. 徐放製剤を用いた局所抗菌薬治療は, 感染局所へ高濃度の抗菌薬を長期間作用させることができ, 薬剤耐性菌が急増する現状においても有効な治療法の一つとなるものと期待される.

1 0 0 0 OA 美術千草の種

著者
浅井広信 著
出版者
山田直三郎
巻号頁・発行日
vol.1, 1893

1 0 0 0 力学

著者
国井修二郎 千田香苗共著
出版者
丸善
巻号頁・発行日
1962