1 2 2 (POC)

Size: px
Start display at page:

Download "1 2 2 (POC)"

Transcription

1 2007 Taichi Kawasaki Kinki University School of Engineerings

2 1 2 2 (POC)

3 1 [1]. 1 [2] P.Chazal [3] 2 3 2

4 1: 3

5 2: 4

6 3: 5

7 2 (POC) f(n 1, n 2 ) g(n 1, n 2 ) 2 F (k 1, k 2 ) G(k 1, k 2 ) F (k 1, k 2 ) G(k 1, k 2 ) R F G (k 1, k 2 ) R F G (k 1, k 2 ) = F (k 1, k 2 )G(k 1, k 2 ) F (k 1, k 2 )G(k 1, k 2 ) (1) G(k 1, k 2 ) G(k 1, k 2 ) r fg (n 1, n 2 ) R F G (k 1, k 2 ) 2 r fg (n 1, n 2 ) = IDF T [R F G (k 1, k 2 )] (2) IDFT 6

8 3 4 Lenna 5 MANDRILL Lenna 6 2 POC r fg (n 1, n 2 ) Lenna MANDRILL 7 2 POC r fg (n 1, n 2 ) 2 7

9 4: Lenna 8

10 5: MANDRILL 9

11 6: 2 POC 10

12 7: POC 11

13 4 MAT- LAB MATLAB (GUI) [4, 5] 12

14 5 8 9 POC ( ) 13

15 8: 14

16 9: 15

17 10: 16

18 11: ( ) 17

19 6 12: 18

20 13: 19

21 14: 20

22 15: 21

23 16: 22

24 17: 23

25 7 MATLAB 24

26 [1] [2] [3] P.Chazal, J.Flynn, and B.Rcilly Automatcd Processing of Images Based on the Fourier Transform for Use in Forensic Science IEEE Trans., Vol. PAMI-27, 3, pp (Mar. 2005). [4] MATLAB [5] MATLAB

27 8 26

28 9 function varargout = lab2(varargin) gui Singleton = 1; gui State = struct( gui Name, mfilename,... gui Singleton, gui Singleton,... gui OpeningFcn,... gui OutputFcn,... gui LayoutFcn, [],... gui Callback, []); if nargin && ischar(varargin1) gui State.gui Callback = str2func(varargin1); end if nargout [varargout1:nargout] = gui mainfcn(gui State, varargin:); else gui mainfcn(gui State, varargin:); end function lab2 OpeningFcn(hObject, eventdata, handles, varargin) handles.output = hobject; guidata(hobject, handles); function varargout = lab2 OutputFcn(hObject, eventdata, handles) varargout1 = handles.output; // function Untitled 1 Callback(hObject, eventdata, handles) // function Untitled 2 Callback(hObject, eventdata, handles) axes(handles.axes1); [fname, dpath] = uigetfile( *.bmp,, C:\Documents and Settings\ \My Documents\MATLAB\ ); IMG=imread(fname); handles.img=img; imagesc(img); 27

29 colormap(gray); guidata(hobject,handles); // function Untitled 3 Callback(hObject, eventdata, handles) axes(handles.axes2); [fname, dpath] = uigetfile( *.bmp,, C:\Documents and Settings\ \My Documents\MATLAB\ ); IMG2=imread(fname); handles.img2=img2; imagesc(img2); colormap(gray); guidata(hobject,handles); // function Untitled 5 Callback(hObject, eventdata, handles) axes(handles.axes3); x=fft2(double(handles.img)); y=fft2(double(handles.img2)); p=(y.*conj(x))./abs(y.*conj(x)); IMG=fftshift(ifft2(p)); imagesc([-256,256],[-256,256],img); // function Untitled 7 Callback(hObject, eventdata, handles) axes(handles.axes4); x=fft2(double(handles.img)); y=fft2(double(handles.img2)); p=(y.*conj(x))./abs(y.*conj(x)); IMG=fftshift(ifft2(p)); xx = 1; yy = 1; max=img(1,1); [y,x]=size(img); for y1=1:y for x1=1:x if (IMG(y1,x1) max) 28

