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

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

?? nnd13is.m

?? 神經網絡設計書籍配套源碼(matlab平臺)
?? M
?? 第 1 頁 / 共 2 頁
字號:
function nnd13is(cmd,arg1,arg2,arg3)
%NND13IS Instar demonstration.
%
%	This demonstration requires either the MININNET functions
%	on the NND disk or the Neural Network Toolbox.

% First Version, 8-31-95.

%==================================================================

% CONSTANTS
me = 'nnd13is';
Fs = 8192;
pause1 = 0.7;
pause2 = 0.1;

% DEFAULTS
if nargin == 0, cmd = ''; else cmd = lower(cmd); end

% FIND WINDOW IF IT EXISTS
fig = nnfgflag(me);
if length(get(fig,'children')) == 0, fig = 0; end

% GET WINDOW DATA IF IT EXISTS
if fig
  H = get(fig,'userdata');
  fig_axis = H(1);         % window axis
  desc_text = H(2);        % handle to first line of text sequence
  lines = H(3:4);          % belt circle lines
  fruit_indicator = H(5);  % fruit entrance indicator
  top_indicator = H(6);    % top exit indicator
  bottom_indicator = H(7); % bottom exit indicator;
  sounds = H(8:15);        % pointers to sounds
  angle_ptr = H(16);       % angle (deg) of lines in conveyer ends
  fruit_ptr = H(17);       % pointer to fruit shape
  arrows = H(21:22);       % handles to arrows
  rb1 = H(23);             % Working radio button
  rb2 = H(24);             % Not working radio button
  cross = H(25);           % Not working cross
  p1_ptr = H(26);          % Input #1
  p2_ptr = H(27);          % Input #2
  a_ptr = H(28);           % Output
  W2_ptr = H(29);          % Weights #2
  p1_box = H(30);
  p1_text = H(31);
  p2_box1 = H(32);
  p2_text1 = H(33);
  p2_box2 = H(34);
  p2_text2 = H(35);
  p2_box3 = H(36);
  p2_text3 = H(37);
  a_box = H(38);
  a_text = H(39);
  go_button = H(40);
  mode_ptr = H(41);
  W2_box1 = H(42);
  W2_text1 = H(43);
  W2_box2 = H(44);
  W2_text2 = H(45);
  W2_box3 = H(46);
  W2_text3 = H(47);
  n_box = H(48);
  n_text = H(49);
  mode = get(mode_ptr,'userdata');
end

%==================================================================
% Activate the window.
%
% ME() or ME('')
%==================================================================

if strcmp(cmd,'')
  if fig
    figure(fig)
    set(fig,'visible','on')
  else
    feval(me,'init')
  end

%==================================================================
% Close the window.
%
% ME() or ME('')
%==================================================================

elseif strcmp(cmd,'close') & (fig)
  delete(fig)

%==================================================================
% Initialize the window.
%
% ME('init')
%==================================================================

