00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00021 00022 00023 00024 00025 00026 00027 00028 00029 00030 00031 00032 00033 #include <avt_vimba_camera/frame_observer.h> 00034 00035 FrameObserver::FrameObserver(CameraPtr cam_ptr, Callback callback) : IFrameObserver( cam_ptr ), callback_(callback), cam_ptr_(cam_ptr) 00036 { 00037 // Nothing 00038 } 00039 00040 void FrameObserver::FrameReceived( const FramePtr vimba_frame_ptr ) 00041 { 00042 VmbFrameStatusType eReceiveStatus; 00043 00044 if ( VmbErrorSuccess == vimba_frame_ptr->GetReceiveStatus( eReceiveStatus )) 00045 { 00046 // Call the callback 00047 callback_(vimba_frame_ptr); 00048 } 00049 else 00050 { 00051 // If any error occurred we queue the frame without notification 00052 std::cout << "FrameObserver error: " << vimba_frame_ptr->GetReceiveStatus( eReceiveStatus ) << std::endl; 00053 cam_ptr_->QueueFrame( vimba_frame_ptr ); 00054 } 00055 }