Beispiel #1
0
 public PixVolume <T> CopyToImageLayout()
 {
     if (Tensor4.HasImageLayout())
     {
         return(new PixVolume <T>(Format, Tensor4.CopyToImage()));
     }
     return(new PixVolume <T>(this));
 }
Beispiel #2
0
 public static Tensor4 <T> CopyImage <T>(this Tensor4 <T> tensor4)
 {
     return(tensor4.CopyToImage());
 }