30 max = IMG(y1,x1); // yy = y1; xx = x1; end end end x2=xx-257; y2=yy-257; mesh(img); // xlabel( x ); ylabel( y ); // HT=uicontrol(lab2, style, text ); set(ht, position,[ ]); set(ht, string,max); set(ht, BackgroundColor,[1,1,1]); set(ht, fontsize,15); set(ht, ForegroundColor,[0,0,0]); // (x ) HT=uicontrol(lab2, style, text ); set(ht, position,[ ]); set(ht, string,xx); set(ht, BackgroundColor,[1,1,1]); set(ht, fontsize,15); set(ht, ForegroundColor,[0,0,0]); // (y ) HT=uicontrol(lab2, style, text ); set(ht, position,[ ]); set(ht, string,yy); set(ht, BackgroundColor,[1,1,1]); set(ht, fontsize,15); set(ht, ForegroundColor,[0,0,0]); 29

31 //x HT=uicontrol(lab2, style, text ); set(ht, position,[ ]); set(ht, string,x2); set(ht, BackgroundColor,[1,1,1]); set(ht, fontsize,15); set(ht, ForegroundColor,[0,0,0]); //y HT=uicontrol(lab2, style, text ); set(ht, position,[ ]); set(ht, string,y2); set(ht, BackgroundColor,[1,1,1]); set(ht, fontsize,15); set(ht, ForegroundColor,[0,0,0]); // function Untitled 4 Callback(hObject, eventdata, handles) // function Untitled 9 Callback(hObject, eventdata, handles) exit 30

32 10 31

Ver.1 1/17/2003 2

Ver.1 1/17/2003 2 Ver.1 1/17/2003 1 Ver.1 1/17/2003 2 Ver.1 1/17/2003 3 Ver.1 1/17/2003 4 Ver.1 1/17/2003 5 Ver.1 1/17/2003 6 Ver.1 1/17/2003 MALTAB M GUI figure >> guide GUI GUI OK 7 Ver.1 1/17/2003 8 Ver.1 1/17/2003 Callback

More information

兵庫県立大学学報vol.17

兵庫県立大学学報vol.17 THE UNIVERSITY OF HYOGO NEWS 2014 VOL.17 THE UNIVERSITY OF HYOGO NEWS 2014 VOL.17 THE UNIVERSITY OF HYOGO NEWS 2014 VOL.17 THE UNIVERSITY OF HYOGO NEWS 2014 VOL.17 School of Human Science and Environment

More information

yy yy ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;; ;;; ;;; ;;; ;;; ;;; ;;; ;;; ;;; ;;; ;;; ;;; ;;; ; ; ; ;; ;; ;; ;;; ;;; ;;; ;; ;; ;; ;; ;; ; ; ; ; ; ; ;

More information

II - ( 02 ) 1,,,, 2, 3. ( ) HP,. 2 MATLAB MATLAB, C Java,,., MATLAB, Workspace, Workspace. Workspace who. whos. MATLAB, MATLAB Workspace. 2.1 Workspac

II - ( 02 ) 1,,,, 2, 3. ( ) HP,. 2 MATLAB MATLAB, C Java,,., MATLAB, Workspace, Workspace. Workspace who. whos. MATLAB, MATLAB Workspace. 2.1 Workspac II - ( 02 ) 1,,,, 2, 3 ( ) HP, 2 MATLAB MATLAB, C Java,,, MATLAB, Workspace, Workspace Workspace who whos MATLAB, MATLAB Workspace 21 Workspace 211 Workspace save, Workspace, MATLAB MAT, load, MAT Workspace

More information

607_h1h4_0215.indd

607_h1h4_0215.indd 3 2016 Mar. No.607 http://www.saitama-ctv-kyosai.net 1 2 3 4 5 6 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 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17

More information

10.02EWE51号本文

10.02EWE51号本文 51 2010 Mar. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~ 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25

More information

matlab-2005.dvi

matlab-2005.dvi I: MATLAB 2005 MATLAB 1. MATLAB 2. MATLAB 3. MATLAB http://winnie.kuis.kyoto-u.ac.jp/ kitahara/local/matlab/ 1 MATLAB 1.1 MATLAB MATLAB 1 FFT 1.2 MATLAB MATLAB PC Windows URL MATLAB Windows kitahara@kuis.kyoto-u.ac.jp

More information

untitled

untitled 25 MATLAB 2 39 ( ) HSV y x 40 4 f (t) f ( t) = t f ( t + t) tt f ( t) 2 f ( t) g( t) = f ( τ ) g( t τ ) dτ f (τ ) t g(t τ ) 0 42 t f (τ ) f (τ ) g( t τ ) 0 g( t τ ) t 3 3 3 High pass filter Low pass filter

More information

