0

我是opencv的新手,我想计算HSV直方图。我指的是此链接中提供的代码。https://docs.opencv.org/3.0-beta/doc/tutorials/imgproc/histograms/histogram_comparison/histogram_comparison.html

我正在使用 opencv 3.3.1 版并面临以下错误错误。

使用相同的代码,除了更改 HSV 直方图的图像外,我没有对代码进行任何更改。其中 detectPerson 是视频帧,hsv 是 cv mat 对象。

任何人请帮助我被困在这里。

int h_bins = 50, s_bins = 60;
int histSize[] = {h_bins, s_bins};
// hue varies from 0 to 179, saturation from 0 to 255
float h_ranges[] = { 0, 180 };
float s_ranges[] = { 0, 256 };
const float* ranges[] = { h_ranges, s_ranges };
// Use the 0-th and 1-st channels
int channels[] = { 0, 1 };
cv::Mat hist_hsv, hist_hsv2;

cvtColor(detectPerson, hsv, COLOR_BGR2HSV );            
calcHist( &hsv, 1, 0, Mat(), hist_hsv, 2, histSize, ranges, true, false );
normalize( hist_hsv, hist_hsv, 0, 1, NORM_MINMAX, -1, Mat() );

错误

int channels[] = { 0, 1 };
error: too many initializers for 'int [0]'
int histSize[] = {h_bins, s_bins}
error: too many initializers for 'int [0]'
float h_ranges[] = { 0, 180 };
error: too many initializers for 'float [0]'
float s_ranges[] = { 0, 256 };
error: too many initializers for 'float [0]'
4

1 回答 1

0

您的编译器有缺陷,尽管这让我感到困惑,因为这样的代码将是编译器回归测试套件中的第一件事。

int channels[] = { 0, 1 };C++ 标准要求等效于int channels[2] = { 0, 1 };

看来您的编译器假定 0 作为默认值,int channels[0] = { 0, 1 };在标准 C++ 中,必须给出诊断,因为不支持零长度数组。

关闭任何声称的可变长度数组支持是否可以修复它?

于 2019-05-21T14:58:24.467 回答