Axiom.Media.Image.Scale C# (CSharp) Method

Scale() public static method

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
return 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