Axiom.Media.Image.Scale C# (CSharp) 메소드

Scale() 공개 정적인 메소드

Scale a 1D, 2D or 3D image volume.
This function can do pixel format conversion in the process. dst and src can point to the same PixelBox object without any problem
public static Scale ( PixelBox src, PixelBox dst ) : void
src PixelBox PixelBox containing the source pointer, dimensions and format
dst PixelBox PixelBox containing the destination pointer, dimensions and format
리턴 void
		public static void Scale( PixelBox src, PixelBox dst )
		{
			Scale( src, dst, ImageFilter.Bilinear );
		}

Same methods

Image::Scale ( PixelBox src, PixelBox scaled, ImageFilter filter ) : void