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

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

?? mainmenu.java

?? 完整的模式識別庫
?? JAVA
?? 第 1 頁 / 共 5 頁
字號:
/** * 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");      // *********************************************************************    //    // declare class     /**     *     * constructor initializes objects and containers     *     * @param   vec vector of url's     * @param   con applet context     *     */    MainMenu(Vector vec, AppletContext con)    {	super();	// initialize the input and output panel objects	//	urlvec = vec;	context = con;	// initialize the labels and text fields	//	xMinLabel = new JLabel("X minimum:   ");	xMaxLabel = new JLabel("X maximum:   ");	yMinLabel = new JLabel("Y minimum:   ");	yMaxLabel = new JLabel("Y maximum:   ");	xMinField = new JTextField("-1.0", 10);	xMaxField = new JTextField("1.0", 10);	yMinField = new JTextField("-1.0", 10);	yMaxField = new JTextField("1.0", 10);	colorselection = new JLabel("Select Class Colors");	dset1color = new JLabel("Class 0");	dset2color = new JLabel("Class 1");	dset3color = new JLabel("Class 2");	dset4color = new JLabel("Class 3");	pointsLabel = new JLabel("Points : ");	meanxLabel = new JLabel("Mean(X): ");	meanyLabel = new JLabel("Mean(Y): ");	setgausLabel = new JLabel("Gaussian Settings");	covLabel = new JLabel("Covariance:");	cov11Label = new JLabel("  Cov[1,1]: ");	cov12Label = new JLabel("  Cov[1,2]: ");	cov21Label = new JLabel("  Cov[2,1]: ");	cov22Label = new JLabel("  Cov[2,2]: ");	pointsField = new JTextField("25", 10);	meanxField = new JTextField("0.0", 10);	meanyField = new JTextField("0.0", 10);	cov11Field = new JTextField("0.05", 10);	cov12Field = new JTextField("0.0", 10);	cov21Field = new JTextField("0.0", 10);	cov22Field = new JTextField("0.05", 10);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
k8久久久一区二区三区 | 国产精品国产三级国产专播品爱网 | 综合久久国产九一剧情麻豆| 精品少妇一区二区三区| 日韩午夜激情免费电影| 日韩精品一区二区在线| 欧美成人午夜电影| 精品国产乱码久久久久久浪潮| 精品少妇一区二区三区免费观看| 久久午夜羞羞影院免费观看| 国产日韩欧美综合一区| 国产精品污网站| 亚洲精品久久7777| 五月综合激情网| 黄一区二区三区| 成人免费看的视频| 精品视频一区二区不卡| 日韩免费高清电影| 国产午夜亚洲精品羞羞网站| 中文乱码免费一区二区| 亚洲一区二区三区激情| 日韩高清国产一区在线| 国产毛片精品一区| 91网站在线观看视频| 欧美猛男超大videosgay| 精品国产青草久久久久福利| 国产精品欧美一区喷水| 午夜精品在线看| 国产91精品露脸国语对白| 在线亚洲精品福利网址导航| 欧美刺激午夜性久久久久久久 | 丰满岳乱妇一区二区三区| 色999日韩国产欧美一区二区| 6080yy午夜一二三区久久| 国产欧美视频一区二区| 亚洲电影视频在线| 成人性生交大合| 69p69国产精品| 国产精品久久久久久久岛一牛影视 | 成人av片在线观看| 91麻豆精品国产自产在线| 中文欧美字幕免费| 青青草国产精品亚洲专区无| 99在线精品一区二区三区| 日韩精品一区二区三区视频| 亚洲精品乱码久久久久久| 国产福利精品导航| 欧美一区二区不卡视频| 亚洲精品中文在线影院| 成人免费视频免费观看| 日韩免费高清av| 亚洲1区2区3区视频| 99久久精品免费| 国产视频911| 久久精品国产一区二区三| 欧美日韩一二三区| 亚洲欧美电影院| 成人av资源网站| 国产日产欧产精品推荐色| 久久se这里有精品| 91精品国产综合久久精品app| 亚洲精品乱码久久久久| 91亚洲精品一区二区乱码| 久久久99精品免费观看不卡| 久久99国产精品久久99果冻传媒| 在线91免费看| 五月婷婷综合在线| 欧美日韩高清影院| 午夜精品久久久久久久 | 精品久久久久香蕉网| 亚洲成av人片在线| 欧美日韩免费视频| 天堂精品中文字幕在线| 欧美日韩免费观看一区三区| 亚洲国产精品自拍| 欧美顶级少妇做爰| 婷婷开心久久网| 日韩一区二区视频在线观看| 蜜臀久久久99精品久久久久久| 欧美美女网站色| 久久精品二区亚洲w码| 久久午夜羞羞影院免费观看| 国产一区二区影院| 国产精品久久久久永久免费观看 | 欧美一区中文字幕| 蜜臀av在线播放一区二区三区| 日韩久久精品一区| 国产成人精品aa毛片| 国产精品久久久久久妇女6080 | 欧美精品777| 激情久久久久久久久久久久久久久久| 精品电影一区二区| 不卡一区二区在线| 亚洲一区二区三区四区在线| 欧美剧情片在线观看| 国产麻豆精品久久一二三| 国产精品二区一区二区aⅴ污介绍| 91在线云播放| 奇米在线7777在线精品| 国产清纯在线一区二区www| 99麻豆久久久国产精品免费优播| 亚洲一区国产视频| 欧美成人午夜电影| aa级大片欧美| 老司机精品视频一区二区三区| 国产精品午夜免费| 欧美一二三四在线| aaa国产一区| 久久国产人妖系列| 亚洲一区二区视频在线观看| 欧美大尺度电影在线| 91日韩精品一区| 蜜臀精品一区二区三区在线观看| 国产精品日韩精品欧美在线| 51精品久久久久久久蜜臀| 国产v综合v亚洲欧| 婷婷一区二区三区| 亚洲另类春色国产| 国产亚洲精品超碰| 欧美一级理论性理论a| 99精品国产一区二区三区不卡| 蜜臀91精品一区二区三区| 亚洲一区二区中文在线| 国产精品天美传媒沈樵| 日韩精品中文字幕一区二区三区 | 成人av综合在线| 久久精品国产久精国产爱| 亚洲午夜精品一区二区三区他趣| 久久精品一区二区三区四区| 在线综合亚洲欧美在线视频| 色综合久久综合网97色综合| 国产精品一区二区x88av| 免费国产亚洲视频| 午夜影视日本亚洲欧洲精品| 亚洲美女视频一区| 中文字幕制服丝袜一区二区三区| 精品国产凹凸成av人网站| 91精品国产综合久久久久久| 欧美色国产精品| 91久久精品一区二区| av电影天堂一区二区在线观看| 国产精品亚洲第一区在线暖暖韩国 | 日本道在线观看一区二区| 不卡一区二区三区四区| 国产精品1区2区3区在线观看| 久久超碰97人人做人人爱| 日产欧产美韩系列久久99| 婷婷久久综合九色综合绿巨人| 午夜免费久久看| 日韩综合在线视频| 五月天一区二区| 日韩精彩视频在线观看| 天天色天天爱天天射综合| 香蕉久久一区二区不卡无毒影院 | 成人av电影在线播放| 成人伦理片在线| 91在线无精精品入口| 99国产精品久久久| 色噜噜狠狠色综合中国| 欧美午夜电影网| 制服丝袜在线91| 欧美tk丨vk视频| 国产精品入口麻豆原神| 亚洲欧美日韩系列| 亚洲国产精品一区二区www| 午夜成人免费视频| 精品一二三四区| 成人永久aaa| 91免费观看国产| 9191成人精品久久| 精品国产一区二区三区忘忧草| 久久一夜天堂av一区二区三区| 国产日产欧产精品推荐色| 17c精品麻豆一区二区免费| 夜色激情一区二区| 蜜臀av性久久久久蜜臀aⅴ四虎| 国产一区二区成人久久免费影院 | 久久久久久影视| 亚洲人成精品久久久久久| 亚洲一区av在线| 国内精品免费在线观看| 成人黄页在线观看| 欧美日韩国产大片| 久久精品人人做人人爽人人| 亚洲欧美aⅴ...| 免费观看在线色综合| 成人av在线播放网址| 欧美狂野另类xxxxoooo| 久久―日本道色综合久久| 一区二区三区在线视频免费| 日韩成人一级片| 色综合久久久久久久久久久| 5858s免费视频成人| 亚洲视频在线一区观看| 精品在线你懂的| 欧洲日韩一区二区三区| 国产亲近乱来精品视频| 欧美aⅴ一区二区三区视频| 91网站在线观看视频| 久久精品在这里|