xx/xx Vol. Jxx A No. xx 1 Fig. 1 PAL(Panoramic Annular Lens) PAL(Panoramic Annular Lens) PAL (2) PAL PAL 2 PAL 3 2 PAL 1 PAL 3 PAL PAL 2. 1 PAL

xx/xx Vol. Jxx A No. xx 1 Fig. 1 PAL(Panoramic Annular Lens) PAL(Panoramic Annular Lens) PAL (2) PAL PAL 2 PAL 3 2 PAL 1 PAL 3 PAL PAL 2. 1 PAL PAL On the Precision of 3D Measurement by Stereo PAL Images Hiroyuki HASE,HirofumiKAWAI,FrankEKPAR, Masaaki YONEDA,andJien KATO PAL 3 PAL Panoramic Annular Lens 1985 Greguss PAL 1 PAL PAL 2 3 2 PAL DP

More information

main.dvi

main.dvi 4 DFT DFT Fast Fourier Transform: FFT 4.1 DFT IDFT X(k) = 1 n=0 x(n)e j2πkn (4.1) 1 x(n) = 1 X(k)e j2πkn (4.2) k=0 x(n) X(k) DFT 2 ( 1) 2 4 2 2(2 1) 2 O( 2 ) 4.2 FFT 4.2.1 radix2 FFT 1 (4.1) 86 4. X(0)

More information

日経テレコン料金表(2016年4月)

日経テレコン料金表(2016年4月) 1 2 3 4 8,000 15,000 22,000 29,000 5 6 7 8 36,000 42,000 48,000 54,000 9 10 20 30 60,000 66,000 126,000 166,000 50 100 246,000 396,000 1 25 8,000 7,000 620 2150 6,000 4,000 51100 101200 3,000 1,000 201

More information

73 p.1 22 16 2004p.152

73 p.1 22 16 2004p.152 1987 p.80 72 73 p.1 22 16 2004p.152 281895 1930 1931 12 28 1930 10 27 12 134 74 75 10 27 47.6 1910 1925 10 10 76 10 11 12 139 p.287 p.10 11 pp.3-4 1917 p.284 77 78 10 13 10 p.6 1936 79 15 15 30 80 pp.499-501

More information

2 2 3 4 5 5 2 7 3 4 6 1 3 4 7 4 2 2 2 4 2 3 3 4 5 1932 A p. 40. 1893 A p. 224, p. 226. 1893 B pp. 1 2. p. 3.

2 2 3 4 5 5 2 7 3 4 6 1 3 4 7 4 2 2 2 4 2 3 3 4 5 1932 A p. 40. 1893 A p. 224, p. 226. 1893 B pp. 1 2. p. 3. 1 73 72 1 1844 11 9 1844 12 18 5 1916 1 11 72 1 73 2 1862 3 1870 2 1862 6 1873 1 3 4 3 4 7 2 3 4 5 3 5 4 2007 p. 117. 2 2 3 4 5 5 2 7 3 4 6 1 3 4 7 4 2 2 2 4 2 3 3 4 5 1932 A p. 40. 1893 A p. 224, p. 226.

More information

29 2011 3 4 1 19 5 2 21 6 21 2 21 7 2 23 21 8 21 1 20 21 1 22 20 p.61 21 1 21 21 1 23

29 2011 3 4 1 19 5 2 21 6 21 2 21 7 2 23 21 8 21 1 20 21 1 22 20 p.61 21 1 21 21 1 23 29 2011 3 pp.55 86 19 1886 2 13 1 1 21 1888 1 13 2 3,500 3 5 5 50 4 1959 6 p.241 21 1 13 2 p.14 1988 p.2 21 1 15 29 2011 3 4 1 19 5 2 21 6 21 2 21 7 2 23 21 8 21 1 20 21 1 22 20 p.61 21 1 21 21 1 23 1

More information

308 ( ) p.121

308 ( ) p.121 307 1944 1 1920 1995 2 3 4 5 308 ( ) p.121 309 10 12 310 6 7 ( ) ( ) ( ) 50 311 p.120 p.142 ( ) ( ) p.117 p.124 p.118 312 8 p.125 313 p.121 p.122 p.126 p.128 p.156 p.119 p.122 314 p.153 9 315 p.142 p.153

More information

122011pp.139174 18501933

122011pp.139174 18501933 122011pp.139174 18501933 122011 1850 3 187912 3 1850 8 1933 84 4 1871 12 1879 5 2 1 9 15 1 1 5 3 3 3 6 19 9 9 6 28 7 7 4 1140 9 4 3 5750 58 4 3 1 57 2 122011 3 4 134,500,000 4,020,000 11,600,000 5 2 678.00m

