Beispiel #1
0
        private void backgroundWorker5_DoWork(object sender, DoWorkEventArgs e)
        {
            ProcessImg prc_im = (ProcessImg)e.Argument;

            prc_im.processImage(image, ref backgroundWorker5);
            if (backgroundWorker5.CancellationPending != true)
            {
                image = prc_im.get_image_LSB();
            }
        }
Beispiel #2
0
        private void backgroundWorker3_DoWork(object sender, DoWorkEventArgs e)
        {
            ProcessImg prc_im = (ProcessImg)e.Argument;

            prc_im.processImage(image, ref backgroundWorker3);
            if (backgroundWorker3.CancellationPending != true)
            {
                image_encoded_noised = prc_im.get_image_noised();
                image = image_encoded_noised;
            }
        }
Beispiel #3
0
        private void backgroundWorker6_DoWork(object sender, DoWorkEventArgs e)
        {
            ProcessImg prc_im = (ProcessImg)e.Argument;

            prc_im.processImage(image, image_original, backgroundWorker6);
            if (backgroundWorker6.CancellationPending != true)
            {
                diff_img = prc_im.get_image_diff();
                image    = diff_img;
            }
        }
Beispiel #4
0
        private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e)
        {
            ProcessImg prc_im = (ProcessImg)e.Argument;

            prc_im.processImage(image, ref backgroundWorker1, true);
            if (backgroundWorker1.CancellationPending != true)
            {
                image_r = prc_im.get_image_r();
                image_g = prc_im.get_image_g();
                image_b = prc_im.get_image_b();
            }
        }
Beispiel #5
0
        private void backgroundWorker4_DoWork(object sender, DoWorkEventArgs e)
        {
            ProcessImg prc_im = (ProcessImg)e.Argument;

            prc_im.processImage(image, ref backgroundWorker4, true);
        }