) CoreImage 2013/5/25 iphone

Size: px
Start display at page:

Download ") CoreImage 2013/5/25 iphone"

Transcription

1 ) CoreImage 2013/5/25 iphone

2 DJ / : takatronix Facebook/Twitter/Skype/LINE/Weibo -> takatronix LEGO FX

3 SEXY SCAN... (SexyMirror)2013/1 iphone

4 ios API UIImagePickerController UI AVFoundation.framework ios4 UI

5 ios (CPU) CoreImage (CPU/GPU) OpenCV (CPU/GPU) vimage (GPU) OpenGL (GPU)

6 UIImagePickerController

7

8

9

10 ViewController.h #import ViewController : UIViewController <UIImagePickerControllerDelegate,UINavigationControllerDelegate>

11 ViewController.h #import ViewController : UIViewController IBOutlet UIImageView*

12 ViewController.m // - (IBAction)openPhotoLibrary:(id)sender { // // // UIImagePickerControllerSourceTypePhotoLibrary // UIImagePickerControllerSourceTypeCamera! if([uiimagepickercontroller issourcetypeavailable:uiimagepickercontrollersourcetypephotolibrary])! { // UIImagePickerController new = alloc + init!! UIImagePickerController* imagepicker = [UIImagePickerController new]; // sourcetype = UIImagePickerControllerSourceTypeCamera; imagepicker.sourcetype = UIImagePickerControllerSourceTypePhotoLibrary; // YES imagepicker.allowsediting = YES; // imagepicker.delegate = self; // [self presentviewcontroller:imagepicker animated:yes completion:^{ // ]; NSLog(@"(1) ");

13 ViewController.m or // or -(void)imagepickercontroller:(uiimagepickercontroller *)picker didfinishpickingmediawithinfo:(nsdictionary *)info {! //! UIImage* originalimage = (UIImage *)[info objectforkey:uiimagepickercontrolleroriginalimage];! //! UIImage* editedimage = (UIImage *)[info objectforkey:uiimagepickercontrollereditedimage]; UIImage* savedimage; if(editedimage){ savedimage = editedimage; else{ savedimage = originalimage; _imageview.image = savedimage; // [self dismissviewcontrolleranimated:yes completion:^{ ];

14 imageview

15

16

17 (^_^;)

18 Safari

19

20

21

22 CoreImage

23 CoreImage.framework

24 ViewController.m #import "ViewController.h" #import ViewController

25 ViewController.m // -(UIImage*)monochromeFilter:(UIImage*)image{ // UIImage CoreImage CIImage* ciimage = [[CIImage alloc] initwithimage:image]; // CoreImage CIFilter* cifilter = [CIFilter filterwithname:@"cicolormonochrome" keysandvalues:kciinputimagekey, ciimage, // RGB // CoreImage // [CIColor colorwithred:1.0 green:0.7 [CIColor colorwithred:1.0 green:1.0 blue:1.0], // ( ) // 0.5 CIContext* cicontext = [CIContext contextwithoptions:nil]; [NSNumber numberwithfloat:1.0], nil]; CGImageRef cgimage = [cicontext createcgimage:cifilter.outputimage fromrect:[cifilter.outputimage extent]]; // CGImageRef UIImage UIImage* retimage = [UIImage imagewithcgimage:cgimage scale:image.scale orientation:uiimageorientationup]; // CGImage CGImageRelease(cgImage); return retimage;

26 ViewController.m // or -(void)imagepickercontroller:(uiimagepickercontroller *)picker didfinishpickingmediawithinfo:(nsdictionary *)info {! //! UIImage* originalimage = (UIImage *)[info objectforkey:uiimagepickercontrolleroriginalimage];! //! UIImage* editedimage = (UIImage *)[info objectforkey:uiimagepickercontrollereditedimage]; UIImage* savedimage; if(editedimage){ savedimage = editedimage; else{ savedimage = originalimage; // // _imageview.image = [self monochromefilter:savedimage]; // [self dismissviewcontrolleranimated:yes completion:^{ ];

