예제 #1
0
 /// <summary>
 /// Creates new instance of imageProcessor class
 /// </summary>
 /// <param name="ImagePath">The path of the image to be processed</param>
 public imageProcessor(string ImagePath)
 {
     this.originalImagePath = ImagePath;
     undoStack = new Stack <imageProcessorOperation>();
     redoStack = new Stack <imageProcessorOperation>();
     IMC       = new ImageManipulationclass();
 }
예제 #2
0
파일: frmSplash.cs 프로젝트: AjithaRaj/cbir
        private void frmSplash_Activated(object sender, EventArgs e)
        {
            this.Refresh();
            proBarLoad.Value = 60;
            lblStatus.Text   = "Features Extractor Module . . .";
            this.Refresh();
            FeatureExtractorclass FEC = new FeatureExtractorclass();

            proBarLoad.Value = 90;
            lblStatus.Text   = "Image Processing Tools . . .";
            this.Refresh();
            ImageManipulationclass IMC = new ImageManipulationclass();

            proBarLoad.Value = 100;
            frmMain mainScreen = new frmMain();

            mainScreen.Show();
            this.Hide();
        }