Canon EDSDK Как узнать ширину и высоту изображений в режиме реального времени?

Я написал код C++ для отображения изображения в реальном времени на мониторе. Я ссылался на некоторый код на stackru. Наконец, я завершаю свой код, но есть некоторые проблемы.

Я хочу отобразить изображение в реальном времени с помощью opencv, но я не знаю, как получить ширину и высоту изображения в реальном времени. (может быть, он получен функцией EDSDK..)

Пожалуйста, ответьте за меня.

(Я приложил свой код, я хочу подходящий ответ для моего кода)

(посмотрите на "//libjpegTurbo...//, есть ручная настройка _width & height. Я хочу получить с помощью функции)


// Functions_body
bool LiveViewStart() 
{
    EdsError err = EDS_ERR_OK;
    EdsCameraListRef cameraList = NULL;
    EdsCameraRef camera = NULL;
    EdsUInt32    count = 0; 
    bool         isSDKLoaded = false;

    // Initialize SDK
    err = EdsInitializeSDK(); 

    if(err == EDS_ERR_OK) 
    { 
        isSDKLoaded = true; 
    }

    // Acquisition of camera list
    if(err == EDS_ERR_OK)
    {
        err = EdsGetCameraList(&cameraList);
    }

    // Acquisition of number of Cameras
    if(err == EDS_ERR_OK)
    {
        err = EdsGetChildCount(cameraList, &count);
        if(count == 0)
        {
            err = EDS_ERR_DEVICE_NOT_FOUND;
        }
    }

    // Acquisition of camera at the head of the list
    if(err == EDS_ERR_OK)
    {   
        err = EdsGetChildAtIndex(cameraList , 0 , &camera); 
    }

    // Acquisition of camera information
    EdsDeviceInfo deviceInfo;
    if(err == EDS_ERR_OK)
    {   
        err = EdsGetDeviceInfo(camera , &deviceInfo);   
        if(err == EDS_ERR_OK && camera == NULL)
        {
            err = EDS_ERR_DEVICE_NOT_FOUND;
        }
    }

    // Release camera list
    if(cameraList != NULL)
    {
        EdsRelease(cameraList);
    }

    if(err != EDS_ERR_OK)
    {
        ::MessageBox(NULL,"Cannot detect camera",NULL,MB_OK);
        exit(1);
    }

    // Open session with camera 
    if(err == EDS_ERR_OK) 
    { 
        err = EdsOpenSession(camera); 
    } 

    // Start Live view  
    // Get the output device for the live view image
    EdsUInt32 device;
    err = EdsGetPropertyData(camera, kEdsPropID_Evf_OutputDevice, 0, sizeof(device), &device);

    // PC live view starts by setting the PC as the output device for the live view image. 
    if(err == EDS_ERR_OK) 
    { 
        device |= kEdsEvfOutputDevice_PC; 
        err = EdsSetPropertyData(camera, kEdsPropID_Evf_OutputDevice, 0 , sizeof(device), &device);
    } 

    Sleep(2000);

    // Download EvfData
    EdsEvfImageRef evfImage = NULL;
    EdsStreamRef stream = NULL;
    unsigned char* data = NULL;
    unsigned long size = 0;

    // Create memory stream
    err = EdsCreateMemoryStream(0, &stream);

    if (err != EDS_ERR_OK) {
        cout << "Download Live View Image Error in Function EdsCreateMemoryStream: " << err << "\n";
        return false;
    }

    // Create EvfImageRef.
    err = EdsCreateEvfImageRef(stream, &evfImage);

    if (err != EDS_ERR_OK) {
        cout << "Download Live View Image Error in Function EdsCreateEvfImageRef: " << err << "\n";
        return false;

    }

    // Download live view image data.
    err = EdsDownloadEvfImage(camera, evfImage);

    if (err != EDS_ERR_OK) {
        cout << "Download Live View Image Error in Function EdsDownloadEvfImage: " << err << "\n";
        return false;
    }

    //Sleep(1000);

    // Get Pointer of evfStream
    err = EdsGetPointer(stream, (EdsVoid**)& data);

    if (err != EDS_ERR_OK) {
        cout << "Download Live View Image Error in Function EdsGetPointer: " << err << "\n";
        return false;
    }

    // Get Length of evfStream
    err = EdsGetLength(stream, &size);

    if (err != EDS_ERR_OK) {
        cout << "Download Live View Image Error in Function EdsGetLength: " << err << "\n";
        return false;
    }



    // libjpegTurbo(data, size);
    int JPEG_QUALITY = 75;
    int COLOR_COMPONENTS = 3;
    int _width = 1920;
    int _height = 1080;
    long unsigned int _jpegSize = 0;
    unsigned char *_compressedImage = NULL;
    unsigned char *buffer = new unsigned char [_width * _height * COLOR_COMPONENTS];

    tjhandle _jpegCompressor = tjInitCompress();

    tjCompress2(_jpegCompressor, buffer, _width, 0, _height, TJPF_RGB, &_compressedImage, &_jpegSize, TJSAMP_444, JPEG_QUALITY, TJFLAG_FASTDCT);

    tjDestroy(_jpegCompressor);

    // display RGB image in opencv

    // Release stream
    if (stream != NULL) {
        EdsRelease(stream);
        stream = NULL;
    }

    // Release evfImage
    if (evfImage != NULL) {            
        EdsRelease(evfImage);
        evfImage = NULL;
    }

    data = NULL;

    // End Live view.
    // Get the output device for the live view image
    err = EdsGetPropertyData(camera, kEdsPropID_Evf_OutputDevice, 0, sizeof(device), &device);

    // PC live view ends if the PC is disconneccted from the live view output device.
    if(err == EDS_ERR_OK)
    {
        device &= ~kEdsEvfOutputDevice_PC;
        err = EdsSetPropertyData(camera, kEdsPropID_Evf_OutputDevice, 0, sizeof(device), &device);
    }

    // Close session with camera 
    if(err == EDS_ERR_OK) 
    {
        err = EdsCloseSession(camera); 
    } 

    // Release camera 
    if(camera != NULL) 
    { 
        EdsRelease(camera); 
    } 
    // Terminate SDK 
    if(isSDKLoaded) 
    { 
        EdsTerminateSDK(); 
    } 
    return true;
} 

2 ответа

Canon SDK не предоставляет никаких функций для получения размера изображения в режиме реального времени. Проблема, с которой вы сталкиваетесь в своем коде, заключается в том, что вы пытаетесь сжать изображение, но вам нужно распаковать его. Я предлагаю вам прочитать об использовании libjpg turbo. Они предоставляют очень хорошо документированные примеры: http://www.libjpeg-turbo.org/Documentation/Documentation

На заметку: это ваш реальный код или просто показать? Поскольку загрузка изображений в режиме реального времени должна выполняться последовательно, в противном случае вы будете загружать только одно изображение и закрывать все.

С уважением

Если у вас есть evfImage, вы можете использовать EdsGetPropertyData для запроса его kEdsPropID_Evf_CoordinateSystem (тип EdsSize). Это значение содержит ширину и высоту прямого просмотра последнего захваченного кадра.

Другие вопросы по тегам