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
|
/**************************************************************************
** Title: grab partial images from camera, measure frame rate
** $RCSfile: grab_partial_image.c,v $
** $Revision: 1.2 $$Name: $
** $Date: 2001/09/14 08:20:43 $
** Copyright: LGPL $Author: ronneber $
** Description:
**
** Grab partial image from camera. Camera must be format 7
** (scalable image size) compatible. e.g., Basler A101f
**
**-------------------------------------------------------------------------
**
** $Log: grab_partial_image.c,v $
** Revision 1.2 2001/09/14 08:20:43 ronneber
** - adapted to new dc1394_setup_format7_capture()
** - using times() instead of time() for more precise frame rate measurement
**
** Revision 1.1 2001/07/24 13:50:59 ronneber
** - simple test programs to demonstrate the use of libdc1394 (based
** on 'samplegrab' of Chris Urmson
**
**
**************************************************************************/
#include <stdio.h>
#include <libraw1394/raw1394.h>
#include <libdc1394/dc1394_control.h>
#include <stdlib.h>
#include <time.h>
#include <sys/times.h>
int main(int argc, char *argv[])
{
FILE* imagefile;
dc1394_cameracapture camera;
int numNodes;
int numCameras;
raw1394handle_t handle;
nodeid_t * camera_nodes;
int grab_n_frames = 100;
struct tms tms_buf;
clock_t start_time;
float elapsed_time;
int i;
unsigned int min_bytes, max_bytes;
unsigned int actual_bytes;
unsigned int total_bytes = 0;
/*-----------------------------------------------------------------------
* Open ohci and asign handle to it
*-----------------------------------------------------------------------*/
handle = dc1394_create_handle(0);
if (handle==NULL)
{
fprintf( stderr, "Unable to aquire a raw1394 handle\n"
"did you insmod the drivers?\n");
exit(1);
}
/*-----------------------------------------------------------------------
* get the camera nodes and describe them as we find them
*-----------------------------------------------------------------------*/
numNodes = raw1394_get_nodecount(handle);
camera_nodes = dc1394_get_camera_nodes(handle,&numCameras,1);
fflush(stdout);
if (numCameras<1)
{
fprintf( stderr, "no cameras found :(\n");
raw1394_destroy_handle(handle);
exit(1);
}
printf("working with the first camera on the bus\n");
/*-----------------------------------------------------------------------
* to prevent the iso-transfer bug from raw1394 system, check if
* camera is highest node. For details see
* http://linux1394.sourceforge.net/faq.html#DCbusmgmt
* and
* http://sourceforge.net/tracker/index.php?func=detail&aid=435107&group_id=8157&atid=108157
*-----------------------------------------------------------------------*/
if( camera_nodes[0] == numNodes-1)
{
fprintf( stderr, "\n"
"Sorry, your camera is the highest numbered node\n"
"of the bus, and has therefore become the root node.\n"
"The root node is responsible for maintaining \n"
"the timing of isochronous transactions on the IEEE \n"
"1394 bus. However, if the root node is not cycle master \n"
"capable (it doesn't have to be), then isochronous \n"
"transactions will not work. The host controller card is \n"
"cycle master capable, however, most cameras are not.\n"
"\n"
"The quick solution is to add the parameter \n"
"attempt_root=1 when loading the OHCI driver as a \n"
"module. So please do (as root):\n"
"\n"
" rmmod ohci1394\n"
" insmod ohci1394 attempt_root=1\n"
"\n"
"for more information see the FAQ at \n"
"http://linux1394.sourceforge.net/faq.html#DCbusmgmt\n"
"\n");
exit( 1);
}
/*-----------------------------------------------------------------------
* setup capture for format 7
*-----------------------------------------------------------------------*/
if( dc1394_setup_format7_capture(handle,camera_nodes[0],
0, /* channel */
MODE_FORMAT7_0,
SPEED_400,
USE_MAX_AVAIL, /* use max packet size */
10, 20, /* left, top */
200, 100, /* width, height */
&camera) != DC1394_SUCCESS)
{
fprintf( stderr,"unable to setup camera in format 7 mode 0-\n"
"check line %d of %s to make sure\n"
"that the video mode,framerate and format are\n"
"supported by your camera\n",
__LINE__,__FILE__);
raw1394_destroy_handle(handle);
exit(1);
}
/* set trigger mode */
if( dc1394_set_trigger_mode(handle, camera.node, TRIGGER_MODE_0)
!= DC1394_SUCCESS)
{
fprintf( stderr, "unable to set camera trigger mode\n");
dc1394_release_camera(handle,&camera);
raw1394_destroy_handle(handle);
exit(1);
}
/*-----------------------------------------------------------------------
* print allowed and used packet size
*-----------------------------------------------------------------------*/
if (dc1394_query_format7_packet_para(handle, camera_nodes[0], MODE_FORMAT7_0, &min_bytes, &max_bytes) != DC1394_SUCCESS) /* PACKET_PARA_INQ */
{
printf("Packet para inq error\n");
return DC1394_FAILURE;
}
printf( "camera reports allowed packet size from %d - %d bytes\n",
min_bytes, max_bytes);
if (dc1394_query_format7_byte_per_packet(handle, camera_nodes[0], MODE_FORMAT7_0, &actual_bytes) != DC1394_SUCCESS)
{
printf("dc1394_query_format7_byte_per_packet error\n");
return DC1394_FAILURE;
}
printf( "camera reports actual packet size = %d bytes\n",
actual_bytes);
if (dc1394_query_format7_total_bytes(handle, camera_nodes[0], MODE_FORMAT7_0, &total_bytes) != DC1394_SUCCESS)
{
printf("dc1394_query_format7_total_bytes error\n");
return DC1394_FAILURE;
}
printf( "camera reports total bytes per frame = %d bytes\n",
total_bytes);
/*-----------------------------------------------------------------------
* have the camera start sending us data
*-----------------------------------------------------------------------*/
if (dc1394_start_iso_transmission(handle,camera.node)
!=DC1394_SUCCESS)
{
fprintf( stderr, "unable to start camera iso transmission\n");
dc1394_release_camera(handle,&camera);
raw1394_destroy_handle(handle);
exit(1);
}
/*-----------------------------------------------------------------------
* capture 1000 frames and measure the time for this operation
*-----------------------------------------------------------------------*/
start_time = times(&tms_buf);
for( i = 0; i < grab_n_frames; ++i)
{
/*-----------------------------------------------------------------------
* capture one frame
*-----------------------------------------------------------------------*/
if (dc1394_single_capture(handle,&camera)!=DC1394_SUCCESS)
{
fprintf( stderr, "unable to capture a frame\n");
dc1394_release_camera(handle,&camera);
raw1394_destroy_handle(handle);
exit(1);
}
/*---------------------------------------------------------------------
* output elapsed time
*---------------------------------------------------------------------*/
elapsed_time = (float)(times(&tms_buf) - start_time) / CLK_TCK;
printf( "got frame %d. elapsed time: %g sec ==> %g frames/second\n",
i, elapsed_time, (float)i / elapsed_time);
}
/*-----------------------------------------------------------------------
* Stop data transmission
*-----------------------------------------------------------------------*/
if (dc1394_stop_iso_transmission(handle,camera.node)!=DC1394_SUCCESS)
{
printf("couldn't stop the camera?\n");
}
/*-----------------------------------------------------------------------
* save last image as Part.pgm
*-----------------------------------------------------------------------*/
imagefile=fopen("Part.pgm","w");
fprintf(imagefile,"P5\n%u %u 255\n", camera.frame_width,
camera.frame_height );
fwrite((const char *)camera.capture_buffer, 1,
camera.frame_height*camera.frame_width, imagefile);
fclose(imagefile);
printf("wrote: Part.pgm\n");
/*-----------------------------------------------------------------------
* Close camera
*-----------------------------------------------------------------------*/
dc1394_release_camera(handle,&camera);
raw1394_destroy_handle(handle);
return 0;
}
|