#include "MagickCore/pixel-private.h"
#include "MagickCore/resource_.h"
#include "MagickCore/semaphore.h"
+#include "MagickCore/thread-private.h"
#include "MagickCore/utility.h"
\f
/*
% %
% %
% %
+% M a t r i x T o I m a g e %
+% %
+% %
+% %
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%
+% MatrixToImage() returns a matrix as an image.
+%
+% The format of the MatrixToImage method is:
+%
+% Image *MatrixToImage(const MatrixInfo *matrix_info,
+% ExceptionInfo *exception)
+%
+% A description of each parameter follows:
+%
+% o matrix_info: the matrix.
+%
+% o exception: return any errors or warnings in this structure.
+%
+*/
+MagickExport Image *MatrixToImage(const MatrixInfo *matrix_info,
+ ExceptionInfo *exception)
+{
+ return((Image *) NULL);
+}
+\f
+/*
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% %
+% %
+% %
% N u l l M a t r i x %
% %
% %
**AcquireMagickMatrix(const size_t,const size_t),
**RelinquishMagickMatrix(double **,const size_t);
+extern MagickExport Image
+ *MatrixToImage(const MatrixInfo *,ExceptionInfo *));
+
extern MagickExport MagickBooleanType
GetMatrixElement(const MatrixInfo *,const ssize_t,const ssize_t,void *),
NullMatrix(MatrixInfo *),