27 @"inputcolor", [CIColor colorwithred:1.0 green:0.7 [CIColor colorwithred:1.0 green:1 [NSNumber numberwithfloat:0.5],

28 Instagram

29 ViewController.m // ) -(UIImage*)vignetteFilter:(UIImage*) image{ // UIImage CoreImage CIImage* ciimage = [[CIImage alloc] initwithimage:image]; // CoreImage CIFilter* cifilter = [CIFilter filterwithname:@"civignette" keysandvalues:kciinputimagekey, ciimage, // CoreImage [NSNumber numberwithfloat:2.0], // ( ) // [NSNumber numberwithfloat:1.0], nil]; CIContext* cicontext = [CIContext contextwithoptions:nil]; // CGImageRef cgimage = [cicontext createcgimage:cifilter.outputimage fromrect:[cifilter.outputimage extent]]; // CGImageRef UIImage UIImage* retimage = [UIImage imagewithcgimage:cgimage scale:image.scale orientation:uiimageorientationup]; // CGImage CGImageRelease(cgImage); return retimage;

30 // or -(void)imagepickercontroller:(uiimagepickercontroller *)picker didfinishpickingmediawithinfo:(nsdictionary *)in {! //! UIImage* originalimage = (UIImage *)[info objectforkey:uiimagepickercontrolleroriginalimage];! //! UIImage* editedimage = (UIImage *)[info objectforkey:uiimagepickercontrollereditedimage]; UIImage* savedimage; if(editedimage){ savedimage = editedimage; else{ savedimage = originalimage; // _imageview.image = [self vignettefilter:[self monochromefilter:savedimage]]; // [self dismissviewcontrolleranimated:yes completion:^{ ];

31

32 // or -(void)imagepickercontroller:(uiimagepickercontroller *)picker didfinishpickingmediawithinfo:(nsdictionary *)info {! //! UIImage* originalimage = (UIImage *)[info objectforkey:uiimagepickercontrolleroriginalimage];! //! UIImage* editedimage = (UIImage *)[info objectforkey:uiimagepickercontrollereditedimage]; UIImage* savedimage; if(editedimage){ savedimage = editedimage; else{ savedimage = originalimage; // _imageview.image = [self vignettefilter:[self monochromefilter:savedimage]]; // UIImageWriteToSavedPhotosAlbum(_imageView.image, nil); // [self dismissviewcontrolleranimated:yes completion:^{ ]; ViewController.m -(void)image:(uiimage*)image didfinishsavingwitherror:(nserror*)error contextinfo:(void*)contextinfo{ if(error){ NSLog(@"Error"); else{ NSLog(@" ");

33 ) Apple

34 takatronix

35 takatronix

) 2013/7/27 iphone

) 2013/7/27 iphone ) 2013/7/27 iphone DJ / : takatronix Facebook/Twitter/Skype/LINE/Weibo -> takatronix http://takatronix.com LEGO FX SEXY SCAN... ( ) - - http://sexymirror-app.com 2013/1 iphone Objective-C Category( ) Objective-C

More information

カメラ操作のプログラミング(iOS用)について (TP )

カメラ操作のプログラミング(iOS用)について (TP ) カメラ操作の プログラミング (ios 用 ) 目次 カメラとフォトライブラリについて 4 この書類の構成 5 写真とムービーの撮影 6 カメラインターフェイスの作成と設定 7 カメラインターフェイス用のデリゲートの実装 10 フォトライブラリからのアイテムの選択 13 メディアブラウザの作成と設定 13 メディアブラウザ用のデリゲートの実装 16 書類の改訂履歴 19 2 図 リスト 写真とムービーの撮影

More information

AirPrintPublic

AirPrintPublic Printing on ios 4.2 Yutaka Yasuda, Kyoto Sangyo University AirPrint iphone / ipad Safari ios 4.2 2011 3 HP eprint ASCII.jp x MacPeople OS X AirPrint -- Apple Geeks 19 http://ascii.jp/elem/000/000/575/575397/

More information

