Capsim Block Documentation
Input an image and filter it. The filter kernel is specified. It must be an ASCII file as follows:
| Port | Type | Name | |
|---|---|---|---|
| 0 | image_t | x |
| Port | Type | Name | |
|---|---|---|---|
| 0 | image_t | y |
| Num | Description | Type | Name | Default Value | |
|---|---|---|---|---|---|
| 0 | Filter Kernel | file | filterKernel | filt.krn | |
| 1 | 1=free input image, 0= don't | int | freeImageFlag | 0 |
| Num | Type | Name | Initial Value | Description |
|---|---|---|---|---|
| 0 | image_t | img | ||
| 1 | dsp_floatMatrix_Pt | filter_P |
int no_samples; int i,j,k; dsp_floatMatrix_Pt filtered_P; dsp_floatMatrix_t matrix; |
|---|
filter_P=Dsp_ReadAsciiMatrix(filterKernel);
if(filter_P==NULL) {
fprintf(stderr,"imgfilter: could not read filter kernel:%s\n",
filterKernel);
return(1);
}
SET_CELL_SIZE_IN(0,sizeof(image_t));
SET_CELL_SIZE_OUT(0,sizeof(image_t));
|
|---|
/*
* collect the image
*/
for (no_samples = MIN_AVAIL(); no_samples > 0; --no_samples) {
/*
* input an image
*/
IT_IN(0);
img=x(0);
matrix.height=img.height;
matrix.width=img.width;
matrix.matrix_PP=img.image_PP;
filtered_P=Dsp_ConvolveMatrices(&matrix,filter_P);
if(filtered_P==NULL) {
fprintf(stderr,"imgfilter: could not filter \n");
return(2);
}
/*
* Send image out
*/
if(freeImageFlag) {
for(i=0; i
|
|---|
/* Capsim (r) Text Mode Kernel (TMK) Star Library (Blocks)
Copyright (C) 1989-2002 XCAD Corporation
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
http://capsimtmk.sourceforge.net
XCAD Corporation
Raleigh, North Carolina */
|
|---|
/* imgfilter.s */
/***********************************************************************
imgfilter()
************************************************************************
Input an image and filter it.
The filter kernel is specified. It must be an ASCII file as follows:
numberOfColumns numberOfRows
a00 a01 a02
a10 a11 a12
a20 a21 a22
The above example is an 3x3 kernel
|
|---|