【发布时间】: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