OpenCV  4.10.0
开源计算机视觉库
加载中...
搜索中...
无匹配项
创建 3D 直方图

上一教程: 创建小部件

目标

在本教程中,您将学习如何

  • 为 viz 窗口创建您自己的回调键盘函数。
  • 在 viz 窗口中显示您的 3D 直方图。

代码

您可以从 这里 下载代码。

#include <opencv2/core.hpp>
#include <iostream>
using namespace std;
using namespace cv;
#ifdef HAVE_OPENCV_VIZ
#include <opencv2/viz.hpp>
const String keys =
"{Aide h usage ? help | | print this message }"
"{@arg1 | | Full path to color imag (3 channels)}"
;
struct Histo3DData {
Mat histogram;
int seuil;
double threshold;
int nbWidget;
bool status;
double maxH;
int code;
};
void DrawHistogram3D(Histo3DData &);
void AddSlidebar(String sliderName, String windowName, int sliderMin, int sliderMax, int valeurDefaut, int *sliderVal, void(*f)(int, void *), void *r);
void UpdateThreshold(int , void * r);
void KeyboardViz3d(const viz::KeyboardEvent &w, void *t);
void DrawHistogram3D(Histo3DData &h)
{
int planSize = (int)h.histogram.step1(0);
int cols = (int)h.histogram.step1(1);
int rows = (int)planSize / cols;
int plans = (int)h.histogram.total() / planSize;
h.fen3D->removeAllWidgets();
h.nbWidget=0;
if (h.nbWidget==0)
h.fen3D->showWidget("Axis", viz::WCoordinateSystem(10));
for (int k = 0; k < plans; k++)
{
for (int i = 0; i < rows; i++)
{
for (int j = 0; j < cols; j++)
{
double x = h.histogram.at<float>(k, i, j);
if (x >= h.threshold)
{
double r=std::max(x/h.maxH,0.1);
viz::WCube s(Point3d(k - r / 2, i - r / 2, j - r / 2), Point3d(k + r / 2, i + r / 2, j + r / 2), false, viz::Color(j / double(plans) * 255, i / double(rows) * 255, k / double(cols) * 255));
h.fen3D->showWidget(format("I3d%d", h.nbWidget++), s);
}
}
}
}
h.status = false;
}
void KeyboardViz3d(const viz::KeyboardEvent &w, void *t)
{
Histo3DData *x=(Histo3DData *)t;
if (w.action)
cout << "您按下了 "<< w.symbol<< " 在 viz 窗口中 "<<x->fen3D->getWindowName()<<"\n";
x->code= w.code;
switch (w.code) {
case '/'
x->status=true;
x->threshold *= 0.9;
break;
case '*'
x->status = true;
x->threshold *= 1.1;
break;
}
if (x->status)
{
cout << x->threshold << "\n";
DrawHistogram3D(*x);
}
}
void AddSlidebar(String sliderName, String windowName, int sliderMin, int sliderMax, int defaultSlider, int *sliderVal, void(*f)(int, void *), void *r)
{
createTrackbar(sliderName, windowName, sliderVal, 1, f, r);
setTrackbarMin(sliderName, windowName, sliderMin);
setTrackbarMax(sliderName, windowName, sliderMax);
setTrackbarPos(sliderName, windowName, defaultSlider);
}
void UpdateThreshold(int , void * r)
{
Histo3DData *h = (Histo3DData *)r;
h->status=true;
h->threshold = h->seuil/1000000.0;
cout<<"Widget : "<<h->nbWidget<<","<< h->threshold<<"\n";
}
int main (int argc,char **argv)
{
CommandLineParser parser(argc, argv, keys);
if (parser.has("help"))
{
parser.printMessage();
return 0;
}
String nomFic = parser.get<String>(0);
Mat img;
if (nomFic.length() != 0)
{
img = imread(nomFic, IMREAD_COLOR);
if (img.empty())
{
cout << "图像不存在!";
return 0;
}
}
else
{
img = Mat(512,512,CV_8UC3);
parser.printMessage();
RNG r;
r.fill(img(Rect(0, 0, 256, 256)), RNG::NORMAL, Vec3b(60, 40, 50), Vec3b(10, 5, 20));
r.fill(img(Rect(256, 0, 256, 256)), RNG::NORMAL, Vec3b(160, 10, 50), Vec3b(20, 5, 10));
r.fill(img(Rect(0, 256, 256, 256)), RNG::NORMAL, Vec3b(90, 100, 50), Vec3b(10, 20, 20));
r.fill(img(Rect(256, 256, 256, 256)), RNG::NORMAL, Vec3b(100, 10, 150), Vec3b(10, 5, 40));
}
Histo3DData h;
h.status=true;
h.seuil=90;
h.threshold= h.seuil/1000000.0;
float hRange[] = { 0, 256 };
const float* etendu[] = { hRange, hRange,hRange };
int hBins = 32;
int histSize[] = { hBins, hBins , hBins };
int channel[] = { 2, 1,0 };
calcHist(&img, 1, channel, Mat(), h.histogram, 3, histSize, etendu, true, false);
normalize(h.histogram, h.histogram, 100.0/(img.total()), 0, NORM_MINMAX, -1, Mat());
minMaxIdx(h.histogram,NULL,&h.maxH,NULL,NULL);
namedWindow("Image");
imshow("Image",img);
AddSlidebar("threshold","Image",0,100,h.seuil,&h.seuil, UpdateThreshold,&h);
waitKey(30);
h.fen3D = makePtr<viz::Viz3d>("3D 直方图");
h.nbWidget=0;
h.fen3D->registerKeyboardCallback(KeyboardViz3d,&h);
DrawHistogram3D(h);
while (h.code!=27)
{
h.fen3D->spinOnce(1);
if (h.status)
DrawHistogram3D(h);
if (h.code!=27)
h.code= waitKey(30);
}
return 0;
}
#else
int main(int argc, char **argv)
{
cout << " 您需要 VIZ 模块\n";
return 0;
}
#endif
专为命令行解析而设计。
定义 utility.hpp:820
n 维密集数组类
定义 mat.hpp:812
用于通过其坐标 x、y 和 z 指定的 3D 点的模板类。
定义 types.hpp:255
随机数生成器。
定义 core.hpp:2889
void fill(InputOutputArray mat, int distType, InputArray a, InputArray b, bool saturateRange=false)
用随机数填充数组。
用于 2D 矩形的模板类。
定义 types.hpp:444
用于短数值向量的模板类,是 Matx 的特例。
定义 matx.hpp:369
此类以 BGR 顺序表示颜色。
定义 types.hpp:64
此类表示键盘事件。
定义 types.hpp:288
String symbol
定义 types.hpp:303
Action action
定义 types.hpp:302
unsigned char code
定义 types.hpp:304
复合小部件。
定义 widgets.hpp:514
此 3D 小部件定义了一个立方体。
定义 widgets.hpp:373
void minMaxIdx(InputArray src, double *minVal, double *maxVal=0, int *minIdx=0, int *maxIdx=0, InputArray mask=noArray())
在数组中查找全局最小值和最大值。
void normalize(InputArray src, InputOutputArray dst, double alpha=1, double beta=0, int norm_type=NORM_L2, int dtype=-1, InputArray mask=noArray())
归一化数组的范数或值范围。
std::string String
定义 cvstd.hpp:151
std::shared_ptr< _Tp > Ptr
定义 cvstd_wrapper.hpp:23
#define CV_8UC3
定义 interface.h:90
void imshow(const String &winname, InputArray mat)
在指定窗口中显示图像。
int waitKey(int delay=0)
等待按下键。
void namedWindow(const String &winname, int flags=WINDOW_AUTOSIZE)
创建一个窗口。
void setTrackbarPos(const String &trackbarname, const String &winname, int pos)
设置轨迹条的位置。
void setTrackbarMax(const String &trackbarname, const String &winname, int maxval)
设置轨迹条的最大位置。
void setTrackbarMin(const String &trackbarname, const String &winname, int minval)
设置轨迹条的最小位置。
int createTrackbar(const String &trackbarname, const String &winname, int *value, int count, TrackbarCallback onChange=0, void *userdata=0)
创建一个轨迹条并将其附加到指定的窗口。
CV_EXPORTS_W Mat imread(const String &filename, int flags=IMREAD_COLOR)
从文件加载图像。
void calcHist(const Mat *images, int nimages, const int *channels, InputArray mask, OutputArray hist, int dims, const int *histSize, const float **ranges, bool uniform=true, bool accumulate=false)
计算一组数组的直方图。
int main(int argc, char *argv[])
定义 highgui_qt.cpp:3
磁盘上与文件关联的文件存储的“黑盒”表示。
定义 core.hpp:102
STL 命名空间。

