【问题标题】:C++/LabVIEW interop: error extracting data from LabVIEW array/ unexpected type conversion in function parameterC++/LabVIEW 互操作:从 LabVIEW 数组中提取数据时出错/函数参数中出现意外类型转换
【发布时间】:2012-01-17 01:31:03
【问题描述】:

我正在使用Cluebat-man's LabVIEW-C++ array interoperability class,,但从数组中提取数据时出错。或者,更确切地说,数据提取似乎成功,但是当我稍后尝试使用数据时构建失败。

(上下文:该程序旨在实现 Manjunath 等人的对等组过滤;该功能旨在提取图像的色调平面。我相当确定这不是特定功能的问题,除了可能它的参数声明,因为当我尝试使用来自getHuePlane() 的结果时,程序稍后会出现同样的问题)

#ifndef IO_TYPE //Normal arrays or LabVIEW?
#define I_TYPE  /* int* */ CLvArrayHandlePtr<unsigned __int32, 2>
#define O_TYPE /* int* */ CLvArrayHandlePtr<unsigned __int8, 2>
#define IO_TYPE
#endif

#ifndef USING_LABVIEW_DEFINED
#define USING_LABVIEW //remove if not
#define USING_LABVIEW_DEFINED
#endif

提取和函数调用:

#include "LvArrayIndexer.h"
#include "LvArrayTemplate.h"

O_TYPE pgf(I_TYPE HSLimage, int width, int height, int halfWindowSize, int noiseThreshold) {
#ifdef USING_LABVIEW
    size_t size[2] = {width, height};
    HSLimage.Resize(size);
    CLvArrayIndexer<unsigned __int32, 2 > baseImgIndexer(HSLimage);

    CLvArrayHandlePtr<unsigned __int8, 2 > hueImage;
    hueImage.Resize(size);
    CLvArrayIndexer<unsigned __int8, 2 > hueImgIndexer(hueImage);

    int LvImageData[width][height];
#else
    int hueImage[width][height];
#endif
    int hueImageData[width][height];
    int windowSize = 2 * halfWindowSize - 1;
    int windowLength = windowSize * windowSize;
    int window[windowSize][windowSize];
    int flattenedWindow[windowLength];
    vector<int> peerGroup;
    int currentValue;

#ifdef USING_LABVIEW
    for (int x = 0; x < width; x++)
        for (int y = 0; y < height; y++)
            LvImageData[x][y] = baseImgIndexer[x][y];

    hueImageData = getHuePlane(LvImageData, width, height);
#else
    hueImageData = getHuePlane(HSLimage, width, height);
#endif
//Function continues
}

函数定义:

int* getHuePlane(int* HSLimage, int width, int height) {
    int hueImage[width][height];
    double calcValue;

    /*Get hue plane
     *AL HU SA LU ->AL HU.SA LU -> AL HUF
     *AL HU -> AL.HU -> 0.HU -> HU
     */
    for (int x = 0; x < width; x++) {
        for (int y = 0; y < height; y++) {
            calcValue = int(double(HSLimage[x][y]) / 65536); //A-H-S-L; removes S-L
            calcValue = (calcValue / 256) - int(calcValue / 256);
            calcValue = calcValue * 256;
            hueImage[x][y] = int(calcValue);
        }
    }

    return hueImage;
}

错误是:

pgf.cpp:88:58: error: cannot convert 'int (*)[(((unsigned int)(((int)height) + -0x000000001)) + 1)]' to 'int*' for argument '1' to 'int* getHuePlane(int*, int, int)'

系统信息:

  • IDE:Netbeans 7.1
  • 编译器:MinGW (gcc v4.6.2)
  • 制作:GNU make 3.79.1
  • 系统:Windows 7 6.1 版

【问题讨论】:

    标签: c++ interop compiler-errors type-conversion labview


    【解决方案1】:

    我猜错误在这一行:

    hueImageData = getHuePlane(LvImageData, width, height);
    

    原因是类型不匹配:LvImageData 被定义为 int [][]getHuePlane 期望 int *

    此外,您还应该在此行(getHuePlane)上收到错误:

    calcValue = int(double(HSLimage[x][y]) / 65536); //A-H-S-L; removes S-L
    

    这是因为函数中的HSLimageint *,而您尝试以int [][](或int *[] 作为参数类型应该是)访问它。

    【讨论】:

    • 嗯。我的印象是(将数组的名称作为指针传递)是您将数组传递给函数的方式。我认为cplusplus.com 已经过时了吗?无论如何,我会试一试 - 谢谢!
    • 是的,这就是问题所在。我最终完全切换到向量 - 谢谢!
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2020-08-09
    • 2021-02-27
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多