More information

Microsoft Word - 映画『東京裁判』を観て.doc

Microsoft Word - 映画『東京裁判』を観て.doc 1 2 3 4 5 6 7 1 2008. 2 2010, 3 2010. p.1 4 2008 p.202 5 2008. p.228 6 2011. 7 / 2008. pp.3-4 1 8 1 9 10 11 8 2008, p.7 9 2011. p.41 10.51 11 2009. p. 2 12 13 14 12 2008. p.4 13 2008, p.7-8 14 2008. p.126

More information

() L () 20 1

() L () 20 1 () 25 1 10 1 0 0 0 1 2 3 4 5 6 2 3 4 9308510 4432193 L () 20 1 PP 200,000 P13P14 3 0123456 12345 1234561 2 4 5 6 25 1 10 7 1 8 10 / L 10 9 10 11 () ( ) TEL 23 12 7 38 13 14 15 16 17 18 L 19 20 1000123456

More information

戦後の補欠選挙

戦後の補欠選挙 1 2 11 3 4, 1968, p.429., pp.140-141. 76 2005.12 20 14 5 2110 25 6 22 7 25 8 4919 9 22 10 11 12 13 58154 14 15 1447 79 2042 21 79 2243 25100 113 2211 71 113 113 29 p.85 2005.12 77 16 29 12 10 10 17 18

More information

2016 IP 1 1 1 1.1............................................. 1 1.2.............................................. 1 1.3............................................. 1 1.4.............................................

More information

web06.dvi

web06.dvi 73 6 MATLAB MATLAB GUI GUI M copyright c 2004 Tatsuya Kitamura / All rights reserved. 74 6 6.1 GUI MATLAB GUI property Windows MATLAB UNIX MATLAB GUI Graphical User Interface PC Red Hat Linux 5.2J Vine

More information

みさき_1

みさき_1 2 3 4 5 6 7 1F 2F 8 9 10 11 17 18 19 20 21 22 23 24 31 25 26 27 28 29 30 8 1 2 3 4 5 6 7 6 8 7 16 7 8 9 10 11 12 14 15 13 17 23 Vol.41 8 6 20 11 7 15 7 23 7 7 7 16 23 23 8 13 18:00 22:00 722

More information

Vol..3 2010 2 10 2

Vol..3 2010 2 10 2 1 Vol..3 2010 2 10 2 Vol..3 2010 2 10 3 Vol..3 2010 2 10 4 Vol..3 2010 2 10 5 Vol..3 2010 2 10 6 Vol..3 2010 2 10 7 Vol..3 2010 2 10 8 Vol..3 2010 2 10 9 Vol..3 2010 2 10 10 Vol..3 2010 2 10 11 Vol..3

More information

H21_report

H21_report vol.4 1 2 6 10 14 18 20 22 24 25 1 2 2172 73 3 21925 926 21125 126 4 5 6 21629 630 7 21107 108 21127 128 8 9 10 21616 617 11 211026 1027 211213 1214 12 13 14 21713 714 15 2194 95 211031 111 16 17 18 19

More information

untitled

untitled Vol.27 1 Vol.27 2 Vol.27 3 Vol.27 4 Vol.27 5 Vol.27 6 Vol.27 7 Vol.27 8 Vol.27 9 Vol.27 10 11 Vol.27 Vol.27 12 Vol.27 13 Vol.27 14 Vol.27 15 Vol.27 16 Vol.27 17 Vol.27 2007 10 29 18 http://www.nira.or.jp/index.html

More information

09030549_001.図書館31-1

09030549_001.図書館31-1 vol.31 NO.1 2 3 5 6 10 12 8 1947-1954- 1950-1838-1904 1952-1996 1 913-1954 1981-1958- 1 902-1992 1972-1946- 1 940- 1 2 3 3 5 6 6 8 8 12 8 8 1 2 2 http://library.hokkai-s-u.ac.jp/cgi-bin/tosyokan/index.cgi

More information

VOL a s d f g h

VOL a s d f g h VOL.20013 -- 1937 101939 1940410 1940 1 VOL.20013 2030 193810 19391034 1937 a s d f g h 1995139140161 1998348 1988236 1994577578 1998 1987151 1922 2 VOL.20013 101110 3000500 70 1929 1920 1927 70 4050 30

More information