Changeset 50 in pacpussensors for trunk/PtGreyCameras/Flea3Component.h


Ignore:
Timestamp:
06/12/14 11:17:03 (10 years ago)
Author:
phudelai
Message:

Flea3Component: Shared memory changed for stereovision
StereoVisionDisparity: Added for the PFE of Pierre

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/PtGreyCameras/Flea3Component.h

    r48 r50  
    3030#include <QMutex>
    3131#include <qdir.h>
     32
     33#include "../../StdDbtPlayerComponents/ImageBaseStructure.h"
    3234
    3335namespace pacpus {
     
    9092        int cam_channels;                                       // Image channels (depending of the color processing method)
    9193
     94        //-------------------------------------------- Image save options ------------------------------------------------
     95        double image_scale;                                     // Image scale to save
    9296        int image_compact;                                      // Use jpeg format to save the images
     97        int save2dbt;                                           // Save the image in the dbt file (to increases the save rate)
    9398
     99        size_t mSaveImageSize;                          // Size of the image to be saved
     100        //----------------------------------------------------------------------------------------------------------------
    94101        bool showdebug;                                         // Show frame acquired
    95102               
     
    99106        QDir mOutputDirectory;
    100107
    101         size_t img_mem_size;                                    // Memory size for the image data
     108        TimestampedStructImage ImageHeader;             // Image header
     109        void* img_mem;                                                  // Memory position for the header + image data
     110        size_t img_mem_size;                                    // Memory size for the header + image data
    102111
    103112        bool use_shmem;                                                 // If is to use shared memory
     
    108117        DbiteFile mDbtImage;
    109118
    110         bool THREAD_ALIVE;     
     119        bool THREAD_ALIVE;
     120        bool stereoVision;
     121        QString cam_side;
    111122};
    112123
Note: See TracChangeset for help on using the changeset viewer.