解释

以下是程序的一般结构

  • 您可以在命令行中提供图像的完整路径

    CommandLineParser parser(argc, argv, keys);
    if (parser.has("help"))
    {
    parser.printMessage();
    return 0;
    }
    String nomFic = parser.get<String>(0);
    Mat img;
    if (nomFic.length() != 0)
    {
    img = imread(nomFic, IMREAD_COLOR);
    if (img.empty())
    {
    cout << "图像不存在!";
    return 0;
    }
    }

    或者不带路径,会生成一个合成图像,其像素值呈高斯分布,在第一象限中 cv::RNG::fill 中心(60+/-10,40+/-5,50+/-20),在第二象限中(160+/-20,10+/-5,50+/-10),在第三象限中(90+/-10,100+/-20,50+/-20),在第四象限中(100+/-10,10+/-5,150+/-40)。

    else
    {
    img = Mat(512,512,CV_8UC3);
    parser.printMessage();
    RNG r;
    r.fill(img(Rect(0, 0, 256, 256)), RNG::NORMAL, Vec3b(60, 40, 50), Vec3b(10, 5, 20));
    r.fill(img(Rect(256, 0, 256, 256)), RNG::NORMAL, Vec3b(160, 10, 50), Vec3b(20, 5, 10));
    r.fill(img(Rect(0, 256, 256, 256)), RNG::NORMAL, Vec3b(90, 100, 50), Vec3b(10, 20, 20));
    r.fill(img(Rect(256, 256, 256, 256)), RNG::NORMAL, Vec3b(100, 10, 150), Vec3b(10, 5, 40));
    }

    使用opencv cv::calcHistcv::normalize 计算图像的三维直方图,范围在 0 到 100 之间。

    Histo3DData h;
    h.status=true;
    h.seuil=90;
    h.threshold= h.seuil/1000000.0;
    float hRange[] = { 0, 256 };
    const float* etendu[] = { hRange, hRange,hRange };
    int hBins = 32;
    int histSize[] = { hBins, hBins , hBins };
    int channel[] = { 2, 1,0 };
    calcHist(&img, 1, channel, Mat(), h.histogram, 3, histSize, etendu, true, false);
    normalize(h.histogram, h.histogram, 100.0/(img.total()), 0, NORM_MINMAX, -1, Mat());
    minMaxIdx(h.histogram,NULL,&h.maxH,NULL,NULL);

    通道分别为 2、1 和 0,以便在对象 cv::viz::WCoordinateSystem 中与 Viz 轴颜色同步。

    在图像窗口中插入一个滑块。滑块的初始值为 90,这意味着只有直方图单元格大于 9/100000.0(对于 512X512 像素的图像,为 23 个像素)才会显示。

    namedWindow("Image");
    imshow("Image",img);
    AddSlidebar("threshold","Image",0,100,h.seuil,&h.seuil, UpdateThreshold,&h);
    waitKey(30);

    我们准备打开一个带有回调函数的 viz 窗口,以捕获 viz 窗口中的键盘事件。使用 cv::viz::Viz3d::spinOnce 使键盘事件能够在 cv::imshow 窗口中也被捕获。

    h.fen3D = makePtr<viz::Viz3d>("3D 直方图");
    h.nbWidget=0;
    h.fen3D->registerKeyboardCallback(KeyboardViz3d,&h);
    DrawHistogram3D(h);
    while (h.code!=27)
    {
    h.fen3D->spinOnce(1);
    if (h.status)
    DrawHistogram3D(h);
    if (h.code!=27)
    h.code= waitKey(30);
    }

    函数 DrawHistogram3D 处理直方图 Mat 以在 Viz 窗口中显示它。可以使用以下代码找到 三维 Mat 中的平面、行和列数

    int planSize = (int)h.histogram.step1(0);
    int cols = (int)h.histogram.step1(1);
    int rows = (int)planSize / cols;
    int plans = (int)h.histogram.total() / planSize;
    h.fen3D->removeAllWidgets();
    h.nbWidget=0;
    if (h.nbWidget==0)
    h.fen3D->showWidget("Axis", viz::WCoordinateSystem(10));

    要获得特定位置的直方图值,我们使用 cv::Mat::at(int i0,int i1, int i2) 方法,它接受三个参数 k、i 和 j,其中 k 是平面编号,i 是行编号,j 是列编号。

    for (int k = 0; k < plans; k++)
    {
    for (int i = 0; i < rows; i++)
    {
    for (int j = 0; j < cols; j++)
    {
    double x = h.histogram.at<float>(k, i, j);
    if (x >= h.threshold)
    {
    double r=std::max(x/h.maxH,0.1);
    viz::WCube s(Point3d(k - r / 2, i - r / 2, j - r / 2), Point3d(k + r / 2, i + r / 2, j + r / 2), false, viz::Color(j / double(plans) * 255, i / double(rows) * 255, k / double(cols) * 255));
    h.fen3D->showWidget(format("I3d%d", h.nbWidget++), s);
    }
    }
    }
    }
  • 回调函数的原理与鼠标回调函数相同。按下的键码位于类 cv::viz::KeyboardEvent 的代码字段中。
    void KeyboardViz3d(const viz::KeyboardEvent &w, void *t)
    {
    Histo3DData *x=(Histo3DData *)t;
    if (w.action)
    cout << "您按下了 "<< w.symbol<< " 在 viz 窗口中 "<<x->fen3D->getWindowName()<<"\n";
    x->code= w.code;
    switch (w.code) {
    case '/'
    x->status=true;
    x->threshold *= 0.9;
    break;
    case '*'
    x->status = true;
    x->threshold *= 1.1;
    break;
    }
    if (x->status)
    {
    cout << x->threshold << "\n";
    DrawHistogram3D(*x);
    }
    }

结果

以下是程序在没有参数且阈值为 50 时的情况。