forked from trainman419/fiducials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFlyCapture2Test.c
258 lines (219 loc) · 7.1 KB
/
FlyCapture2Test.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
//=============================================================================
// Copyright © 2008 Point Grey Research, Inc. All Rights Reserved.
//
// This software is the confidential and proprietary information of Point
// Grey Research, Inc. ("Confidential Information"). You shall not
// disclose such Confidential Information and shall use it only in
// accordance with the terms of the license agreement you entered into
// with PGR.
//
// PGR MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
// SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
// IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
// PURPOSE, OR NON-INFRINGEMENT. PGR SHALL NOT BE LIABLE FOR ANY DAMAGES
// SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
// THIS SOFTWARE OR ITS DERIVATIVES.
//=============================================================================
//=============================================================================
// $Id: FlyCapture2Test_C.c,v 1.29 2010/04/13 21:35:02 hirokim Exp $
//=============================================================================
#if defined(WIN32) || defined(WIN64)
#define _CRT_SECURE_NO_WARNINGS
#endif
#include "C/FlyCapture2_C.h"
#include <stdio.h>
void PrintBuildInfo()
{
fc2Version version;
char versionStr[512];
char timeStamp[512];
fc2GetLibraryVersion( &version );
sprintf(
versionStr,
"FlyCapture2 library version: %d.%d.%d.%d\n",
version.major, version.minor, version.type, version.build );
printf( "%s", versionStr );
sprintf( timeStamp, "Application build date: %s %s\n\n", __DATE__, __TIME__ );
printf( "%s", timeStamp );
}
void PrintCameraInfo( fc2Context context )
{
fc2Error error;
fc2CameraInfo camInfo;
error = fc2GetCameraInfo( context, &camInfo );
if ( error != FC2_ERROR_OK )
{
// Error
}
printf(
"\n*** CAMERA INFORMATION ***\n"
"Serial number - %u\n"
"Camera model - %s\n"
"Camera vendor - %s\n"
"Sensor - %s\n"
"Resolution - %s\n"
"Firmware version - %s\n"
"Firmware build time - %s\n\n",
camInfo.serialNumber,
camInfo.modelName,
camInfo.vendorName,
camInfo.sensorInfo,
camInfo.sensorResolution,
camInfo.firmwareVersion,
camInfo.firmwareBuildTime );
}
void SetTimeStamping( fc2Context context, BOOL enableTimeStamp )
{
fc2Error error;
fc2EmbeddedImageInfo embeddedInfo;
error = fc2GetEmbeddedImageInfo( context, &embeddedInfo );
if ( error != FC2_ERROR_OK )
{
printf( "Error in fc2GetEmbeddedImageInfo: %d\n", error );
}
if ( embeddedInfo.timestamp.available != 0 )
{
embeddedInfo.timestamp.onOff = enableTimeStamp;
}
error = fc2SetEmbeddedImageInfo( context, &embeddedInfo );
if ( error != FC2_ERROR_OK )
{
printf( "Error in fc2SetEmbeddedImageInfo: %d\n", error );
}
}
void GrabImages( fc2Context context, int numImagesToGrab )
{
fc2Error error;
fc2Image rawImage;
fc2Image convertedImage;
fc2TimeStamp prevTimestamp = {0};
int i;
error = fc2CreateImage( &rawImage );
if ( error != FC2_ERROR_OK )
{
printf( "Error in fc2CreateImage: %d\n", error );
}
error = fc2CreateImage( &convertedImage );
if ( error != FC2_ERROR_OK )
{
printf( "Error in fc2CreateImage: %d\n", error );
}
// If externally allocated memory is to be used for the converted image,
// simply assigning the pData member of the fc2Image structure is
// insufficient. fc2SetImageData() should be called in order to populate
// the fc2Image structure correctly. This can be done at this point,
// assuming that the memory has already been allocated.
for ( i=0; i < numImagesToGrab; i++ )
{
// Retrieve the image
error = fc2RetrieveBuffer( context, &rawImage );
if ( error != FC2_ERROR_OK )
{
printf( "Error in retrieveBuffer: %d\n", error);
}
else
{
// Get and print out the time stamp
fc2TimeStamp ts = fc2GetImageTimeStamp( &rawImage);
int diff = (ts.cycleSeconds - prevTimestamp.cycleSeconds) * 8000
+ (ts.cycleCount - prevTimestamp.cycleCount);
prevTimestamp = ts;
printf(
"timestamp [%d %d] - %d\n",
ts.cycleSeconds,
ts.cycleCount,
diff );
}
}
if ( error == FC2_ERROR_OK )
{
// Convert the final image to RGB
error = fc2ConvertImageTo(FC2_PIXEL_FORMAT_BGR, &rawImage, &convertedImage);
if ( error != FC2_ERROR_OK )
{
printf( "Error in fc2ConvertImageTo: %d\n", error );
}
// Save it to PNG
printf("Saving the last image to fc2TestImage.png \n");
error = fc2SaveImage( &convertedImage, "fc2TestImage.png", FC2_PNG );
if ( error != FC2_ERROR_OK )
{
printf( "Error in fc2SaveImage: %d\n", error );
printf( "Please check write permissions.\n");
}
}
error = fc2DestroyImage( &rawImage );
if ( error != FC2_ERROR_OK )
{
printf( "Error in fc2DestroyImage: %d\n", error );
}
error = fc2DestroyImage( &convertedImage );
if ( error != FC2_ERROR_OK )
{
printf( "Error in fc2DestroyImage: %d\n", error );
}
}
int main(int argc, char** argv)
{
fc2Error error;
fc2Context context;
fc2PGRGuid guid;
unsigned int numCameras = 0;
const int k_numImages = 100;
PrintBuildInfo();
error = fc2CreateContext( &context );
if ( error != FC2_ERROR_OK )
{
printf( "Error in fc2CreateContext: %d\n", error );
return 0;
}
error = fc2GetNumOfCameras( context, &numCameras );
if ( error != FC2_ERROR_OK )
{
printf( "Error in fc2GetNumOfCameras: %d\n", error );
return 0;
}
if ( numCameras == 0 )
{
// No cameras detected
printf( "No cameras detected.\n");
return 0;
}
// Get the 0th camera
error = fc2GetCameraFromIndex( context, 0, &guid );
if ( error != FC2_ERROR_OK )
{
printf( "Error in fc2GetCameraFromIndex: %d\n", error );
return 0;
}
error = fc2Connect( context, &guid );
if ( error != FC2_ERROR_OK )
{
printf( "Error in fc2Connect: %d\n", error );
return 0;
}
PrintCameraInfo( context );
SetTimeStamping( context, TRUE );
error = fc2StartCapture( context );
if ( error != FC2_ERROR_OK )
{
printf( "Error in fc2StartCapture: %d\n", error );
return 0;
}
GrabImages( context, k_numImages );
error = fc2StopCapture( context );
if ( error != FC2_ERROR_OK )
{
printf( "Error in fc2StopCapture: %d\n", error );
return 0;
}
error = fc2DestroyContext( context );
if ( error != FC2_ERROR_OK )
{
printf( "Error in fc2DestroyContext: %d\n", error );
return 0;
}
printf( "Done! Press Enter to exit...\n" );
getchar();
return 0;
}