Ignore:
Timestamp:
09/04/19 15:11:26 (5 years ago)
Author:
Sanahuja Guillaume
Message:

add imagesize to iplimage

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/sanscv/lib/FlairVisionFilter/src/ImgThreshold.cpp

    r326 r328  
    6161        inIplImage->height=img->GetDataType().GetHeight();
    6262        inIplImage->imageData=img->buffer;
     63        inIplImage->imageSize=img->GetDataType().GetSize();
    6364       
    6465        output->GetMutex();
     
    6667        outIplImage->height=output->GetDataType().GetHeight();
    6768        outIplImage->imageData=output->buffer;
     69        outIplImage->imageSize=output->GetDataType().GetSize();
    6870               
    6971        dspThreshold(inIplImage,outIplImage, threshold->Value(), 255, CV_THRESH_BINARY);
Note: See TracChangeset for help on using the changeset viewer.