imggen

Capsim Block Documentation

Short Description

Generate a rectangular image.

Top
Output Connections
Port Type Name
0 image_t y
Top
Parameters
Num Description Type Name Default Value
0 Pixel Value float pixel 1.0
1 Image Width int pwidth 128
2 Image Height int pheight 128
3 Rectangle Width int rectWidth 128
4 Rectangle Height int rectHeight 128
5 Rectangle Width Offset int widthOffset 0
6 Rectangle Height Offset int heightOffset 0
7 Complex Flag int complexFlag 0
8 Complement Flag int complementFlag 0
Top
States
Num Type Name Initial Value Description
0 int generated 0
Top

Declarations


 

	int no_samples;
	int i,j,k;
	dsp_floatMatrix_t	matrix;
	dsp_floatMatrix_Pt	matrix_P;
	image_t		img;



Top

Initialization Code



 

		     SET_CELL_SIZE_OUT(0,sizeof(image_t));




Top

Main Code



 


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);




Top

Wrapup Code



 





Top

License



/*  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
*/


Top

Description



 

/* 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

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

*/