20169 3 4 5003 n=3,000 61.8% 38.2% n=3,000 20 7.3% 30 21.3% 40 34.8% 50 36.6% n=3,000 3.0% 2.0% 1.5% 12.1% 14.0% 41.4% 25.9% n=3,000 37.7% % 24.8% 28.8% 1.9% 3.1% 0.2% n=3,000 500 64.0% 500 1,000 31.3%

More information

_ _ _ _ _ _ _ _ _ _ _ _ _ _ _

_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 1000101_ 1000102_ 1000103_ 1000301_ 1000302_ 1000303_ 1000401_ 1000402_ 1000403_ 1000701_ 1000702_ 1000703_ 1000801_ 1000802_ 1000803_ 1000901_ 1000902_ 1000903_ 1001001_ 1001002_ 1001003_ 1001101_ 1001102_

More information

untitled

untitled 74 1 300 20 9 11 (1) (2) (3) 14 2 1 252 75 3002 2 201 10124 50012001 652 4020 110023 () 1 3 RGB redg green blue 4 5 () 6 ( ) () Y 7 A: B: 3 () () 8 4 6 redundant 9 10 (1) 11 (2) 12 (3) 13 14 http://www.vischeck.com/vischeck/vischeckimage.php

More information

FX ) 2

FX ) 2 (FX) 1 1 2009 12 12 13 2009 1 FX ) 2 1 (FX) 2 1 2 1 2 3 2010 8 FX 1998 1 FX FX 4 1 1 (FX) () () 1998 4 1 100 120 1 100 120 120 100 20 FX 100 100 100 1 100 100 100 1 100 1 100 100 1 100 101 101 100 100

More information

NPCA部誌2018

NPCA部誌2018 1 ARKit 73 object 1.1 73 ( 1) object ARKit 1.2 ARKit ARKit AR AR AR AR( ) (Wikipedia ) AR Pokemon GO( ) AR 1 1.2 ARKit 1.1: VR AR VR VR AR ( ) ( ) ARKit AR ARKit ARKit Apple ios AR ARKit AR ios ios AR

More information

Microsoft PowerPoint - 201409_秀英体の取組み素材(予稿集).ppt

Microsoft PowerPoint - 201409_秀英体の取組み素材(予稿集).ppt 1 2 3 4 5 6 7 8 9 10 11 No Image No Image 12 13 14 15 16 17 18 19 20 21 22 23 No Image No Image No Image No Image 24 No Image No Image No Image No Image 25 No Image No Image No Image No Image 26 27 28

More information

sp2-2.indd

sp2-2.indd iphone によるセンサプログラミング 基応専般 沼田哲史大阪電気通信大学総合情報学部デジタルゲーム学科 iphone プログラミングの概要 Apple iphone/ipad ios 2011 10 12 iphone/ipad OS ios 5 ios 5 ios 5 iphone 3GS iphone 4 iphone 4S ipad ipad 2 3 4 2009 ipod touch 図

More information

Android Windows 8 AP 9 AP ios & Android 10 ST 11 ST ios 12 ST Android 13 ST Win & Mac 14 ST ios 15 ST Android

Android Windows 8 AP 9 AP ios & Android 10 ST 11 ST ios 12 ST Android 13 ST Win & Mac 14 ST ios 15 ST Android WiCounter Version 2.0 27 .. 2. 3. 2 4. 5. 6. 7 Android Windows 8 AP 9 AP ios & Android 10 ST 11 ST ios 12 ST Android 13 ST Win & Mac 14 ST ios 15 ST Android 16 17 18 19. 20 21 22 23 24 info ST 25 26 AP

More information

Swiftではじめる iPhoneアプリ開発の教科書 【iOS 8&Xcode 6対応】初版第2刷差分

