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

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

?? mainmenu.java,v

?? 完整的模式識別庫
?? JAVA,V
?? 第 1 頁 / 共 5 頁
字號:
head	1.9;access;symbols;locks	rirwin:1.9; strict;comment	@# @;1.9date	2005.06.21.18.39.43;	author rirwin;	state Exp;branches;next	1.8;1.8date	2005.06.21.18.29.29;	author rirwin;	state Exp;branches;next	1.7;1.7date	2005.06.10.14.41.30;	author rirwin;	state Exp;branches;next	1.6;1.6date	2005.05.24.14.48.03;	author rirwin;	state Exp;branches;next	1.5;1.5date	2005.05.24.14.00.53;	author rirwin;	state Exp;branches;next	1.4;1.4date	2005.03.11.17.53.32;	author patil;	state Exp;branches;next	1.3;1.3date	2004.12.28.23.56.46;	author patil;	state Exp;branches;next	1.2;1.2date	2004.12.28.22.05.42;	author patil;	state Exp;branches;next	1.1;1.1date	2004.12.28.00.04.32;	author patil;	state Exp;branches;next	;desc@Changes made.@1.9log@Changed switching to Kalman from Particle.@text@/** * file: MainMenu.java * * last edited: Ryan Irwin */// import necessary java libraries//import java.awt.*;import javax.swing.*;import java.awt.event.ActionListener;import java.awt.event.*;import java.util.*;import java.io.*;import java.net.*;import java.applet.*;/** * * implement the menu driven system that drives the applet * * hierarchy: JPanel->SubPanel->MainMenu * */public class MainMenu extends SubPanel implements ActionListener{    // *********************************************************************    //    // declare global variables and components    //    // *********************************************************************    // declare the menu font layout    //    Font currentFont = getFont();    Font newFont = new Font(currentFont.getName(), currentFont.getStyle(), 12);    // declare the menu layout    //    JMenuBar menuBar;    JMenu menu;    JMenuItem menuItem;    JMenuItem prevMenuItem;    JMenuItem nextMenuItem;    JCheckBoxMenuItem nearestMenuItem;    JCheckBoxMenuItem euclideanMenuItem;    JCheckBoxMenuItem pcaMenuItem;    JCheckBoxMenuItem pca1MenuItem;    JCheckBoxMenuItem ldaMenuItem;    JCheckBoxMenuItem lda1MenuItem;    JCheckBoxMenuItem ldapcaMenuItem;       //I add here for lpa->pca 1    JCheckBoxMenuItem ldapca1MenuItem;    JCheckBoxMenuItem icaMenuItem;    JCheckBoxMenuItem ica1MenuItem;    JCheckBoxMenuItem svmMenuItem;    JCheckBoxMenuItem svm1MenuItem;    JCheckBoxMenuItem lpMenuItem;       //I add here for lp and particle    JCheckBoxMenuItem pfMenuItem;    JCheckBoxMenuItem kfMenuItem;    JRadioButtonMenuItem rbMenuItem;    // declare components for the help box    //    JFrame frame;    JTextArea textArea;    JScrollPane scrollPane;    JButton dismiss;    // declare components for the scales frame    //    JFrame scale;    JButton change;    // declare components for the gaussian frame    //    JFrame setgausdlg;    JButton applyb;    JButton cancel;    // declare components for the color selection frame    //    JFrame setccolorsdlg;    JLabel colorselection;    JLabel dset1color;    JLabel dset2color;    JLabel dset3color;    JLabel dset4color;    JButton setdset1;    JButton setdset2;    JButton setdset3;    JButton setdset4;    JButton setcolors;      JPanel paneldset1 = new JPanel();    JPanel paneldset2 = new JPanel();    JPanel paneldset3 = new JPanel();    JPanel paneldset4 = new JPanel();      // declare components for the k-mean algorithm    //    JFrame clusterpara;    JButton initcluster;    // declare components for the LBG algorithm    //    JFrame iterpara;    JButton inititer;    // declare components for the LP algorithm    //    JFrame lpsetorderpara;    JButton initlporder;    // declare components for the PF algorithm    //    JFrame pfsetorderpara;    JButton initpforder;    // declare components for the KF algorithm    //    JFrame kfsetorderpara;    JButton initkforder;        // declare components for the Kalman algorithm    //    JFrame set_meas_gain_frame;    JButton init_meas_gain;        // declare components for the Kalman algorithm    //    JFrame set_state_gain_frame;    JButton init_state_gain;        // declare components for the Kalman algorithm    //    JFrame set_var_meas_noise_frame;    JButton init_var_meas_noise;        // declare components for the Kalman algorithm    //    JFrame set_var_state_noise_frame;    JButton init_var_state_noise;        // declare componets for setting interpolation order in the LP algorithm     //    JFrame ipsetorderpara;    JButton initiporder;    // global variables for the k-means algorithm    //    int guesses = 4;    int iterations = 4;    // global variables for the LBG algorithm    //    int clusters = 10;    // global variables for setting linear and polation order in     // the LP  algorithm and particle filtering algorithm    //    int lporder = 8;    int iporder = 10;    int pforder = 8;    int kforder = 8;    // Kalman Filter    //    double meas_gain  = 1.0;    double state_gain = 1.0;    double var_meas_noise  = 10;    double var_state_noise = 10;    // flags    //    boolean drwptsf = true;    boolean drwgaussf = false;    boolean zoomi = false;    boolean zoomo = false;      // global variable for the gaussian distribution    //    int points = 25;    double meanx = 0.0;    double meany = 0.0;    double cov11 = 0.05;    double cov12 = 0.0;    double cov21 = 0.0;    double cov22 = 0.05;    // declare varaibles to read the help file    //    URL url;    Vector urlvec;    String document;    BufferedReader buff;    AppletContext context;    // declare components for the time scales    //    JLabel xMinLabel; // x-axis minimum label    JLabel xMaxLabel; // x-axis maximum label    JLabel yMinLabel; // y-axis minimum label    JLabel yMaxLabel; // y-axis maximum label    JTextField xMinField; // x-axis minimum text field    JTextField xMaxField; // x-axis maximum text field    JTextField yMinField; // y-axis minimum text field    JTextField yMaxField; // y-axis maximum text field    // declare components for the gaussian distribution    //    JLabel pointsLabel; // max points in distribution label    JLabel meanxLabel; // mean of distribution (x) label    JLabel meanyLabel; // mean of distribution (y) label    JLabel setgausLabel; //Gaussian Settings Label      JLabel covLabel;  //Covariance Lable    JLabel cov11Label; // covariance c11 of distribution label    JLabel cov12Label; // covariance c12 of distribution label    JLabel cov21Label; // covariance c21 of distribution label    JLabel cov22Label; // covariance c22 of distribution label    JTextField pointsField; // max points in distribution text field    JTextField meanxField; // mean of distribution (x) text field    JTextField meanyField; // mean of distribution (y) text field    JTextField cov11Field; // covariance c11 text field    JTextField cov12Field; // covariance c12 text field    JTextField cov21Field; // covariance c21 text field    JTextField cov22Field; // covariance c22 text field    // declare components for the k-means algorithm    //    JLabel guessesLabel; // number of initial guesses label    JLabel iterationsLabel; // max number of iterations label       JLabel clusterLabel; // max number of clusters    JTextField guessesField; // number of initial guesses field    JTextField iterationsField; // max number of iterations field      JTextField clusterField; // max number of clusters      // declare components for lp order in the LP algorithm    //    JLabel lporderLabel; // LP order label    JTextField lporderField; // LP order text field      // declare components for pf order in the PF algorithm    //    JLabel pforderLabel; // PF order label    JTextField pforderField; // PF order text field      // declare components for kf order in the KF algorithm    //    JLabel kforderLabel; // KF order label    JTextField kforderField; // KF order text field      // declare components for meas_gain in the Kalman algorithm    //    JLabel meas_gain_label;     JTextField meas_gain_field;    // declare components for state_gain in the Kalman algorithm    //    JLabel state_gain_label;    JTextField state_gain_field;       // declare components for var_meas_gain order in the Kalman algorithm    //    JLabel var_meas_noise_label;    JTextField var_meas_noise_field;    // declare components for var_state_gain in the Kalman algorithm    //    JLabel var_state_noise_label;     JTextField var_state_noise_field;    // declare components for interpolation in the LP and PF algorithm    //    JLabel iporderLabel; // interpolation order label    JTextField iporderField; // interpolation order text field     //  // declare a checkbox item listener    //  //    //  CheckBoxListener myListener = new CheckBoxListener();    // declare strings for the Help menu    //    String helpOption = new String("Help");    String tutorial = new String("Applet Tutorial");    String overview = new String("Applet Overview");    String release = new String("Release Notes");    String info = new String("Information and Support");    String plugins = new String("About Plug-ins");    String done = new String("Done");    String refresh = new String("Update");    String apply = new String("OK");    String destroy = new String("Cancel");    String setpara = new String("Set K-Means");    String newline = new String("\n");      // declare strings for the color changer dialog    //    String changeset = new String("Change");    String changeset1 = new String("Change1");      String changeset2 = new String("Change2");      String changeset3 = new String("Change3");      String changeset4 = new String("Change4");      // declare menu title strings    //    String drwpts = new String("Draw Points");    String drwgauss = new String("Draw Gaussian");    String pearEllipse = new String("Pear And Ellipse");    String twoEllipse = new String("Two Ellipse");    String twoGaussian = new String("Two Gaussian");    String fourGaussian = new String("Four Gaussian");    String overGaussian = new String("Overlapping Gaussian");    String twoEllipses = new String("Two Ellipses");    String fourEllipses = new String("Four Ellipses");    String rotatedEllipses = new String("Rotated Ellipses");    String toroidal = new String("Toroidal");    String yinYang = new String("Yin and Yang");    String class1 = new String("Input Class 0");    String class2 = new String("Input Class 1");    String class3 = new String("Input Class 2");    String class4 = new String("Input Class 3");    String euclidean = new String("Euclidean Distance");    String nearest = new String("Nearest Neighbor");    String kmeans = new String("Clustering: K-Means");    String binary = new String("Clustering: LBG");    String LDA1 = new String("LDA: Class-Independent");    String LDA2 = new String("LDA: Class-Dependent");    String PCA1 = new String("PCA: Class-Independent");    String PCA2 = new String("PCA: Class-Dependent");    String LDAPCA1 = new String("LDA->PCA: Class-Independent");    String LDAPCA2 = new String("LDA->PCA: Class-Dependent");    String ICA1 = new String("ICA: Class-Independent");    String ICA2 = new String("ICA: Class-Dependent");    String SVM1 = new String("SVM: Class-Independent");    String SVM2 = new String("RVM: Relevance Vector Machine");    String LP = new String("LP: Linear Prediction");    String PF = new String("PF: Particle Filtering");    String KF = new String("KF: Kalman Filtering");    String previous = new String("Previous");    String setgaus = new String ("Set Gaussian");    String setccolors = new String ("Set Class Colors");    String setiterations = new String ("Set Iterations");    String setclusters = new String ("Set Clusters");    String setlporders = new String ("Set LP Order");    String setpforders = new String ("Set PF Order");    String setkforders = new String ("Set KF Order");    String setiporders = new String ("Set Interpolation");    String set_meas_gain = new String ("Set Measurement Gain");    String set_state_gain = new String ("Set State Gain");    String set_var_meas_noise = new String("Set Variance of Measurement Noise");    String set_var_state_noise = new String ("Set Variance of State Noise");    String saveiporders = new String ("Save Interpolation Order");    String saveiterations = ("Save Iterations");    String saveclusters = ("Save Clusters");    String savelporders = ("Save LP Order");    String savepforders = ("Save PF Order");    String savekforders = ("Save KF Order");    String save_meas_gain = new String ("Save Measurement Gain");    String save_state_gain = new String ("Save State Gain");    String save_var_meas_noise = new String("Save Variance of Measurement Noise");    String save_var_state_noise = new String ("Save Variance of State Noise");    String clearAll = new String("Clear All");    String clearPlots = new String("Clear Display");    String clearInput = new String("Clear Input");    String clearOutput = new String("Clear Output");    String clearTxt = new String("Clear Description");    String erase = new String("Erase");    String zoomin = new String("Zoom In");      String zoomout = new String("Zoom Out");      String limit = new String("Set Ranges");    String next = new String("Next");    String load = new String("Load");    String save = new String("Save");    String initialize = new String("Initialize");    String viewEuclidean = new String("View Euclidean");    String viewNearest = new String("View Nearest Neighbor");    String viewPCA1 = new String("PCA: Class Independent PCA");    String viewPCA2 = new String("PCA: Class Dependent PCA");    String viewLDA1 = new String("LDA: Class Independent LDA");    String viewLDA2 = new String("LDA: Class Dependent LDA");    String viewLDAPCA1 = new String("LDA->PCA: Class Independent LDA->PCA");    String viewLDAPCA2 = new String("LDA->PCA: Class Dependent LDA->PCA");    String viewICA1 = new String("ICA: Class Independent PCA");    String viewICA2 = new String("ICA: Class Dependent LDA");    String viewSVM1 = new String("SVM: Class Independent PCA");    //String viewSVM2 = new String("SVM: Class Dependent LDA");    String viewSVM2 = new String("SVM: Relevance Vector Machine");    String viewLP = new String("LP: Linear Prediction");    String viewPF = new String("PF: Particle Filtering");    String viewKF = new String("KF: Kalman Filtering");    String viewKMeans = new String("Clustering : K-Means");    String viewLBG = new String("Clustering : LBG");

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久国产精品一区二区| 欧美a级理论片| 国产最新精品精品你懂的| 一本大道av一区二区在线播放| 91精品国产色综合久久不卡蜜臀| 日韩一区有码在线| 国产原创一区二区| 欧美猛男超大videosgay| 国产精品久久久久久亚洲伦| 日韩av不卡一区二区| 91高清视频在线| 中文字幕制服丝袜一区二区三区 | 国产精品午夜在线| 精品一区二区国语对白| 欧美久久高跟鞋激| 亚洲综合在线电影| 99久久久久久| 国产精品热久久久久夜色精品三区| 免播放器亚洲一区| 91精品国产麻豆| 亚洲成av人综合在线观看| 日本久久电影网| 国产精品福利av| 国产成人av资源| 亚洲精品在线观看网站| 日韩黄色免费网站| 欧美精品丝袜中出| 亚洲成年人影院| 日本福利一区二区| 一区二区三区四区国产精品| www.一区二区| 自拍偷自拍亚洲精品播放| 成熟亚洲日本毛茸茸凸凹| 久久精品视频一区二区| 国内一区二区视频| 26uuu成人网一区二区三区| 国内成人自拍视频| 久久综合999| 国产精品一二三四| 国产日本欧洲亚洲| 懂色av一区二区三区蜜臀| 国产精品入口麻豆九色| 不卡视频免费播放| 国产精品沙发午睡系列990531| 丁香啪啪综合成人亚洲小说| 中文字幕欧美日本乱码一线二线| 福利一区二区在线| 国产精品国产三级国产普通话99 | 色综合中文字幕国产 | 91麻豆精品国产自产在线| 天堂一区二区在线| 日韩亚洲电影在线| 韩国女主播成人在线| 国产性天天综合网| 成人ar影院免费观看视频| 亚洲视频在线观看三级| 日本高清免费不卡视频| 午夜影视日本亚洲欧洲精品| 91精品久久久久久久91蜜桃| 九九九精品视频| 国产精品丝袜黑色高跟| 日本韩国一区二区三区视频| 五月开心婷婷久久| 精品久久久久一区| 成人av小说网| 亚洲高清不卡在线| 精品国产电影一区二区| 成人性视频网站| 一区二区三区不卡视频在线观看 | 91美女视频网站| 日韩激情在线观看| 久久免费看少妇高潮| 99久久久久久| 日韩av高清在线观看| 国产婷婷色一区二区三区四区 | 91在线视频网址| 亚洲国产你懂的| 日韩精品一区二区三区视频播放 | 日韩午夜精品电影| 国产91丝袜在线播放0| 亚洲精品欧美二区三区中文字幕| 欧美性猛交xxxxxx富婆| 伦理电影国产精品| 中文字幕日韩精品一区| 欧美一区二区三区思思人| 精品中文av资源站在线观看| 国产精品人妖ts系列视频| 欧美日韩国产成人在线免费| 极品少妇xxxx精品少妇| 亚洲三级在线观看| 91精品在线免费| 丁香啪啪综合成人亚洲小说| 亚洲成人资源网| 欧美国产97人人爽人人喊| 欧美日韩日日夜夜| 成人免费视频一区二区| 日本中文字幕一区| 亚洲色图视频网站| 欧美一级在线免费| 99在线热播精品免费| 蜜臀av一区二区在线观看 | 日韩三级电影网址| 91同城在线观看| 蜜臀av性久久久久蜜臀av麻豆| 中文字幕一区二区日韩精品绯色| 欧美一区二区三区性视频| 色哟哟日韩精品| 国产一区二区不卡| 午夜激情综合网| 1024成人网| 国产婷婷色一区二区三区四区| 欧美日韩国产高清一区二区三区 | 欧美三级韩国三级日本一级| 国产美女主播视频一区| 偷拍亚洲欧洲综合| 亚洲精品国产视频| 国产日韩欧美在线一区| 日韩一级片网址| 欧美日韩性生活| 色哟哟一区二区在线观看| 国产69精品久久777的优势| 奇米影视在线99精品| 亚洲精品成人精品456| 国产精品日日摸夜夜摸av| 欧美精品一区二区三区四区| 欧美日韩激情一区| 色诱视频网站一区| av一区二区三区在线| 国产寡妇亲子伦一区二区| 视频在线在亚洲| 亚洲自拍偷拍麻豆| 亚洲欧美另类在线| 国产精品少妇自拍| 国产拍欧美日韩视频二区| 欧美电影免费观看高清完整版| 欧美日韩国产影片| 91激情五月电影| 91免费观看在线| av电影天堂一区二区在线| 成人精品视频.| 成人免费视频视频在线观看免费| 国产一区二区不卡在线| 国产一区999| 国产毛片精品国产一区二区三区| 另类专区欧美蜜桃臀第一页| 日韩va亚洲va欧美va久久| 丝袜a∨在线一区二区三区不卡| 亚洲国产日产av| 亚洲一区在线观看免费| 亚洲资源在线观看| 亚洲精品va在线观看| 一个色在线综合| 亚洲一区二区三区在线看| 一区二区三区四区在线免费观看| 国产精品短视频| 亚洲日本在线视频观看| 亚洲精品中文字幕乱码三区 | 日韩一卡二卡三卡四卡| 91精品国产欧美一区二区成人| 91精品福利在线一区二区三区 | 欧美经典一区二区三区| 久久精品视频网| 国产精品欧美一级免费| 综合激情成人伊人| 亚洲精品久久7777| 亚洲电影第三页| 日韩精品福利网| 美腿丝袜亚洲色图| 国产一区二区三区美女| 成人网页在线观看| 99精品桃花视频在线观看| 色婷婷亚洲综合| 欧美丝袜丝nylons| 日韩一区二区三区视频在线 | 日韩精品在线网站| 久久久精品国产免费观看同学| 久久久久久99精品| 国产精品青草久久| 亚洲精品大片www| 日韩成人dvd| 国产老肥熟一区二区三区| 成人精品小蝌蚪| 色狠狠综合天天综合综合| 欧美日韩国产精选| 精品国产免费一区二区三区四区| 久久久综合激的五月天| 国产精品久久久久9999吃药| 亚洲免费观看高清完整版在线观看 | 精品久久久久久久久久久院品网| 国产亚洲精品精华液| 亚洲免费观看高清完整版在线观看 | 国产欧美一区二区精品仙草咪| 中文字幕第一页久久| 一区二区三区中文在线| 日韩国产欧美视频| 国模少妇一区二区三区| 91在线视频18| 日韩一区二区麻豆国产| 欧美国产丝袜视频| 婷婷综合五月天|