Exemplo n.º 1
0
 internal ImportThreadArgus(Queue picNameQueue, int step,
                            ShouldStop stopImport, IntArgDelegate stepDel, bool isGabor)
 {
     this.PicNameQueue = picNameQueue;
     this.Step         = step;
     this.StopImport   = stopImport;
     this.StepDel      = stepDel;
     this.isGabor      = isGabor;
 }
Exemplo n.º 2
0
 public ImportArgus(List <String> picNames, int step, int threadNum, ShouldStop stopImport,
                    IntArgDelegate befDel, IntArgDelegate stepDel, NoArgDelegate afterDel)
 {
     this.PicNames   = picNames;
     this.Step       = step;
     this.ThreadNum  = threadNum;
     this.StopImport = stopImport;
     this.BefDel     = befDel;
     this.StepDel    = stepDel;
     this.AfterDel   = afterDel;
 }