亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
国产成人一区在线| 一区二区三区在线观看视频| 毛片av中文字幕一区二区| 欧美浪妇xxxx高跟鞋交| 三级亚洲高清视频| 5858s免费视频成人| 日韩中文字幕区一区有砖一区| 欧美日韩一本到| 免费黄网站欧美| 国产欧美日韩一区二区三区在线观看| 韩国成人福利片在线播放| 欧美激情一区在线| 成人a区在线观看| 亚洲高清不卡在线观看| 日韩欧美国产一区二区三区| 国产盗摄视频一区二区三区| 亚洲美女视频在线| 日韩欧美一级片| 成人精品小蝌蚪| 亚洲国产综合在线| 国产日产亚洲精品系列| 在线观看91视频| 国产一区二区三区最好精华液| 中文字幕一区免费在线观看| 欧美日韩在线播放三区四区| 激情综合五月婷婷| 亚洲婷婷综合久久一本伊一区| 欧美日韩国产成人在线91| 国产成人激情av| 亚洲成人第一页| 国产亚洲欧美一级| 精品视频123区在线观看| 制服.丝袜.亚洲.中文.综合 | 欧美国产欧美综合| 97精品久久久久中文字幕| 日本免费新一区视频| 国产精品视频观看| 欧美一区二区三区视频免费播放| 成人黄色国产精品网站大全在线免费观看 | 激情五月激情综合网| 亚洲天天做日日做天天谢日日欢| 欧美一区二区成人| 97aⅴ精品视频一二三区| 国产一区二区成人久久免费影院| 一区二区不卡在线视频 午夜欧美不卡在| 欧美电影精品一区二区| 欧美揉bbbbb揉bbbbb| 成人av网站在线观看免费| 免费的国产精品| 亚洲成人三级小说| 亚洲免费视频成人| 中文字幕 久热精品 视频在线| 日韩一区二区三区免费观看| 91精彩视频在线观看| 成人午夜看片网址| 国产综合一区二区| 美女精品一区二区| 天堂久久一区二区三区| 亚洲综合免费观看高清完整版在线| 久久色视频免费观看| 91精品国产欧美一区二区| 欧美性大战xxxxx久久久| 日韩免费看的电影| 在线播放国产精品二区一二区四区| 97久久精品人人澡人人爽| 国产成人欧美日韩在线电影| 久久不见久久见免费视频1| 午夜视频一区二区| 亚洲在线成人精品| 亚洲伊人伊色伊影伊综合网| 亚洲激情网站免费观看| 亚洲人午夜精品天堂一二香蕉| 国产欧美日韩视频在线观看| 久久尤物电影视频在线观看| 精品区一区二区| 精品国产一区二区在线观看| 精品日韩一区二区| 26uuu国产电影一区二区| 精品91自产拍在线观看一区| 精品国产一区二区三区四区四 | 欧美成人官网二区| 久久免费精品国产久精品久久久久 | 日韩视频免费直播| 欧美成人a视频| 26uuu亚洲综合色| 亚洲国产精品av| 日韩理论片中文av| 婷婷开心激情综合| 男女男精品网站| 国产成人综合自拍| www.成人在线| 欧洲国内综合视频| 在线不卡免费av| 久久九九久久九九| 亚洲婷婷在线视频| 亚洲va欧美va人人爽| 精品亚洲国产成人av制服丝袜| 国产精品伊人色| 波多野结衣中文字幕一区二区三区| 91在线小视频| 欧美人成免费网站| 久久综合狠狠综合久久激情| 日本一二三四高清不卡| 一区二区三区美女视频| 日日夜夜精品视频免费| 黄网站免费久久| 99精品久久只有精品| 欧美日韩一级二级| 久久亚洲春色中文字幕久久久| 中文字幕一区二区三区在线观看| 99久久精品99国产精品| 色一区在线观看| 91精品国产福利在线观看| 久久久久久久精| 亚洲图片欧美视频| 国产成人亚洲精品狼色在线| 91黄色在线观看| 精品国产乱码久久久久久老虎| 国产精品久久毛片av大全日韩| 亚洲成人精品影院| 国产一区二区三区最好精华液| 在线视频欧美精品| 国产日韩精品一区| 丝袜脚交一区二区| av午夜一区麻豆| 欧美一级电影网站| 中文字幕一区av| 国产一区高清在线| 在线亚洲+欧美+日本专区| 久久久噜噜噜久久人人看| 亚洲国产你懂的| 99久久精品免费精品国产| 精品久久久久久最新网址| 亚洲综合清纯丝袜自拍| 成人视屏免费看| 日韩精品中文字幕在线一区| 一区二区三区免费| 成人av网站免费观看| 久久夜色精品一区| 三级亚洲高清视频| 欧美午夜在线一二页| 亚洲女人的天堂| 丰满岳乱妇一区二区三区| www国产精品av| 美日韩一级片在线观看| 日本精品一级二级| 亚洲天堂中文字幕| 不卡电影免费在线播放一区| 国产午夜亚洲精品羞羞网站| 美女视频网站黄色亚洲| 欧美顶级少妇做爰| 亚洲成av人影院在线观看网| 色视频一区二区| 亚洲日本在线看| 91性感美女视频| 日韩一区在线播放| 不卡一区二区中文字幕| 欧美国产一区二区在线观看| 国产一区二区0| 亚洲精品一区二区三区99| 蜜桃av一区二区| 精品va天堂亚洲国产| 国产乱理伦片在线观看夜一区| 欧美mv日韩mv国产| 国产最新精品免费| 欧美国产欧美综合| av不卡一区二区三区| 亚洲欧洲日韩女同| 91一区二区在线观看| 亚洲精品网站在线观看| 色综合久久久久久久久| 亚洲日本在线看| 欧美伊人久久久久久久久影院| 一区二区三区四区五区视频在线观看| 91老师片黄在线观看| 亚洲最新视频在线观看| 欧美日韩综合色| 奇米一区二区三区| www激情久久| jlzzjlzz欧美大全| 亚洲一本大道在线| 777久久久精品| 欧美精品一二三| 日本大胆欧美人术艺术动态| 欧美成人性战久久| 成人av在线网| 一区二区三区精品在线| 欧美日韩不卡在线| 精品无人码麻豆乱码1区2区| 国产蜜臀av在线一区二区三区| a在线欧美一区| 亚洲电影视频在线| 日韩视频国产视频| av在线不卡免费看| 三级影片在线观看欧美日韩一区二区| 26uuu国产一区二区三区| 91蜜桃网址入口| 日本美女视频一区二区| 国产精品入口麻豆原神| 欧美日韩久久久一区|