Capsim Block Documentation
Generate a rectangular image.
Port | Type | Name | |
---|---|---|---|
0 | image_t | y |
Num | Type | Name | Initial Value | Description |
---|---|---|---|---|
0 | int | generated | 0 |
int no_samples; int i,j,k; dsp_floatMatrix_t matrix; dsp_floatMatrix_Pt matrix_P; image_t img; |
---|
SET_CELL_SIZE_OUT(0,sizeof(image_t)); |
---|
while(!generated) { generated=1; matrix_P = Dsp_GenMatrix(pwidth,pheight,rectWidth,rectHeight, widthOffset,heightOffset, pixel,complexFlag,complementFlag); if(matrix_P==NULL) { fprintf(stderr,"imggen: could not generate image \n"); return(1); } /* * Send image out */ img.width=matrix_P->width; img.height=matrix_P->height; img.image_PP=matrix_P->matrix_PP; if(IT_OUT(0)) { KrnOverflow("imggen",0); return(99); } y(0) = img; } return(0); |
---|
/* Capsim (r) Text Mode Kernel (TMK) Star Library (Blocks) Copyright (C) 1989-2017 Silicon DSP 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://www.silicondsp.com Silicon DSP Corporation Las Vegas, Nevada */ |
---|
/* imggen.s */ /*********************************************************************** imggen() ************************************************************************ Generate a rectangular image. The image contains a rectangle offset in width and height with specified rectangle width and height. The image may be complemented in the sense that the value will fill all the image except the rectangle. For now only one image is generated. However, this can be easily changed so that a sequence is generated. Programmer: Sasan Ardalan Date: September 10, 1993 |
---|