Swiftではじめる iPhoneアプリ開発の教科書 【iOS 8&Xcode 6対応】初版第2刷差分 ( ) func ( :,...) -> (,,...) { // return } T i p s Xcode 6.1 2 1 2 func myfunc(val1:int, val2:int, val3:int)->int { return val1 * val2 * val3 } 2 var ans myfunc(1, val2: 2, val3: 3) Xcode Xcode 150 Chapter

More information

untitled

untitled 186 17 100160250 1 10.1 55 2 18.5 6.9 100 38 17 3.2 17 8.4 45 3.9 53 1.6 22 7.3 100 2.3 31 3.4 47 OR OR 3 1.20.76 63.4 2.16 4 38,937101,118 17 17 17 5 1,765 1,424 854 794 108 839 628 173 389 339 57 6 18613

More information

untitled

untitled 1. 3 14 2. 1 12 9 7.1 3. 5 10 17 8 5500 4. 6 11 5. 1 12 101977 1 21 45.31982.9.4 79.71996 / 1997 89.21983 41.01902 6. 7 5 10 2004 30 16.8 37.5 3.3 2004 10.0 7.5 37.0 2004 8. 2 7 9. 6 11 46 37 25 55 10.

More information

index View Controller

index View Controller Creative Application Summer Camp Kengo Part - lesson 2 2011/08/26 index View Controller summer 2.1 View View (1) View View = View UIView View UIView (ex. ) UIView ( ) (, ) (c) / View (2) View 1. View 2.

More information

ARC Automatic Reference Counting clang 新しいコンパイラ LLVMプロジェクト (http://llvm.org/) のコンパイラ C Objective-C C++ の効率的なコードを生成 オプションなどは gcc とほぼ共通 Apple社独自の拡張機能を実現 ARC ブロックオブジェクトなど ARCを利用するには clang が必須 コンパイルオプションに

More information

1. 目次 PixiModule ターミナルアプリ (ios 版 ) ソース説明 2. ios 版ご利用の前に ソースファイル内の用語の説明... 4 サンプル 4. ソースファイルの構成 Main.storyboard の説明 ViewControlle

1. 目次 PixiModule ターミナルアプリ (ios 版 ) ソース説明 2. ios 版ご利用の前に ソースファイル内の用語の説明... 4 サンプル 4. ソースファイルの構成 Main.storyboard の説明 ViewControlle PixiModule サンプル ターミナルアプリ (ios 版 ) ソース説明書 発行 2016 年 6 月 1 日 1.0 株式会社ヌマタ R&D 1/9 1. 目次 PixiModule ターミナルアプリ (ios 版 ) ソース説明 2. ios 版ご利用の前に... 3 3. ソースファイル内の用語の説明... 4 サンプル 4. ソースファイルの構成... 7 5. Main.storyboard

More information

プリント

プリント 1 2 3 4 End 1 2 End End 5 6 NEW PIN NEW PIN 1 1 PIN CONF 2 PIN 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

More information

TextSystemOverview

TextSystemOverview テキストシステム アーキテクチャー ソフトウエア設計者にとって アプリケーションにおけるテキストの取り扱いという問題は 最も頭を悩ま せる要素です 最も 基本的な テキストシステムでも 入力 レイアウト 表示 編 集 コピー ペースト これらはサポートされていて当たり前です そのうえ最近は 単なるエ ディタ ワードプロセッサではなく でさえ複数のフォントやパラグラフ スタイル イメージの貼付に スペル

More information

Microsoft Word - MDOnline 2001.

Microsoft Word - MDOnline 2001. NSToolbar NSToolbarItem - 1 - Font Style Font Size セパレータ Blue Text Print : 文字修飾 ( Plain Text Bold Italic ) をメニューから変更する : 文字サイズをステッパーで変更する : 区切りを表示する : 文字色を青と黒に交互に切替える : テキストビューを印刷する NSTextView blueletter.tif

More information

ArcGIS Runtime SDK for iOS スタートアップ ガイド

ArcGIS Runtime SDK for iOS スタートアップ ガイド 10.2.x ArcGIS Runtime SDK for ios スタートアップガイド 目次 はじめに... 1 このスタートアップガイドについて... 1 ArcGIS Runtime SDK for ios とは... 1 ArcGIS Runtime SDK for ios の開発環境... 2 モバイルマッピングアプリケーションの開発... 3 ライブラリのインストール... 3 Xcode

More information

1'1153 1 ド Ui:;~

1'1153 1 ド Ui:;~ 1'1153 1 ド Ui:;~ ~f ~f ~f 17~ 3.~1

More information

2004年度版「労働組合の会計税務に係る実務マニュアル」の販売について

2004年度版「労働組合の会計税務に係る実務マニュアル」の販売について URL http://www.rofuku.net 7/17/14 7/127/28 7/268/11 8/12 ( ) FAX ( ) ( ) ( ) @ ( ) ( ) @ ( ) ( ) @ ( ) ( ) @ ( ) ( ) @ (1) YES NO NO YES 1,000 NO YES NO YES YES NO 1,000 YES 5,000 NO NO YES NO YES

More information

(1)

(1) ~ ~ NO YES ~ ( NO YES ) YES NO NO YES ~ ( NO YES ) YES NO 1 1 NO 2 NO 2YES YES 1 (1) 25 26 2 3 () () () () 4 () () 5 6 () 7 () 8 9 1-3-1 10 3 11 12 ~1. (1) () () (2) (3) () (4) () () (5) (6) (7) (1) (2)

More information

untitled

untitled 13 50 15 6.0 0.25 220 23 92 960 16 16 3.9 3.9 12.8 83.3 7 10 1150 90 1035 1981 1850 4700 4700 15 15 1150 1150 10 12 31 1.5 3.7%(224 ) 1.0 1.5 25.4%(1522 ) 0.7 30.6 1835 ) 0.7 1.0 40.3 (2421 ) 7.3

More information

Microsoft Word - MDOnline 2001.

Microsoft Word - MDOnline 2001. - 1 - - 2 - #pragma mark LABELNAME mark #pragma mark SETTITLE - 3 - - 4 - - 5 - NSApplication requestuserattention : NSApplication : - (int) requestuserattention : (NSRequestUserAttentionType) reqtype

More information

48 SNS SNS

48 SNS SNS 48 SNS SNS 49 flickr JR flickr Yahoo SNS https://www.flickr.com GoogleID SNS flickr GoogleID yahoo.com ID GIS 50 SNSSocialNetworkingService SNS mixi LineFacebooktwitter flickr Instagram 51 SNS SNS SNS

More information

掲示用ヒート表 第34回 藤沢市長杯 2017

掲示用ヒート表 第34回 藤沢市長杯 2017 34 8 4 2 Round 1 Round 2 SEMI FINAL 30 16 8 H1 H5 H1 H1 Red 12401821 2 Red 12601360 2 1-1 Red 12501915 1 1-1 Red 12501915 4 White 12900051 4 White 12600138 3 3-1 White 12802412 2 3-1 White 12801091 1 Yellow

More information

橡00international.PDF

橡00international.PDF NATIONALITY 2001 01 23 1/22 - -11 NATIONALITY W p11-17 1 18-19 20 21 22 24-33 2/22 INTRODUCTION NATIONALITY NATIONALITY NATIONALITY NATIONALITY NATIONALITY J NATIONALITY NATIONALITY 3/22 NATIONALITY (1994)

More information

28 2016 24 4 16-1 - KuniJiban XML Windows7 10 Google Chrome MS-IE 11 Mozilla Firefox iphone6 Safari URL http://geonews.zenchiren.or.jp/api/2016kumamotoeq/index.html http://www.web-gis.jp/2016kumamotoeq/index.html

More information

1

1 1 3 11 29 35 37 1 3 11 29 35 37 36 36 GREEN CAMPUS 1 2 3 4 5 6 7 8 9 10 I N F O R M A T I O N 11 12 I N F O R M A T I O N I N F O R M A T I O N 13 14 I N F O R M A T I O N I N F O R M A T I O N 15 16 I

More information

untitled

untitled 16 4 1 17 1 50 -1- -2- -3- -4- -5- -6- -7- 1 2-8- -9- -10- -11- Web -12- (1) (2)(1) (3) (4) (1)()(2) (3)(4) -13- -14- -15- -16- -17- -18- -19- -20- -21- -22- -23- (2)(1) (3) -24- -25- -26- -27- -28- -29-

More information

iphone GPGPU GPU OpenCL Mac OS X Snow LeopardOpenCL iphone OpenCL OpenCL NVIDIA GPU CUDA GPU GPU GPU 15 GPU GPU CPU GPU iii OpenMP MPI CPU OpenCL CUDA OpenCL CPU OpenCL GPU NVIDIA Fermi GPU Fermi GPU GPU

More information

65 NiCoRe,,, : - i -

65 NiCoRe,,, : - i - 2015 Future University-Hakodate 2015 System Information Science Practice Group Report Project Name Swift Application Development Based on Field Research Group Name Medical Group /Project No. 3-B /Project

More information

-1-1 1 1 1 1 12 31 2 2 3 4

-1-1 1 1 1 1 12 31 2 2 3 4 2007 -1-1 1 1 1 1 12 31 2 2 3 4 -2-5 6 CPU 3 Windows98 1 -3-2. 3. -4-4 2 5 1 1 1 -5- 50000 50000 50000 50000 50000 50000 50000 50000 50000 50000-6- -7-1 Windows 2 -8-1 2 3 4 - - 100,000 200,000 500,000

More information

★結果★ 藤沢市長杯 掲示用ヒート表

★結果★ 藤沢市長杯 掲示用ヒート表 AA 35 Round 1 8 4 Round 2 28 16 SEMI FINAL H1 H5 H1 H1 Red 12802015 1 Red 12802109 1 1-1 Red 12802015 2 1-1 Red 12702346 White 12800232 2 White 12702406 3 3-1 White 12702346 1 3-1 White 12802109 Yellow

More information

OpenGL 2008/05/28 2.8 OpenGL glu glteximage2d 0 1 2 2 2

OpenGL 2008/05/28 2.8 OpenGL glu glteximage2d 0 1 2 2 2 wxaui 2008/05/29 wxwidgets 2.6.2 wxwidgets 2.8.7 wxaui static wxmsw28_aui.lib Unicode static wxmsw28u_aui.lib m_auimgr this ppanel1 ppanel2 wxwindow wxpanel ppanel1 OpenGL ppanel2 wxtextctrl AddPane wxauipaneinfo

More information

Java演習(4) -- 変数と型 --

Java演習(4)   -- 変数と型 -- 50 20 20 5 (20, 20) O 50 100 150 200 250 300 350 x (reserved 50 100 y 50 20 20 5 (20, 20) (1)(Blocks1.java) import javax.swing.japplet; import java.awt.graphics; (reserved public class Blocks1 extends

More information

tottori2013-print.key

tottori2013-print.key 1 / 152 3 / 152 2 / 152 4 / 152 5 / 152 7 / 152 6 / 152 8 / 152 9 / 152 11 / 152 Red: [R,G,B] = [255,0,0] Yellow [R,G,B] = [255, 255, 0] Magenta [R,G,B] = [255, 0, 255] W [R,G,B] = [ Green: [R,G,B] = [0,

More information

NSDate NSCalendarDate NSObject NSDate NSCalendarDate NSDate NSCalendarDate NSDate NSCalendar NSDate date NSDate *d = [ NSDate date ]; // NSDate : + (i

NSDate NSCalendarDate NSObject NSDate NSCalendarDate NSDate NSCalendarDate NSDate NSCalendar NSDate date NSDate *d = [ NSDate date ]; // NSDate : + (i 2002.7.30 ( 1 st Edition ) - 1 - NSDate NSCalendarDate NSObject NSDate NSCalendarDate NSDate NSCalendarDate NSDate NSCalendar NSDate date NSDate *d = [ NSDate date ]; // NSDate : + (id) date : init date

More information

20141017_iOS 8 ビジネス向け機能強化ポイント解説_GM_1.1.1.key

20141017_iOS 8 ビジネス向け機能強化ポイント解説_GM_1.1.1.key ios 8 Apple Configurator CLOMO MDM Apple Configurator CLOMO MDM CLOMO MDM / CLOMO MOBILE APP PORTAL Volume Purchase Program CLOMO MDM CLOMO SECURED APPs Apple Configurator / CLOMO MDM

More information

「RAD Studio XE5によるマルチ言語/マルチデバイス開発の進め方」

「RAD Studio XE5によるマルチ言語/マルチデバイス開発の進め方」 C1 Delphi/C++ チュートリアルセッション RAD Studio XE5 によるマルチ言語 / マルチデバイス開発の進め方 エンバカデロ テクノロジーズエヴァンジェリスト高橋智宏 アジェンダ RAD Studio XE5 の概要 Delphi or C++ Intel or ARM Windows / OS X / ios / Android プロジェクトとは? FireMonkey HD

More information

131 71 7 1 71 71 71 71 71 71 71 71 71 71 7 1 71 71 71 71 71 71 71 71 7 1 71 7 1 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 71 7 1 71 71 71 71 71 71 71 71 71 7 1 71 71 71 71 71 71 71 7 1 71 7 1 71

More information

Microsoft Word - „ú’¶flN‰à−î‰à“à’�›^›c−î‘•‡Ì›ð’à.doc

Microsoft Word - „ú’¶flN‰à−î‰à“à’�›^›c−î‘•‡Ì›ð’à.doc - 1 - - - 2 - - - 3 - - - 4 - - - 5 - - - 6 - - - 7 - - - 8 - - - 9 - - Q Q Q - 10 - - Q - 11 - - - 12 - - Q Q - 13 - - 8-14 - - - 15 - - 1-16 - - 20 3 12 () - 17 - - - 18 - - 8 8 9 8-19 - - - 20 - - 39

More information

3 3 2 2 2 2 2 2 Moji3 API

3 3 2 2 2 2 2 2 Moji3 API 7 2015. 03. 04 2014 3 3 2 2 2 2 2 2 Moji3 API UHF U.E.Cast 2011 20138 2011 2012 2013 U.E.Cast L SN 10cm 15cm 1 LAN [Hz] 10dB API [s] -80 db [s] API 10dB 16kHz -80 db 0Hz 1kHz 300Hz 0Hz 0Hz 1m 85cm 15cm!!

More information

報告書

報告書 1 2 3 4 5 6 7 or 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 2.65 2.45 2.31 2.30 2.29 1.95 1.79 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 60 55 60 75 25 23 6064 65 60 1015

More information

20120928_Business_r1_01

20120928_Business_r1_01 rev1.01 9/28/2012 Satoshi Matsushita Stanford CS Visiting Scholar, NEC matsushi@stanford.edu CPU HW SW 1 1945 1970-25 1985 DRAM 1991 1993 Samsung DRAM 2011 2012 25 21? 100 40 21 2 .. IR... 1988 301 3 blog

More information

New Interface Photo by hiroohi http://flickr.com/photos/rainboweyes/2747484161/ New Standard Photo by hiroohi http://flickr.com/photos/rainboweyes/2747484331/ New Technology Photo

More information

P.37 P.816 P.17 P.1819 contents 1 2

P.37 P.816 P.17 P.1819 contents 1 2 201211 NEW! P.37 P.816 P.17 P.1819 contents 1 2 3 4 5 6 7 8 http://www.tokiomarine-nichido.co.jp/ 1 2 16 3 11 4 1 18 9 10 5 6 11 12 18 9 10 6 7 8 13 1411 12 5 13 14 15 1615 16 21 17 18 0120-071-281 19

More information

iphone&ipad プログラミング Bible[ 下 ] 河西朝雄著 iphone/ipad 向けアプリケーションを開発するにはAppleが提供するXcodeという統合開発環境を使用し Objective-Cというプログラミング言語を使ってプログラムコードを記述します 本シリーズは iphone

iphone&ipad プログラミング Bible[ 下 ] 河西朝雄著 iphone/ipad 向けアプリケーションを開発するにはAppleが提供するXcodeという統合開発環境を使用し Objective-Cというプログラミング言語を使ってプログラムコードを記述します 本シリーズは iphone iphone&ipad プログラミング Bible[ 下 ] 河西朝雄著 iphone/ipad 向けアプリケーションを開発するにはAppleが提供するXcodeという統合開発環境を使用し Objective-Cというプログラミング言語を使ってプログラムコードを記述します 本シリーズは iphone/ipadアプリを開発するためのテクニックをすべて網羅するように22の章 ( カテゴリ ) に分類して

More information

JavaScriptCore

JavaScriptCore http://kishikawakatsumi.com Twitter @k_katsumi 24/7 twenty-four seven http://d.hatena.ne.jp/kishikawakatsumi/ JSContext *context = [[JSContext alloc] init]; JSValue *result = [context evaluatescript:@"2

More information

cocos2d-x最新開発環境

cocos2d-x最新開発環境 cocos2d-x 最新事情 v3.x の魅力お教えします 第 9BD マネージャー テクニカルディレクター畑圭輔 自己紹介 お仕事成分表 モバイル関連技術支援業務 プラットフォーマー対外折衝 技術調査 推進 採用 マネージメント業務 マネージャー テクニカルディレクター コンソール開発 (PlayStation,PlayStation 2) 組み込み系開発 管理業務 業 界 11 年 目 自己紹介

More information

info information mation info information mation info information mation info information mation info information mation info information mation info information mation info information mation info information

More information

RL_tutorial

RL_tutorial )! " = $ % & ' "(& &*+ = ' " + %' "(- + %. ' "(. + γ γ=0! " = $ " γ=0.9! " = $ " + 0.9$ " + 0.81$ "+, + ! " #, % #! " #, % # + (( + #,- +. max 2 3! " #,-, % 4! " #, % # ) α ! " #, % ' ( )(#, %)!

More information

2017 (413812)

2017 (413812) 2017 (413812) Deep Learning ( NN) 2012 Google ASIC(Application Specific Integrated Circuit: IC) 10 ASIC Deep Learning TPU(Tensor Processing Unit) NN 12 20 30 Abstract Multi-layered neural network(nn) has

More information

Microsoft Word - iPhone_finalv3.doc

Microsoft Word - iPhone_finalv3.doc 1 Apple iphone, iphone,, GPS,, Apple iphone SDK. 5 ipad, 6 OS ios 4.0 ios4.0, API, API, iphone/ipad iphone/ipad., iphone/ipad,, Hello, World!,, iphone. 2 iphone SDK iphonesdk iphone SDK 4 ( 1) API Core

More information

第32回新春波乗り大会2018

第32回新春波乗り大会2018 AA 32 Round 1 4 SEMI FINAL 2 20 8 FINAL H1 H1 H1 Red 12701793 1 1-1 Red 12701793 2 1-1 Red 11800623 White 12900058 4 3-1 White 12402115 4 2-1 White 12402209 Yellow 11603976 3 2-2 Yellow 12301534 3 1-2

More information

スライド 1

スライド 1 OpenCV 祭り発表資料 ios& 便利マクロ &Tips @dandelion1124 自己紹介 ( というかこれまでやったこと ) OpenCV プログラミングブック NAIST 在学時に執筆. 著者 ( の一人 ). 詳解 OpenCV 和訳本出版時の原著コンテンツチェック等. 日経ソフトウェア特集 2011 年 3 月号記事執筆. 最近は主に動向を追ったり,bug 報告したり, コード読んだり.

More information

2004年11月PARCO_MONTHLY_INFORMATION

2004年11月PARCO_MONTHLY_INFORMATION PARCO MONTHLY INFO. 2007/6 1 PARCO MONTHLY INFO. 2007/6 2 PARCO MONTHLY INFO. 2007/6 3 PARCO MONTHLY INFO. 2007/6 4 PARCO MONTHLY INFO. 2007/6 5 PARCO MONTHLY INFO. 2007/6 6 PARCO MONTHLY INFO. 2007/6

More information