elseif strcmp(cmd,'init') & (~fig)

  % CHECK FOR TRANSFER FUNCTIONS
  if ~nnfexist(me), return, end

  % NEW DEMO FIGURE
  fig = nndemof2(me,'DESIGN','Instar','','Chapter 13');

  set(fig, ...
    'windowbuttondownfcn',nncallbk(me,'down'), ...
    'BackingStore','off',...
    'nextplot','add');
  H = get(fig,'userdata');
  fig_axis = H(1);
  desc_text = H(2);

  % SOUND POINTERS
  wind = uicontrol('visible','off','userdata',nndsnd(3));
  knock = uicontrol('visible','off','userdata',nndsnd(5));
  scan = uicontrol('visible','off','userdata',nndsnd(1));
  classify = uicontrol('visible','off','userdata',nndsnd(4));
  blip = uicontrol('visible','off','userdata',nndsnd(6));
  bloop = uicontrol('visible','off','userdata',nndsnd(7));
  blp = uicontrol('visible','off','userdata',nndsnd(9));
  tribble = uicontrol('visible','off','userdata',nndsnd(8));

  % ICON
  nndicon(13,458,363,'shadow')

  % CONVEYER BELT
  deg = pi/180;
  angle = [0:5:360]*deg;
  cx = cos(angle);
  cy = sin(angle);

  % ENTRANCE BOX
  x = 60;
  y = 20;
  fill([0 0 x+10 x+10],y+[70 50 50 70],nndkblue,...
    'edgecolor','none')
  fill(x+[10 10 50 50],y+[80 40 40 80],nndkblue,...
    'edgecolor','none')
  plot([0 x+[10 10 50 50 10 10] 0],...
    y+[50 50 40 40 80 80 70 70],...
    'color',nnred)
  left_arrow = fill(x+30+[-5 -5 -10 0 10 5 5],y+60+[15 5 5 -15 5 5 15],nndkblue,...
    'edgecolor',nnred,...
    'erasemode','none');
  fruit_ind = text(x-25,y+60,'Fruit',...
    'color',[0.8 0.8 0],...
    'fontweight','bold',...
    'horiz','center',...
    'erasemode','none');

  % LEFT CIRCLE
  line_angle = 45*deg;
  fill(x-10+cx*10,y+10+cy*10,nnred,...
    'edgecolor',nndkblue,...
    'linewidth',2)
  line_1 = plot(x-10+cos([0 pi]+line_angle)*8,y+10+sin([0 pi]+line_angle)*8,...
    'color',nndkblue,...
    'erasemode','none',...
    'linewidth',2);

  % RIGHT CIRCLE
  x = 320;
  fill(x+10+cx*10,y+10+cy*10,nnred,...
    'edgecolor',nndkblue,...
    'linewidth',2)
  line_2 = plot(x+10+cos([0 pi]+line_angle)*8,y+10+sin([0 pi]+line_angle)*8,...
    'color',nndkblue,...
    'erasemode','none',...
    'linewidth',2);

  % BELT
  plot([50 330],[y y]+20,...
    'color',nndkblue,...
    'linewidth',2)
  plot([50 330],[y y],...
    'color',nndkblue,...
    'linewidth',2)
  
  % SENSOR BOX #1
  x = 140;
  fill(x+[0 40 20],y+[40 40 80],nndkblue,...
    'edgecolor',nnred)
  fill(x+[0 40 40 0],y+[14 14 8 8],nndkblue,...
    'edgecolor',nnred)
  cross = plot(x+[15 25 20 25 15],y+[50 60 55 50 60],...
    'color',nndkblue,...
    'linewidth',3,...
    'erasemode','none');
  
  % SENSOR BOX #2
  x = 200;
  fill(x+[0 40 20],y+[40 40 80],nndkblue,...
    'edgecolor',nnred)
  fill(x+[0 40 40 0],y+[14 14 8 8],nndkblue,...
    'edgecolor',nnred)

  % EXIT BOX
  x = 320;
  fill([x-10 x-10 380 380],y+[80 62 62 80],nndkblue,...
    'edgecolor','none')
  fill([x-10 x-10 380 380],y+[40 58 58 40],nndkblue,...
    'edgecolor','none')
  fill(x-[10 10 50 50],y+[80 40 40 80],nndkblue,...
    'edgecolor','none')
  plot([378 x-[50 50] 378],y+[80 80 40 40],...
    'color',nnred)
  plot([378 x-[10 10] 378],y+[62 62 58 58],...
    'color',nnred)
  right_arrow = fill(x-30+[-5 -5 -10 0 10 5 5],y+60-[15 5 5 -15 5 5 15],nndkblue,...
    'edgecolor',nnred,...
    'erasemode','none');
  top_ind = text(x+25,y+71,'Orange',...
    'color',[0.8 0.8 0],...
    'fontweight','bold',...
    'horiz','center',...
    'erasemode','none');
  bottom_ind = text(x+24,y+48,'Other',...
    'color',[0.8 0.8 0],...
    'fontweight','bold',...
    'horiz','center',...
    'erasemode','none');

  % BUTTONS
  go_button = uicontrol(...
    'units','points',...
    'position',[400 150 60 20],...
    'string','Fruit',...
    'callback',[me '(''go'')']);
  uicontrol(...
    'units','points',...
    'position',[400 120 60 20],...
    'string','Clear',...
    'callback',[me '(''clear'')'])
  uicontrol(...
    'units','points',...
    'position',[400 90 60 20],...
    'string','Contents',...
    'callback','nndtoc')
  uicontrol(...
    'units','points',...
    'position',[400 60 60 20],...
    'string','Close',...
    'callback',[me '(''close'')'])

  % LOWER SEPERATION BAR
  fill([0 0 380 380],130+[0 4 4 0],nndkblue,...
    'edgecolor','none')

  % UPPER SEPERATION BAR
  fill([0 0 380 380],160+[0 4 4 0],nndkblue,...
    'edgecolor','none')
 
  % RADIO BUTTONS
  set(nndtext(20,147,'First Scanner:','left'),...
    'fontsize',12)
  rb1 = uicontrol(...
    'units','points',...
    'position',[140 139 100 20],...
    'string','Working',...
    'style','radio',...
    'value',1,...
    'callback',[me '(''working'')']);
  rb2 = uicontrol(...
    'units','points',...
    'position',[250 139 100 20],...
    'string','Not Working',...
    'style','radio',...
    'callback',[me '(''notworking'')']);

  W1 = 1;
  W2 = [0 0 0];
  set(fig,'nextplot','add')
  
  % NETWORK INPUT #1
  x1 = 70;
  y1 = 310;
  dy1 = 45;
  nndtext(x1-10,y1,'Orange?','right');
  p1_box = fill(x1+[0 20 20 0 0],y1-10+[0 0 20 20 0],nnltgray,...
    'edgecolor',nnred,...
    'linewidth',2,...
    'erasemode','none');
  p1_text = nndtext(x1+10,y1,'?');
  set(p1_text,'erasemode','none');

  % NETWORK INPUT #2
  y3 = y1-2*dy1;
  dy3 = -30;
  nndtext(x1-10,y3-dy3,'Shape','right');
  nndtext(x1-10,y3,'Texture','right');
  nndtext(x1-10,y3+dy3,'Weight','right');
  p2_box1 = fill(x1+[0 20 20 0 0],y3-10+[0 0 20 20 0]-dy3,nnltgray,...
    'edgecolor',nnred,...
    'linewidth',2,...
    'erasemode','none');
  p2_text1 = nndtext(x1+10,y3-dy3,'?');
  p2_box2 = fill(x1+[0 20 20 0 0],y3-10+[0 0 20 20 0],nnltgray,...
    'edgecolor',nnred,...
    'linewidth',2,...
    'erasemode','none');
  p2_text2 = nndtext(x1+10,y3,'?');
  p2_box3 = fill(x1+[0 20 20 0 0],y3-10+[0 0 20 20 0]+dy3,nnltgray,...
    'edgecolor',nnred,...
    'linewidth',2,...
    'erasemode','none');
  p2_text3 = nndtext(x1+10,y3+dy3,'?');

  % NEURON
  x2 = x1+165;
  y2 = y1-dy1;
  sumdist = 50;
  sz = 15;
  plot(x2+[0 0 sumdist],y2+[-25 0 0],'linewidth',2,'color',nnred);
  plot(x2-20+[0 40 40 0 0],y2-45+[0 0 20 20 0],'color',nnred,'linewidth',2);
  plot(x2+[0 0],y2+[-45 -55],'linewidth',2,'color',nnred);
  plot(x2+sumdist+sz+[20 30 0 30 20],y2+[10 0 0 0 -10],'linewidth',2,'color',nnred);
  nndtext(x2+sumdist+sz+45,y2+30,'Orange?');
  nndsicon('sum',x2,y2,sz)
  nndsicon('hardlim',x2+sumdist,y2,sz)
  nndtext(x2,y2-36,'-0.5');
  nndtext(x2,y2-66,'1');
  a_box = fill(x2+sumdist+sz+35+[0 20 20 0 0],y2-10+[0 0 20 20 0],nnltgray,...
    'edgecolor',nnred,...
    'linewidth',2,...
    'erasemode','none');
  a_text = nndtext(x2+sumdist+sz+45,y2,'?');
  
  % NET INPUT
  n_box = fill(x2+5+[0 40 40 0 0],y2+30+[0 0 20 20 0],nnltgray,...
    'edgecolor',nnred,...
    'linewidth',2,...
    'erasemode','none');
  n_text = nndtext(x2+25,y2+40,'?');
  plot(x2+25+[0 0],y2+[30 0],':','linewidth',2,'color',nnred);
  

  % WEIGHTS #1
  straight = 95;
  plot([x1+20 x1+straight-50],[y1 y1],'linewidth',2,'color',nnred);
  plot([x1+straight-10 x1+straight x2-sz],[y1 y1 y2],'linewidth',2,'color',nnred);
  plot(x1+straight-50+[0 40 40 0 0],y1-10+[0 0 20 20 0],'color',nnred,'linewidth',2);
  nndtext(x1+straight-30,y1,'1');

  % WEIGHTS #2
  straight_dist = 100;
  plot([x1+20 x1+straight-50],[y3 y3]-dy3,'linewidth',2,'color',nnred);
  plot([x1+straight-10 x1+straight x2-sz],[y3-dy3 y3-dy3 y2],'linewidth',2,'color',nnred);
  W2_box1 = fill(x1+straight-50+[0 40 40 0 0],y3-10+[0 0 20 20 0]-dy3,nnltgray,...
    'edgecolor',nnred,...
    'linewidth',2,...
    'erasemode','none');
  W2_text1 = nndtext(x1+straight-30,y3-dy3,sprintf('%5.2f',W2(1)));
  plot([x1+20 x1+straight-50],[y3 y3],'linewidth',2,'color',nnred);
  plot([x1+straight-10 x1+straight x2-sz],[y3 y3 y2],'linewidth',2,'color',nnred);
  W2_box2 = fill(x1+straight-50+[0 40 40 0 0],y3-10+[0 0 20 20 0],nnltgray,...
    'edgecolor',nnred,...
    'linewidth',2,...
    'erasemode','none');
  W2_text2 = nndtext(x1+straight-30,y3,sprintf('%5.2f',W2(2)));
  plot([x1+20 x1+straight-50],[y3 y3]+dy3,'linewidth',2,'color',nnred);
  plot([x1+straight-10 x1+straight x2-sz],[y3+dy3 y3+dy3 y2],'linewidth',2,'color',nnred);
  W2_box3 = fill(x1+straight-50+[0 40 40 0 0],y3-10+[0 0 20 20 0]+dy3,nnltgray,...
    'edgecolor',nnred,...
    'linewidth',2,...
    'erasemode','none');
  W2_text3 = nndtext(x1+straight-30,y3+dy3,sprintf('%5.2f',W2(3)));

  % INPUT HEADING
  temp = nndtext(x1+10,y1+30,'Inputs');

  % WEIGHT HEADING
  nndtext(x1+straight_dist-35,y1+30,'Weights');

  % SCANNER NAMES
  set(nndtext(160,120,''),...
    'fontsize',10)
  set(nndtext(160,109,'Orange?'),...
    'fontsize',10)
  set(nndtext(220,122,'Shape, Texture,'),...
    'fontsize',10)
  set(nndtext(220,109,'& Weight'),...
    'fontsize',10)

  % SAVE WINDOW DATA AND LOCK
  angle_ptr = uicontrol('visible','off','userdata',line_angle);
  fruit_ptr = uicontrol('visible','off','userdata',[]);

  p1_ptr = uicontrol('visible','off','userdata',[]);
  p2_ptr = uicontrol('visible','off','userdata',[]);
  a_ptr = uicontrol('visible','off','userdata',[]);
  W2_ptr = uicontrol('visible','off','userdata',W2);
  W2_ptr = uicontrol('visible','off','userdata',W2);
  mode_ptr = uicontrol('visible','off','userdata',1);

  H = [fig_axis, ...
       desc_text, ...
       line_1 line_2, ...
       fruit_ind top_ind bottom_ind, ...
       wind knock scan classify blip bloop blp tribble, ...
       angle_ptr fruit_ptr 0 0 0, ...
       left_arrow right_arrow,rb1 rb2 cross, ...
       p1_ptr p2_ptr a_ptr W2_ptr,...
       p1_box p1_text,...
       p2_box1 p2_text1 p2_box2 p2_text2 p2_box3 p2_text3,...
       a_box a_text,...
       go_button mode_ptr,...
       W2_box1 W2_text1 W2_box2 W2_text2 W2_box3 W2_text3,...
       n_box, n_text];

  set(fig,'userdata',H,'nextplot','new')

  % INSTRUCTION TEXT
  feval(me,'instr');

  % LOCK WINDOW
  set(fig,...
   'nextplot','new',...
   'color',nnltgray);

  nnchkfs;

