亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? testwavelet.cs

?? Image Fusion Techniues
?? CS
字號:
// Waveblend - complex dualtree based image fusion// (C) Copyright 2004 -- Sebastian Nowozin <nowozin@cs.tu-berlin.de>//// This file is part of Waveblend.//// Waveblend is free software; you can redistribute it and/or modify// it under the terms of the GNU General Public License as published// by the Free Software Foundation; version 2 of the License.//// Waveblend is distributed in the hope that it will be useful,// but WITHOUT ANY WARRANTY; without even the implied warranty of// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the// GNU General Public License for more details.//// The license is included with the distribution in the file 'LICENSE'.///* TestWavelet.cs * * Testing program for all kinds of supported wavelet transforms. */using Gtk;using GtkSharp;using System;public classTestWavelet{	public static void Main (string[] args)	{		if (args.Length < 1) {			Console.WriteLine ("usage: TestWavelet.exe image");			return;		}		Application.Init ();		Window win = new Window ("Test Wavelet");		win.DefaultSize = new Gdk.Size (400, 300);		win.DeleteEvent += new DeleteEventHandler (Window_Delete);		TestWavelet test = new TestWavelet ();		test.Test1D ();		Gtk.VBox vb = new Gtk.VBox ();		test.Test1DDualtree ();		//test.Test1DComplex ();		Gtk.Widget resNoise = test.AddNoise (args[0]);		vb.Add (resNoise);		Gtk.Widget resComplexPrint = test.PrintDualtree2DComplexWavelets ();		Gtk.Widget resComplex = test.TestDualtree2DComplex (args[0]);		vb.Add (resComplexPrint);		vb.Add (resComplex);		Gtk.Widget resRealPrint = test.PrintDualtree2DRealWavelets ();		Gtk.Widget resReal = test.TestDualtree2DReal (args[0]);		//Gtk.Widget res = test.Test2D (args[0]);		vb.Add (resRealPrint);		vb.Add (resReal);		win.Add (vb);		win.ShowAll ();		Application.Run ();	}	public Gtk.Widget AddNoise (string filename)	{		DisplayImage pic = new DisplayImage (filename);		ImageMap map = pic.ConvertToImageMap			(new DisplayImage.CanonicalPixelConverter ());		VBox vbLine = new VBox ();		HBox hb = new HBox ();		hb.Add (new Image (pic.Pbuf));		ImageMap noisy01 = (ImageMap) map.Clone ();		Denoise.InsertRandomNoise (noisy01, 0.1);		hb.Add (new Image (new DisplayImage (noisy01, 1.0).Pbuf));		ImageMap noisy02 = (ImageMap) map.Clone ();		Denoise.InsertRandomNoise (noisy02, 0.2);		hb.Add (new Image (new DisplayImage (noisy02, 1.0).Pbuf));		ImageMap noisy05 = (ImageMap) map.Clone ();		Denoise.InsertRandomNoise (noisy05, 0.5);		hb.Add (new Image (new DisplayImage (noisy05, 1.0).Pbuf));		// Denoise		double[] denoiseVal = { 0.01, 0.02, 0.05, 0.1, 0.12, 0.14, 0.16, 0.18, 0.2, 0.4, };		int p = 0;		foreach (double thresh in denoiseVal) {			ImageMap denoised = Denoise.DenoiseSoft (noisy02, thresh);			Gtk.VBox vb = new Gtk.VBox ();			vb.Add (new Image (new DisplayImage (denoised, 1.0).Pbuf));			vb.Add (new Gtk.Label (String.Format ("denoised, thresh {0}", thresh)));			if (p % 4 == 0) {				vbLine.Add (hb);				hb = new HBox ();			}			p += 1;			hb.Add (vb);		}		vbLine.Add (hb);		return (vbLine);	}	public Gtk.Widget Test2D (string filename)	{		DisplayImage pic = new DisplayImage (filename);		ImageMap map = pic.ConvertToImageMap			(new DisplayImage.CanonicalPixelConverter ());		// Do the wavelet transform		double[,] picA = new double[map.YDim / 2, map.XDim / 2];		double[,] picH = new double[map.YDim / 2, map.XDim / 2];		double[,] picD = new double[map.YDim / 2, map.XDim / 2];		double[,] picV = new double[map.YDim / 2, map.XDim / 2];		IWavelet wave = new Farras10 ();		double[,] picArr = map.ValueArray;		WaveletProcessing wp = new WaveletProcessing ();		wp.Convolve2d (wave, picArr, picA, picH, picD, picV);		HBox hb = new HBox ();		hb.Add (new Image (pic.Pbuf));		hb.Add (new Image (new DisplayImage (map, 1.0).Pbuf));		/*		double[][,] vArr = { picA, picH, picD, picV };		foreach (double[,] arr in vArr) {			ImageMap subMap = new ImageMap (arr);			subMap.Normalize ();			DisplayImage subPic = new DisplayImage (subMap, 1.0);			hb.Add (new Image (subPic.Pbuf));		}		*/		double[,] comb = wp.tileCombine2d (picA, picH, picD, picV, false);		ImageMap sMap = new ImageMap (comb);		sMap.Normalize ();		DisplayImage sPic = new DisplayImage (sMap, 1.0);		hb.Add (new Image (sPic.Pbuf));		double[,] restored = new double[picArr.GetLength (0), picArr.GetLength (1)];		wp.Inverse2d (wave, restored, picA, picH, picD, picV);		hb.Add (new Image (new DisplayImage (new ImageMap (restored), 1.0).Pbuf));		return (hb);	}	// Display the six complex fluctuation wavelets of the 2d complex dualtree DWT	public Gtk.Widget PrintDualtree2DComplexWavelets ()	{		int J = 4;		int L = 3 * (1 << (J + 1));		int N = L / (1 << J);		WaveletProcessing wp = new WaveletProcessing ();		IWaveletDTCW wave1rst = new Farras10CFirst ();		IWaveletDTCW wave = new KingsburyQC10 ();		double[,] input = new double[3 * L, 6 * L];		Dualtree2dComplex[] dt = wp.DualtreeTransform2dComplex (wave1rst, wave,			input, J);		Dualtree2dComplex tree1 = dt[0];		Dualtree2dComplex tree2 = dt[1];		while (tree1.LastLevel == false) {			tree1 = tree1.Next;			tree2 = tree2.Next;		}		double[][,] flucts = {			tree2.GetDirectStore (0, 1), tree1.GetDirectStore (0, 2),			tree2.GetDirectStore (0, 0), tree1.GetDirectStore (0, 0),			tree2.GetDirectStore (0, 2), tree1.GetDirectStore (0, 1),			tree2.GetDirectStore (1, 1), tree1.GetDirectStore (1, 2),			tree2.GetDirectStore (1, 0), tree1.GetDirectStore (1, 0),			tree2.GetDirectStore (1, 2), tree1.GetDirectStore (1, 1),		};		int tNH = flucts.Length / 2;		for (int t = 0 ; t < flucts.Length ; ++t)			flucts[t][N/2 + (t/tNH) * N, N/2 + (t % tNH) * N] = 1.0;		double[,] restored = wp.DualtreeTransform2dComplexInverse (wave1rst, wave, dt);		// Third row: magnitude product of real and imaginary part		for (int y = 0 ; y < L ; ++y) {			for (int x = 0 ; x < (6 * L) ; ++x) {				restored[2 * L + y, x] = Math.Sqrt (					Math.Pow (restored[y, x], 2.0) + Math.Pow (restored[L + y, x], 2.0));			}		}		ImageMap map = new ImageMap (restored);		map.Normalize ();		HBox hb = new HBox ();		hb.Add (new Image (new DisplayImage (map, 1.0).Pbuf));		return (hb);	}	public Gtk.Widget TestDualtree2DComplex (string filename)	{		Console.WriteLine ("=== TestDualtree2DComplex BEGIN ===\n");		DisplayImage pic = new DisplayImage (filename);		ImageMap map = pic.ConvertToImageMap			(new DisplayImage.CanonicalPixelConverter ());		double[,] picArr = map.ValueArray;		WaveletProcessing wp = new WaveletProcessing ();		IWaveletDTCW wave1rst = new Farras10CFirst ();		IWaveletDTCW wave = new KingsburyQC10 ();		Dualtree2dComplex[] dt = wp.DualtreeTransform2dComplex (wave1rst, wave,			picArr, 2);		HBox hb = new HBox ();		hb.Add (new Image (pic.Pbuf));		hb.Add (new Image (new DisplayImage (map, 1.0).Pbuf));		for (int cn = 0 ; cn < 4 ; ++cn) {			double[,] comb = wp.tileCombine2d				(dt[cn / 2].GetTrend (cn % 2),				dt[cn / 2].GetDirectStore (cn % 2, 0),				dt[cn / 2].GetDirectStore (cn % 2, 1),				dt[cn / 2].GetDirectStore (cn % 2, 2), true);			ImageMap sMap = new ImageMap (comb);			DisplayImage sPic = new DisplayImage (sMap, 1.0);			hb.Add (new Image (sPic.Pbuf));		}		for (int cn = 0 ; cn < 4 ; ++cn) {			double[][,] subbands = {				dt[cn / 2].GetDirectStore (cn % 2, 0),				dt[cn / 2].GetDirectStore (cn % 2, 1),				dt[cn / 2].GetDirectStore (cn % 2, 2),			};			for (int band = 0 ; band < subbands.Length ; ++band) {				double sum = 0.0;				int count = 0;				double[,] plane = subbands[band];				for (int y = 0 ; y < plane.GetLength (0) ; ++y) {					for (int x = 0 ; x < plane.GetLength (1) ; ++x) {						count += 1;						sum += Math.Abs (plane[y, x]);						/*					if (Math.Abs (plane[y, x]) < 0.1)						plane[y, x] = 0.0;						*/					/*					double s = Math.Max (Math.Abs (plane[y, x] - 0.02), 0.0);					s = (s / (s + 0.02)) * plane[y, x];					plane[y, x] = s;					*/					}				}				Console.WriteLine ("band {0} average: {1}", band,					sum / ((double) count));			}		}		Console.WriteLine ("= Reconstructing...");		double[,] restored = wp.DualtreeTransform2dComplexInverse (wave1rst, wave, dt);		hb.Add (new Image (new DisplayImage (new ImageMap (restored), 1.0).Pbuf));		Console.WriteLine ("=== TestDualtree2DComplex END ===\n");		return (hb);	}	// Display the three fluctuation wavelets of the 2d real dualtree DWT	public Gtk.Widget PrintDualtree2DRealWavelets ()	{		int J = 4;		int L = 3 * (1 << (J + 1));		int N = L / (1 << J);		WaveletProcessing wp = new WaveletProcessing ();		IWaveletDTCW wave1rst = new Farras10CFirst ();		IWaveletDTCW wave = new KingsburyQC10 ();		double[,] input = new double[3 * L, 3 * L];		Dualtree2dReal[] dt = wp.DualtreeTransform2dReal (wave1rst, wave,			input, J);		Dualtree2dReal tree1 = dt[0];		Dualtree2dReal tree2 = dt[1];		while (tree1.LastLevel == false) {			tree1 = tree1.Next;			tree2 = tree2.Next;		}		double[,][,] flucts = {			{ (double[,]) tree1[1], (double[,]) tree1[2], (double[,]) tree1[3], },			{ (double[,]) tree2[1], (double[,]) tree2[2], (double[,]) tree2[3], },		};		for (int t = 0 ; t < 2 ; ++t)			for (int m = 0 ; m < 3 ; ++m)				flucts[t, m][N/2 + t * N, N/2 + m * N] = 1.0;		double[,] restored = wp.DualtreeTransform2dRealInverse (wave1rst, wave, dt);		for (int y = 0 ; y < L ; ++y) {			for (int x = 0 ; x < (3 * L) ; ++x) {				restored[2 * L + y, x] = Math.Sqrt (					Math.Pow (restored[y, x], 2.0) + Math.Pow (restored[L + y, x], 2.0));			}		}		ImageMap map = new ImageMap (restored);		map.Normalize ();		HBox hb = new HBox ();		hb.Add (new Image (new DisplayImage (map, 1.0).Pbuf));		return (hb);	}	public Gtk.Widget TestDualtree2DReal (string filename)	{		DisplayImage pic = new DisplayImage (filename);		ImageMap map = pic.ConvertToImageMap			(new DisplayImage.CanonicalPixelConverter ());		double[,] picArr = map.ValueArray;		WaveletProcessing wp = new WaveletProcessing ();		IWaveletDTCW wave1rst = new Farras10CFirst ();		IWaveletDTCW wave = new KingsburyQC10 ();		Dualtree2dReal[] dt = wp.DualtreeTransform2dReal (wave1rst, wave,			picArr, 2);		HBox hb = new HBox ();		hb.Add (new Image (pic.Pbuf));		hb.Add (new Image (new DisplayImage (map, 1.0).Pbuf));		double[,] comb1 = wp.tileCombine2d			((double[,]) dt[0][0], (double[,]) dt[0][1],			(double[,]) dt[0][2], (double[,]) dt[0][3], true);		double[,] comb2 = wp.tileCombine2d			((double[,]) dt[1][0], (double[,]) dt[1][1],			(double[,]) dt[1][2], (double[,]) dt[1][3], true);		ImageMap sMap = new ImageMap (comb1);		//sMap.Normalize ();		DisplayImage sPic = new DisplayImage (sMap, 1.0);		hb.Add (new Image (sPic.Pbuf));		sMap = new ImageMap (comb2);		//sMap.Normalize ();		sPic = new DisplayImage (sMap, 1.0);		hb.Add (new Image (sPic.Pbuf));		double[][,] flucts = { (double[,]) dt[0].Next[1],			(double[,]) dt[0].Next[2], (double[,]) dt[0].Next[3],			(double[,]) dt[1].Next[1], (double[,]) dt[1].Next[2], (double[,]) dt[1].Next[3], };		foreach (double[,] plane in flucts) {			double sum = 0.0;			int count = 0;			for (int y = 0 ; y < plane.GetLength (0) ; ++y) {				for (int x = 0 ; x < plane.GetLength (1) ; ++x) {					count += 1;					sum += Math.Abs (plane[y, x]);					/*if (Math.Abs (plane[y, x]) < 0.02)						plane[y, x] = 0.0;*/					/*					double s = Math.Max (Math.Abs (plane[y, x] - 0.02), 0.0);					s = (s / (s + 0.02)) * plane[y, x];					plane[y, x] = s;					*/				}			}			Console.WriteLine ("plane average: {0}", sum / ((double) count));		}		Console.WriteLine ("= Reconstructing...");		double[,] restored = wp.DualtreeTransform2dRealInverse (wave1rst, wave, dt);		hb.Add (new Image (new DisplayImage (new ImageMap (restored), 1.0).Pbuf));		return (hb);	}	public void Test1DDualtree ()	{		Console.WriteLine ("\n=== Test1DDualtree BEGIN ===");		double[] numBase = {			2.0, 3.0, 6.0, 1.0,			4.0, 6.0, 8.0, 10.0,			-4.0, -2.0, -1.0, 1.0,			2.0, 3.3, 3.4, 4.0,			0.0, 7.0, 5.0, 11.0,			14.0, -6.0, -7.0, 1.0,			-2.0, -2.0, 1.0, 3.0,			4.0, 3.0, 2.0, 1.0, };		double[] num = new double[numBase.Length * 8];		for (int n = 0 ; n < num.Length ; ++n)			num[n] = numBase[n % numBase.Length] * ((n / numBase.Length) + 1.0);		IWaveletDTCW wave1rst = new Farras10CFirst ();		IWaveletDTCW wave = new KingsburyQC10 ();		WaveletProcessing wp1d = new WaveletProcessing ();		Console.WriteLine ("num[] =");		foreach (double val in num)			Console.WriteLine ("\t{0}", val);		Dualtree[] dt = wp1d.DualtreeTransform1d (wave1rst, wave, num, 5);		for (int t = 0 ; t < 2 ; ++t) {			Console.WriteLine ("Tree {0}", t + 1);			Dualtree tree = dt[t];			int level = 0;			while (tree != null) {				Console.WriteLine ("    Level {0}", level);				for (int signal = 0 ; signal < 2 ; ++signal) {					Console.WriteLine ("        {0}",						signal == 0 ? "Trend" : "Fluctuation");					foreach (double val in ((double[]) tree[signal]))						Console.WriteLine ("            {0}", val);				}				tree = tree.Next;				level += 1;			}		}		Console.WriteLine ("\n  === Reconstruction ===\n");		double[] reconstruction = wp1d.DualtreeTransform1dInverse			(wave1rst, wave, dt);		Console.WriteLine ("reconstruction[] =");		foreach (double val in reconstruction)			Console.WriteLine ("\t{0}", val);		Console.WriteLine ("\n=== Test1DDualtree END ===");	}	public void Test1D ()	{		//double[] num = { 10.0, 8.0, 7.0, 3.0, -3.0, 5.0, 8.0, 9.0, };		double[] num = { 2.0, 3.0, 6.0, 1.0, 4.0, 6.0, 8.0, 10.0, -4.0, -2.0, -1.0, 1.0 };		IWavelet wave1d = new Farras10 ();		WaveletProcessing wp1d = new WaveletProcessing ();		double[] trend = new double[6];		double[] fluctuation = new double[6];		wp1d.Convolve1d (wave1d, ref num, ref trend, ref fluctuation);		Console.WriteLine ("Trend");		foreach (double val in trend)			Console.Write ("{0}, ", val);		Console.WriteLine ("\nFluctuation");		foreach (double val in fluctuation)			Console.Write ("{0}, ", val);		Console.WriteLine ("");		num[0] = -1.3;		wp1d.Inverse1d (wave1d, num, trend, fluctuation);		Console.WriteLine ("\nInversed function again:");		foreach (double val in num)			Console.Write ("{0}, ", val);		Console.WriteLine ("");	}	static void Window_Delete (object obj, DeleteEventArgs args)	{		Application.Quit ();		args.RetVal = true;	}}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人成人成人在线视频| 91浏览器在线视频| 91麻豆精品国产自产在线观看一区 | 中文字幕五月欧美| 国产精品资源在线| 久久久久久久久97黄色工厂| 精品一区二区三区免费观看| 欧美草草影院在线视频| 国产综合色视频| 中文字幕国产一区| av在线播放不卡| 亚洲成人自拍网| 精品入口麻豆88视频| 国产激情91久久精品导航| 国产精品系列在线| 色一情一乱一乱一91av| 亚洲大片一区二区三区| 精品第一国产综合精品aⅴ| 成人影视亚洲图片在线| 亚洲第四色夜色| 久久夜色精品国产欧美乱极品| 成人免费高清视频| 五月婷婷激情综合| 国产精品女同互慰在线看| 欧美探花视频资源| 国产成人精品一区二区三区四区 | 久久久久久免费网| 色一情一伦一子一伦一区| 热久久免费视频| 亚洲三级理论片| 欧美一区二区观看视频| 成人a区在线观看| 另类的小说在线视频另类成人小视频在线| 中文字幕欧美日本乱码一线二线| 欧美欧美欧美欧美| 狠狠网亚洲精品| 亚洲欧美综合色| 久久亚洲一区二区三区四区| 7777精品久久久大香线蕉| 91在线精品秘密一区二区| 九色|91porny| 亚洲成av人片在www色猫咪| 亚洲啪啪综合av一区二区三区| 国产午夜精品久久久久久免费视 | 国产乱码精品1区2区3区| 午夜欧美视频在线观看| 亚洲欧洲在线观看av| 国产精品美女久久久久久久久| 久久精品人人爽人人爽| 日韩精品专区在线影院观看| 欧美丰满美乳xxx高潮www| 欧美在线综合视频| 99免费精品在线| 99久久99久久免费精品蜜臀| 秋霞电影一区二区| 日韩黄色小视频| 国产一级精品在线| 国产成人在线视频网址| 成年人午夜久久久| 在线亚洲精品福利网址导航| 欧美日韩国产综合一区二区三区| 91久久精品一区二区二区| 欧美三级三级三级爽爽爽| 777奇米四色成人影色区| 精品国产99国产精品| 日本一二三四高清不卡| 亚洲色欲色欲www在线观看| 亚洲高清中文字幕| 日韩电影一二三区| 国产激情视频一区二区在线观看| 一本色道综合亚洲| 日韩三级在线观看| 中文字幕国产一区| 亚洲综合区在线| 奇米精品一区二区三区在线观看| 黑人巨大精品欧美黑白配亚洲| 成人高清伦理免费影院在线观看| 欧美丝袜自拍制服另类| 欧美成人aa大片| 亚洲国产精品久久人人爱| 亚洲精品高清在线| 青草国产精品久久久久久| 国产ts人妖一区二区| 欧美日韩精品一区二区三区蜜桃| 久久一区二区三区四区| 亚洲电影在线免费观看| 成人福利在线看| 日韩一区二区三区观看| 亚洲人成伊人成综合网小说| 丝袜美腿亚洲综合| 欧美视频一区二区在线观看| 欧洲国内综合视频| 日本一区免费视频| 亚洲自拍偷拍九九九| 久久99国产精品免费网站| 国产精品一区二区无线| 欧美中文字幕一区二区三区亚洲| 7777精品伊人久久久大香线蕉| 中文字幕av不卡| 粉嫩av亚洲一区二区图片| 日韩免费看的电影| 日本欧美肥老太交大片| 91碰在线视频| 精品国产凹凸成av人导航| 亚洲一区二区三区在线| 亚洲女人的天堂| 国产在线精品国自产拍免费| 极品少妇xxxx精品少妇| 欧美色成人综合| 亚洲精品中文在线影院| 国产美女一区二区三区| 亚洲精品一区二区三区蜜桃下载 | 99这里都是精品| 亚洲视频图片小说| 色偷偷久久一区二区三区| 欧美极品xxx| 波多野结衣精品在线| 国产丝袜在线精品| 日韩精品午夜视频| 日韩亚洲欧美中文三级| 水蜜桃久久夜色精品一区的特点 | 久久久高清一区二区三区| 国产精品国产三级国产| 久久精品二区亚洲w码| 精品视频在线免费看| 精品一区二区久久| 国产精品乱码一区二三区小蝌蚪| 91行情网站电视在线观看高清版| 日本一区中文字幕| 精品久久国产老人久久综合| 国产精品主播直播| 亚洲视频狠狠干| 日韩欧美亚洲国产精品字幕久久久| 国产精品一区二区在线观看网站| 日本一区二区视频在线| 欧美精品国产精品| 99国产精品国产精品毛片| 日本视频一区二区三区| 国产精品久久久久久久蜜臀| 欧美日韩一卡二卡三卡 | 国产99久久久精品| 亚洲日本中文字幕区| 亚洲精品在线观看网站| 99精品视频一区| 国产一区二区在线电影| 亚洲午夜一区二区| 久久蜜桃一区二区| 欧美一区二区人人喊爽| 日本伦理一区二区| 色菇凉天天综合网| 成人黄色国产精品网站大全在线免费观看 | 亚洲高清视频中文字幕| 久久蜜桃一区二区| 欧美一区二区三区在线视频| 精品欧美一区二区三区精品久久| 在线播放中文一区| 欧美mv日韩mv国产网站| 欧美成人乱码一区二区三区| 制服丝袜在线91| 精品免费国产一区二区三区四区| 日韩一区二区免费在线电影 | 秋霞国产午夜精品免费视频| 石原莉奈在线亚洲三区| 麻豆精品视频在线观看免费 | 久久久高清一区二区三区| 国产精品久久久久久久浪潮网站 | 成人免费毛片片v| 91成人免费在线视频| 成人动漫一区二区在线| 一本色道亚洲精品aⅴ| 欧美日本免费一区二区三区| 色婷婷综合五月| 欧美xxxx在线观看| 国产精品护士白丝一区av| 偷拍与自拍一区| 国产一区二区三区免费观看| 99精品视频在线观看| 精品日韩一区二区三区| 亚洲成人激情综合网| 国产传媒欧美日韩成人| 欧美日韩国产精选| 久久精品亚洲乱码伦伦中文| 成人欧美一区二区三区1314| 另类成人小视频在线| 色综合色综合色综合色综合色综合| 欧洲另类一二三四区| 中文幕一区二区三区久久蜜桃| 日本不卡视频在线观看| 欧美性大战久久久| 亚洲欧美日韩一区二区| 国产精品99久久久久久宅男| 日本久久电影网| 亚洲欧洲成人精品av97| 狠狠狠色丁香婷婷综合激情| 在线亚洲免费视频| 亚洲人成精品久久久久| av一区二区三区四区| 日韩女优av电影在线观看| 日韩一区精品视频| 精品视频在线免费看|