prbinimage

Capsim Block Documentation

Short Description

Inputs image and stores as binary to file.

Top
Parameters
Num Description Type Name Default Value
0 Name of output file file file_name output.img
1 Image Width int width 1
2 Image Height int height 1
Top
States
Num Type Name Initial Value Description
0 int fp
1 int ibufs
2 int obufs
3 int displayFlag 0
4 int numberColumnsPrinted 0
5 char* buff
Top

Declarations


 

	int i,j,k;
	unsigned short pixel;
	float	fpixel;



Top

Initialization Code



 

	if((ibufs = NO_INPUT_BUFFERS()) <= 0) {
		fprintf(stdout,"prbinimage: no input buffers\n");
		return(1);
	}
	if((obufs = NO_OUTPUT_BUFFERS()) > ibufs) {
		fprintf(stdout,"prbinimage: more output than input buffers\n");
		return(2);
	}
	if((fp = creat(file_name,PMODE)) == -1) {
		fprintf(stdout,"prbinimage: can't create output file '%s'\n",
			file_name);
		return(3);
	}
	fprintf(stderr,"prbinimage to produce %d x  %d image file\n",width,height);
        buff = (char *) calloc(width,sizeof(char));
        if(buff == NULL) {
                fprintf(stderr,"prbinimage: can't allocate space\n");
                return(4);
        }




Top

Main Code



 

        /* This mode synchronizes all input buffers */
        for(i = MIN_AVAIL(); i>0; i--) {
                for(j=0; j 255) pixel = 255;
			     else pixel = (unsigned short)fpixel;	
			buff[numberColumnsPrinted]= (char)pixel;
			numberColumnsPrinted++;
                	if(numberColumnsPrinted >= width) {
				write(fp,buff,width);
				numberColumnsPrinted = 0;
			}
                }
        }
	
	/* This mode empties all input buffers */
	for(j=0; j
    
Top

Wrapup Code



 

	free(buff);
	close(fp);




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



 

/**********************************************************************
			prbINIMAGE()
***********************************************************************

prbinimage


Inputs image and stores as binary to file.


Programmer:  Sasan Ardalan 

*/