%==================================================================
% Display the instructions.
%
% ME('instr')
%==================================================================

elseif strcmp(cmd,'instr') & (fig)
  nnsettxt(desc_text,...
    'Click [Fruit] to send',...
    'a fruit down the belt.',...
    'Click [Update] to apply',...
    'the instar rule.',...
    '',...
    'Once the network has',...
    'seen a few oranges',...
    'it will recognize',...
    'them by their shape,',...
    'texture, and weight,',...
    'even if the first',...
    'scanner is off.')
    
%==================================================================
% Respond to fruit.
%
% ME('fruit')
%==================================================================

elseif strcmp(cmd,'go') & (fig) & (nargin == 1) & (mode == 1);

  % GET DATA
  wind = get(sounds(1),'userdata');
  knock = get(sounds(2),'userdata');
  scan = get(sounds(3),'userdata');
  classify = get(sounds(4),'userdata');
  blip = get(sounds(5),'userdata');
  bloop = get(sounds(6),'userdata');
  blp = get(sounds(7),'userdata');
  tribble = get(sounds(8),'userdata');
  angle = get(angle_ptr,'userdata');
  fruit = get(fruit_ptr,'userdata');
  axes(fig_axis);

  % NEW FRUIT
  nnpause(pause1)
  x = 82;
  y = 42;

  % FRUIT ID, COLOR & SHAPE

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品一级片在线观看| 欧美日韩aaaaa| 精品国产乱码久久久久久浪潮| 国产精品二三区| 国产成人8x视频一区二区| 欧美性猛交xxxx乱大交退制版 | 亚洲va国产天堂va久久en| 99re热视频这里只精品| 国产精品九色蝌蚪自拍| 97久久精品人人做人人爽50路| 国产日韩欧美制服另类| 成人高清伦理免费影院在线观看| 26uuu亚洲综合色欧美| 国产一区二区福利| 91精品国产91久久综合桃花| 亚洲电影你懂得| 91精品国产乱| 成人精品一区二区三区四区| 国产精品高潮呻吟久久| 欧美网站一区二区| 国内精品免费**视频| 中文字幕一区二区三区色视频| 色婷婷香蕉在线一区二区| 午夜成人在线视频| 久久―日本道色综合久久| 色视频一区二区| 日韩高清不卡一区| 国产精品高潮久久久久无| 欧美理论在线播放| 粉嫩av亚洲一区二区图片| 亚洲成人自拍网| 国产清纯白嫩初高生在线观看91| 色老汉av一区二区三区| 麻豆精品视频在线观看免费| 国产精品夫妻自拍| 日韩欧美成人激情| 色婷婷av一区二区三区之一色屋| 另类人妖一区二区av| 亚洲日本中文字幕区| 日韩一级免费观看| 色先锋aa成人| 成人午夜免费电影| 日本欧美加勒比视频| 国产精品理论片在线观看| 欧美大胆人体bbbb| 欧美日韩在线一区二区| 福利一区在线观看| 91成人在线精品| 国产成人亚洲综合a∨婷婷图片| 亚洲高清在线视频| 亚洲色图欧洲色图| 国产日韩欧美亚洲| 亚洲精品一区二区三区99| 欧美在线播放高清精品| 成人黄色小视频| 狠狠色综合播放一区二区| 日欧美一区二区| 亚洲最新视频在线观看| 中文字幕国产一区| 久久久久久久久久久久久夜| 91精品欧美久久久久久动漫| 色综合欧美在线视频区| 99精品在线免费| 成人听书哪个软件好| 精品一二三四区| 麻豆精品久久久| 日韩国产高清在线| 日韩二区三区四区| 无码av免费一区二区三区试看| 亚洲色图视频网| 亚洲免费高清视频在线| 亚洲丝袜制服诱惑| 国产精品毛片久久久久久| 国产日韩综合av| 欧美韩日一区二区三区四区| 欧美精品一区二区久久久| 精品久久久久久无| 精品国产乱码久久久久久图片| 精品日韩欧美在线| 欧美精品一区二区在线播放| 日韩免费视频一区二区| 日韩小视频在线观看专区| 4438亚洲最大| 精品国产污污免费网站入口 | 日本一区二区不卡视频| 国产亚洲成aⅴ人片在线观看| 久久久不卡网国产精品二区| 久久影院午夜片一区| 久久综合九色综合97婷婷女人| 久久综合五月天婷婷伊人| 久久一区二区三区国产精品| 久久精品人人做人人爽人人| 久久精品欧美日韩精品| 亚洲国产高清在线观看视频| 国产精品不卡一区| 亚洲自拍与偷拍| 蜜乳av一区二区三区| 国产精品资源在线看| 成人激情黄色小说| 91成人在线精品| 精品国内片67194| 国产精品毛片大码女人| 亚洲女子a中天字幕| 视频一区二区不卡| 国产永久精品大片wwwapp| 成人av在线网| 91精品欧美久久久久久动漫| 久久久亚洲精华液精华液精华液| 国产精品人人做人人爽人人添| 亚洲一二三四久久| 久久99精品久久久久久动态图| 国产成人av电影在线播放| 在线精品国精品国产尤物884a| 91精品国产综合久久久久久漫画 | 亚洲精品一区二区三区蜜桃下载| 亚洲国产精品成人综合| 亚洲一区二区偷拍精品| 久久精品国产亚洲aⅴ | 亚洲激情欧美激情| 亚洲成人精品在线观看| 日韩精品免费专区| 国产老肥熟一区二区三区| av电影在线不卡| 欧美日韩一区二区三区视频 | 一本到不卡精品视频在线观看| 色久优优欧美色久优优| 欧美美女黄视频| 国产拍揄自揄精品视频麻豆| 亚洲欧洲日产国码二区| 亚洲一卡二卡三卡四卡无卡久久 | 欧美精选在线播放| 久久亚洲精精品中文字幕早川悠里 | 亚洲青青青在线视频| 日韩精品免费专区| 99精品国产热久久91蜜凸| 欧美日韩欧美一区二区| 欧美国产欧美综合| 麻豆一区二区三区| 91欧美一区二区| 欧美va亚洲va国产综合| 亚洲精品国产品国语在线app| 蜜臀av国产精品久久久久| 欧美偷拍一区二区| 国产亚洲美州欧州综合国| 亚洲.国产.中文慕字在线| 国产成人免费视| 在线不卡a资源高清| 亚洲激情六月丁香| 国产成人aaaa| 日韩免费在线观看| 亚洲精品久久久久久国产精华液| 日韩精品91亚洲二区在线观看| 色婷婷久久久久swag精品| 精品国产乱码久久久久久夜甘婷婷 | 国内成+人亚洲+欧美+综合在线 | 91麻豆swag| 久久久精品国产免大香伊| 日本中文字幕不卡| 色婷婷激情综合| 亚洲欧美日韩国产成人精品影院| 精品一区二区三区久久久| 欧美酷刑日本凌虐凌虐| 亚洲欧美日韩人成在线播放| 国产精品一区二区在线播放| 欧美四级电影网| 亚洲精品v日韩精品| aaa国产一区| 国产精品你懂的在线| 一区二区三区成人| 欧美乱妇15p| 首页国产丝袜综合| 欧美日韩卡一卡二| 亚洲成a人在线观看| 欧美日韩国产另类不卡| 午夜精品福利一区二区蜜股av| 欧美又粗又大又爽| 亚洲综合精品久久| 日本二三区不卡| 亚洲日韩欧美一区二区在线| 99精品视频在线播放观看| 国产欧美视频一区二区| 99在线精品观看| 亚洲欧洲日产国产综合网| 欧美视频在线播放| 亚洲成a人片综合在线| 日韩欧美高清在线| 国产在线视频精品一区| 久久精品综合网| 成人网页在线观看| 国产精品五月天| 国产99精品在线观看| 欧美国产精品中文字幕| 99视频一区二区| 一区二区三区四区不卡视频 | 中文字幕不卡三区| 91在线观看美女| 亚洲aaa精品| 精品国内片67194| 成人国产亚洲欧美成人综合网| 国产精品久久久久久久久果冻传媒 |