/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* FUNCTION
* mlib_ImageConvMxN - image convolution with edge condition
*
* SYNOPSIS
* mlib_status mlib_ImageConvMxN(mlib_image *dst,
* const mlib_image *src,
* const mlib_s32 *kernel,
* mlib_s32 m,
* mlib_s32 n,
* mlib_s32 dm,
* mlib_s32 dn,
* mlib_s32 scale,
* mlib_s32 cmask,
* mlib_edge edge)
*
* ARGUMENTS
* dst Pointer to destination image.
* src Pointer to source image.
* m Kernel width (m must be not less than 1).
* n Kernel height (n must be not less than 1).
* dm, dn Position of key element in convolution kernel.
* kernel Pointer to convolution kernel.
* scale The scaling factor to convert the input integer
* coefficients into floating-point coefficients:
* floating-point coefficient = integer coefficient * 2^(-scale)
* cmask Channel mask to indicate the channels to be convolved.
* Each bit of which represents a channel in the image. The
* channels corresponded to 1 bits are those to be processed.
* edge Type of edge condition.
*
* DESCRIPTION
* 2-D convolution, MxN kernel.
*
* The center of the source image is mapped to the center of the
* destination image.
* The unselected channels are not overwritten. If both src and dst have
* just one channel, cmask is ignored.
*
* The edge condition can be one of the following:
* MLIB_EDGE_DST_NO_WRITE (default)
* MLIB_EDGE_DST_FILL_ZERO
* MLIB_EDGE_DST_COPY_SRC
* MLIB_EDGE_SRC_EXTEND
*
* RESTRICTION
* The src and the dst must be the same type and have same number
* of channels (1, 2, 3, or 4). They can be in MLIB_BIT, MLIB_BYTE,
* MLIB_SHORT, MLIB_USHORT or MLIB_INT data type.
* m >= 1, n >= 1,
* 0 <= dm < m, 0 <= dn < n.
* For data type MLIB_BYTE: 16 <= scale <= 31 (to be compatible with VIS version)
* For data type MLIB_SHORT: 17 <= scale <= 32 (to be compatible with VIS version)
* For data type MLIB_USHORT: 17 <= scale <= 32 (to be compatible with VIS version)
* For data type MLIB_INT: scale >= 0
*/
#include "mlib_image.h"
#include "mlib_ImageCheck.h"
#include "mlib_ImageConv.h"
#include "mlib_ImageCreate.h"
#include "mlib_c_ImageConv.h"
#include "mlib_ImageClipping.h"
#include "mlib_ImageConvEdge.h"
/***************************************************************/
const mlib_image *src,
mlib_s32 m,
mlib_s32 n,
{
switch (mlib_ImageGetType(dst)) {
case MLIB_BYTE:
return MLIB_FAILURE;
break;
case MLIB_SHORT:
case MLIB_USHORT:
return MLIB_FAILURE;
break;
case MLIB_INT:
if (scale < 0)
return MLIB_FAILURE;
break;
default:
return MLIB_FAILURE;
}
}
/***************************************************************/
const mlib_image *src,
const void *kernel,
mlib_s32 m,
mlib_s32 n,
{
return MLIB_FAILURE;
return MLIB_NULLPOINTER;
ret =
if (ret != MLIB_SUCCESS)
return ret;
if (nchan == 1)
cmask = 1;
return MLIB_SUCCESS;
if (edge != MLIB_EDGE_SRC_EXTEND) {
switch (type) {
case MLIB_BYTE:
break;
case MLIB_SHORT:
#ifdef __sparc
#else
else
#endif /* __sparc */
break;
case MLIB_USHORT:
#ifdef __sparc
#else
else
#endif /* __sparc */
break;
case MLIB_INT:
break;
case MLIB_FLOAT:
break;
case MLIB_DOUBLE:
break;
default:
/* For some reasons, there is no convolution routine for type MLIB_BIT.
* For now, we silently ignore it (because this image type is not used by java),
* but probably we have to report an error.
*/
break;
}
}
switch (edge) {
case MLIB_EDGE_DST_FILL_ZERO:
break;
case MLIB_EDGE_DST_COPY_SRC:
break;
default:
/* Other edge conditions do not need additional handling.
* Note also that they are not exposed in public Java API
*/
break;
}
}
else { /* MLIB_EDGE_SRC_EXTEND */
/* adjust src_e image */
switch (type) {
case MLIB_BYTE:
ret =
cmask);
break;
case MLIB_SHORT:
#ifdef __sparc
ret =
cmask);
#else
ret =
cmask);
else
ret =
#endif /* __sparc */
break;
case MLIB_USHORT:
#ifdef __sparc
ret =
cmask);
#else
ret =
cmask);
else
ret =
#endif /* __sparc */
break;
case MLIB_INT:
ret =
cmask);
break;
case MLIB_FLOAT:
break;
case MLIB_DOUBLE:
break;
default:
/* For some reasons, there is no convolution routine for type MLIB_BIT.
* For now, we silently ignore it (because this image type is not used by java),
* but probably we have to report an error.
*/
break;
}
}
return ret;
}
/***************************************************************/