Is it possible to ignore the dropped packet/frame error during acquisition from a GigE Vision camera? I am using a GigE Vision compliant camera with the Image Acquisition Toolbox GigE Vision adaptor. Occasionally, I get a an error related to a dropped packet / frame and the image acquisition process stops: ERROR: gige: Block/frame 24 is being dropped because a lost packet is unable to be resent. There are several possible causes for packets being lost. See the troubleshooting information in the "Configuring GigE Vision Devices" section of the Image Acquisition Toolbox documentation. Is there a way to catch this error, or is there a way to ignore the dropped packet / frame and continue acquisition?
John Michell answered .
2025-11-20
Note: This error can occur if the Ethernet adapter, camera network connection, and camera GigE streaming parameters (PacketSize and PacketDelay) are not configured for optimum operation.
imaqmex('feature', '-gigeDisablePacketResend', true);
Note: 'gigeDisablePacketResend' option will be reset by the imaqreset command.
When dropped frames are allowed, it is relevant to know how many frames and which frames have been dropped during acquisition. The BlockID field in the metadata returned by getdata corresponds to the frame number set by the camera. A simple way to visualize this is to plot the acquired frames' BlockID and BlockID differences, as in the following code snippet:
[img, ts, metadata] = getdata(vid, vid.FramesAvailable); blockIDs = [metadata.BlockID]; figure; plot(blockIDs, '.') figure; plot(diff(blockIDs), '-x')