Ejemplo n.º 1
0
 public void BFFTShift(BGRModel Type)
 {
     if ((Type & BGRModel.R) == BGRModel.R)
     {
         ImgF.BFFTShift(_R);
     }
     if ((Type & BGRModel.G) == BGRModel.G)
     {
         ImgF.BFFTShift(_G);
     }
     if ((Type & BGRModel.B) == BGRModel.B)
     {
         ImgF.BFFTShift(_B);
     }
 }
Ejemplo n.º 2
0
 public void BFFTShift(HSIModel Type)
 {
     if ((Type & HSIModel.H) == HSIModel.H)
     {
         ImgF.BFFTShift(_H);
     }
     if ((Type & HSIModel.S) == HSIModel.S)
     {
         ImgF.BFFTShift(_S);
     }
     if ((Type & HSIModel.I) == HSIModel.I)
     {
         ImgF.BFFTShift(_I);
     }
 }