The interesting thing about this example is to see how to save an image into a bitmap file.
The SaveBMP function is Windows specific and is a standard example how to save a BMP. The developer calls this function and passes some parameters. The parameters are the filename, the pointer to the beginning of the image data, the image width and height, the pitch and the bits per pixel. Programmers working on other platforms might have to replace the system specific function calls by the appropriate calls specific on their platform.
int SaveBMP( const string& filename, const char* pData, int XSize, int YSize, int pitch, int bitsPerPixel )
{
static const WORD PALETTE_ENTRIES = 256;
if( pData )
{
FILE* pFile = mv_fopen_s( filename.c_str(), "wb" );
if( pFile )
{
BITMAPINFOHEADER bih;
BITMAPFILEHEADER bfh;
WORD linelen = static_cast<WORD>( ( XSize * bitsPerPixel + 31 ) / 32 * 4 );
int YPos;
int YStart = 0;
memset( &bfh, 0, sizeof( BITMAPFILEHEADER ) );
memset( &bih, 0, sizeof( BITMAPINFOHEADER ) );
bfh.bfType = 0x4d42;
bfh.bfSize = sizeof( bih ) + sizeof( bfh ) + sizeof( RGBQUAD ) * PALETTE_ENTRIES + static_cast<LONG>( linelen ) * static_cast<LONG>( YSize );
bfh.bfOffBits = sizeof( bih ) + sizeof( bfh ) + sizeof( RGBQUAD ) * PALETTE_ENTRIES;
bih.biSize = sizeof( bih );
bih.biWidth = XSize;
bih.biHeight = YSize;
bih.biPlanes = 1;
bih.biBitCount = static_cast<WORD>( bitsPerPixel );
bih.biSizeImage = static_cast<DWORD>( linelen ) * static_cast<DWORD>( YSize );
if( ( fwrite( &bfh, sizeof( bfh ), 1, pFile ) == 1 ) && ( fwrite( &bih, sizeof( bih ), 1, pFile ) == 1 ) )
{
RGBQUAD rgbQ;
for( int i = 0; i < PALETTE_ENTRIES; i++ )
{
rgbQ.rgbRed = static_cast<BYTE>( i );
rgbQ.rgbGreen = static_cast<BYTE>( i );
rgbQ.rgbBlue = static_cast<BYTE>( i );
rgbQ.rgbReserved = static_cast<BYTE>( 0 );
fwrite( &rgbQ, sizeof( rgbQ ), 1, pFile );
}
for( YPos = YStart + YSize - 1; YPos >= YStart; YPos-- )
{
if( fwrite( &pData[YPos * pitch], linelen, 1, pFile ) != 1 )
{
cout << "SaveBmp: ERR_WRITE_FILE: " << filename << endl;
}
}
}
else
{
cout << "SaveBmp: ERR_WRITE_FILE: " << filename << endl;
}
fclose( pFile );
}
else
{
cout << "SaveBmp: ERR_CREATE_FILE: " << filename << endl;
}
}
else
{
cout << "SaveBmp: ERR_DATA_INVALID:" << filename << endl;
}
return 0;
}
#ifdef _MSC_VER
# if _MSC_VER < 1300
# pragma warning( disable : 4786 )
# endif
#endif
#include <apps/Common/exampleHelper.h>
#include <common/crt/mvstdio.h>
#include <mvIMPACT_CPP/mvIMPACT_acquire.h>
#ifdef _WIN32
# include <mvDisplay/Include/mvIMPACT_acquire_display.h>
# define USE_DISPLAY
#endif
#include <iostream>
#include <string>
using namespace std;
#if !defined(WIN32) && !defined(_WIN32) && !defined(__WIN32__)
# include <stdint.h>
# include <stdio.h>
typedef uint8_t BYTE;
typedef uint16_t WORD;
typedef uint32_t DWORD;
typedef int32_t LONG;
typedef bool BOOLEAN;
# ifdef __GNUC__
# define BMP_ATTR_PACK __attribute__((packed)) __attribute__ ((aligned (2)))
# else
# define BMP_ATTR_PACK
# endif
typedef struct tagRGBQUAD
{
BYTE rgbBlue;
BYTE rgbGreen;
BYTE rgbRed;
BYTE rgbReserved;
} BMP_ATTR_PACK RGBQUAD;
typedef struct tagBITMAPINFOHEADER
{
DWORD biSize;
LONG biWidth;
LONG biHeight;
WORD biPlanes;
WORD biBitCount;
DWORD biCompression;
DWORD biSizeImage;
LONG biXPelsPerMeter;
LONG biYPelsPerMeter;
DWORD biClrUsed;
DWORD biClrImportant;
} BMP_ATTR_PACK BITMAPINFOHEADER, *PBITMAPINFOHEADER;
typedef struct tagBITMAPFILEHEADER
{
WORD bfType;
DWORD bfSize;
WORD bfReserved1;
WORD bfReserved2;
DWORD bfOffBits;
} BMP_ATTR_PACK BITMAPFILEHEADER, *PBITMAPFILEHEADER;
#endif
int SaveBMP( const string& filename, const char* pData, int XSize, int YSize, int pitch, int bitsPerPixel )
{
static const WORD PALETTE_ENTRIES = 256;
if( pData )
{
FILE* pFile = mv_fopen_s( filename.c_str(), "wb" );
if( pFile )
{
BITMAPINFOHEADER bih;
BITMAPFILEHEADER bfh;
WORD linelen = static_cast<WORD>( ( XSize * bitsPerPixel + 31 ) / 32 * 4 );
int YPos;
int YStart = 0;
memset( &bfh, 0, sizeof( BITMAPFILEHEADER ) );
memset( &bih, 0, sizeof( BITMAPINFOHEADER ) );
bfh.bfType = 0x4d42;
bfh.bfSize = sizeof( bih ) + sizeof( bfh ) + sizeof( RGBQUAD ) * PALETTE_ENTRIES + static_cast<LONG>( linelen ) * static_cast<LONG>( YSize );
bfh.bfOffBits = sizeof( bih ) + sizeof( bfh ) + sizeof( RGBQUAD ) * PALETTE_ENTRIES;
bih.biSize = sizeof( bih );
bih.biWidth = XSize;
bih.biHeight = YSize;
bih.biPlanes = 1;
bih.biBitCount = static_cast<WORD>( bitsPerPixel );
bih.biSizeImage = static_cast<DWORD>( linelen ) * static_cast<DWORD>( YSize );
if( ( fwrite( &bfh, sizeof( bfh ), 1, pFile ) == 1 ) && ( fwrite( &bih, sizeof( bih ), 1, pFile ) == 1 ) )
{
RGBQUAD rgbQ;
for( int i = 0; i < PALETTE_ENTRIES; i++ )
{
rgbQ.rgbRed = static_cast<BYTE>( i );
rgbQ.rgbGreen = static_cast<BYTE>( i );
rgbQ.rgbBlue = static_cast<BYTE>( i );
rgbQ.rgbReserved = static_cast<BYTE>( 0 );
fwrite( &rgbQ, sizeof( rgbQ ), 1, pFile );
}
for( YPos = YStart + YSize - 1; YPos >= YStart; YPos-- )
{
if( fwrite( &pData[YPos * pitch], linelen, 1, pFile ) != 1 )
{
cout << "SaveBmp: ERR_WRITE_FILE: " << filename << endl;
}
}
}
else
{
cout << "SaveBmp: ERR_WRITE_FILE: " << filename << endl;
}
fclose( pFile );
}
else
{
cout << "SaveBmp: ERR_CREATE_FILE: " << filename << endl;
}
}
else
{
cout << "SaveBmp: ERR_DATA_INVALID:" << filename << endl;
}
return 0;
}
int main( void )
{
Device* pDev = getDeviceFromUserInput( devMgr );
if( !pDev )
{
cout << "Unable to continue! Press [ENTER] to end the application" << endl;
cin.get();
return 1;
}
try
{
}
{
cout <<
"An error occurred while opening the device " << pDev->
serial.
read() <<
" (error code: " << e.
getErrorCode() <<
"). Press any key to end the application..." << endl;
cout << "Press [ENTER] to end the application" << endl;
cin.get();
return 1;
}
cout <<
"The device " << pDev->
serial.
read() <<
" has been opened." << endl;
fi.imageRequestSingle();
manuallyStartAcquisitionIfNeeded( pDev, fi );
const int iMaxWaitTime_ms = 500;
int requestNr = fi.imageRequestWaitFor( iMaxWaitTime_ms );
if( !fi.isRequestNrValid( requestNr ) )
{
cout << "imageRequestWaitFor failed maybe the timeout value has been too small?" << endl;
return 1;
}
const Request* pRequest = fi.getRequest( requestNr );
{
return 1;
}
#ifdef USE_DISPLAY
displayWindow.GetImageDisplay().SetImage( pRequest );
displayWindow.GetImageDisplay().Update();
#endif
const string filename( "single.bmp" );
cout << "Storing the image as \"" << filename << "\"" << endl;
fi.imageRequestUnlock( requestNr );
cout << "Press [ENTER] to end the application" << endl;
cin.get();
return 0;
}
Grants access to devices that can be operated by this software interface.
Definition: mvIMPACT_acquire.h:6990
This class and its functions represent an actual device detected by this interface in the current sys...
Definition: mvIMPACT_acquire.h:5951
PropertyS serial
A string property (read-only) containing the serial number of this device.
Definition: mvIMPACT_acquire.h:6383
void open(void)
Opens a device.
Definition: mvIMPACT_acquire.h:6252
ZYX read(int index=0) const
Reads a value from a property.
Definition: mvIMPACT_acquire.h:4173
The function interface to devices supported by this interface.
Definition: mvIMPACT_acquire.h:10473
A base class for exceptions generated by Impact Acquire.
Definition: mvIMPACT_acquire.h:251
int getErrorCode(void) const
Returns a unique numerical representation for this error.
Definition: mvIMPACT_acquire.h:270
void * read(int index=0) const
Reads a value from a property.
Definition: mvIMPACT_acquire.h:5015
std::string read(int index=0) const
Reads a value from a property.
Definition: mvIMPACT_acquire.h:5162
std::string readS(int index=0, const std::string &format="") const
Reads data from this property as a string.
Definition: mvIMPACT_acquire.h:3216
Contains information about a captured buffer.
Definition: mvIMPACT_acquire.h:8449
PropertyI imagePixelPitch
An integer property (read-only) containing the offset (in bytes) to the next pixel of the specified c...
Definition: mvIMPACT_acquire.h:9944
PropertyI imageHeight
An integer property (read-only) containing the height of the image in pixels.
Definition: mvIMPACT_acquire.h:10050
bool isOK(void) const
Convenience function to check if a request has been processed successfully.
Definition: mvIMPACT_acquire.h:9224
PropertyIRequestResult requestResult
An enumerated integer property (read-only) defining the result of this request.
Definition: mvIMPACT_acquire.h:9530
PropertyI imageWidth
An integer property (read-only) containing the width of the image in pixels.
Definition: mvIMPACT_acquire.h:10039
PropertyPtr imageData
A pointer property (read-only) containing the start address of the image data.
Definition: mvIMPACT_acquire.h:9908
PropertyI imageLinePitch
An integer property (read-only) containing the offset (in bytes) to the next line of each channel bel...
Definition: mvIMPACT_acquire.h:9981
A class that can be used to display images in a window.
Definition: mvIMPACT_acquire_display.h:585
This namespace contains classes and functions that can be used to display images.
This namespace contains classes and functions belonging to the image acquisition module of this SDK.
Definition: mvCommonDataTypes.h:30