c++ - 在 C++ 中嵌入 matplotlib

标签 c++ python matplotlib

我正在使用 C++ 代码从套接字读取消息,并尝试使用 matplotlib 以交互方式绘制它,但似乎 Python 代码会阻塞主线程,无论我使用 show ()ion()draw()ion()draw() 在 Python 中不会阻塞。

知道如何在 C++ 代码中使用 matplotlib 进行交互式绘图吗?

一个例子会非常好。

非常感谢。

最佳答案

您也可以尝试创建一个新线程来调用 阻塞函数,这样它就不会在你的主程序中阻塞 IO 环形。使用线程对象数组并循环查找未使用的 一,创建一个线程来执行阻塞调用,并有另一个线程 完成后加入他们。

这段代码是我为了证明我的意思而做的快速组合 使用线程获取阻塞函数的伪异步行为... 我没有好好编译和梳理,只是为了展示 你如何做到这一点。

#include <pthread.h>
#include <sys/types.h>
#include <string>
#include <memory.h>
#include <malloc.h>
#define MAX_THREADS 256 // Make this as low as possible!
using namespace std;
pthread_t PTHREAD_NULL;
typedef string someTypeOrStruct;
class MyClass
{
    typedef struct
    {
        int id;
        MyClass *obj;
        someTypeOrStruct input;
    } thread_data;

    void draw();    //Undefined in this example
    bool getInput(someTypeOrStruct *);  //Undefined in this example
    int AsyncDraw(MyClass * obj, someTypeOrStruct &input);
    static void * Joiner(MyClass * obj);
    static void * DoDraw(thread_data *arg);
    pthread_t thread[MAX_THREADS], JoinThread;
    bool threadRunning[MAX_THREADS], StopJoinThread;

    bool exitRequested;
public:
    void Main();
};

bool MyClass::getInput(someTypeOrStruct *input)
{
}

void MyClass::Main()
{
    exitRequested = false;
    pthread_create( &JoinThread, NULL, (void *(*)(void *))MyClass::Joiner, this);

    while(!exitRequested)
    {
        someTypeOrStruct tmpinput;
        if(getInput(&tmpinput))
            AsyncDraw(this, tmpinput);
    }

    if(JoinThread != PTHREAD_NULL)
    {
        StopJoinThread = true;
        pthread_join(JoinThread, NULL);
    }
}

void *MyClass::DoDraw(thread_data *arg)
{
    if(arg == NULL) return NULL;
    thread_data *data = (thread_data *) arg;
    data->obj->threadRunning[data->id] = true;
    // -> Do your draw here <- //
    free(arg);
    data->obj->threadRunning[data->id] = false; // Let the joinThread know we are done with this handle...
}

int MyClass::AsyncDraw(MyClass *obj, someTypeOrStruct &input)
{
    int timeout = 10; // Adjust higher to make it try harder...
    while(timeout)
    {
        for(int i = 0; i < MAX_THREADS; i++)
        {
            if(thread[i] == PTHREAD_NULL)
            {
                thread_data *data = (thread_data *)malloc(sizeof(thread_data));
                if(data)
                {
                    data->id = i;
                    data->obj = this;
                    data->input = input;

                    pthread_create( &(thread[i]), NULL,(void* (*)(void*))MyClass::DoDraw, (void *)&data);
                    return 1;
                }
                return 0;
            }
        }
        timeout--;
    }
}

void *MyClass::Joiner(MyClass * obj)
{
    obj->StopJoinThread = false;
    while(!obj->StopJoinThread)
    {
        for(int i = 0; i < MAX_THREADS; i++)
            if(!obj->threadRunning[i] && obj->thread[i] != PTHREAD_NULL)
            {
                pthread_join(obj->thread[i], NULL);
                obj->thread[i] = PTHREAD_NULL;
            }
    }
}

int main(int argc, char **argv)
{
    MyClass base;
    base.Main();
    return 0;
}

这样您就可以在抽奖进行时继续接受输入。

~~修复了上面的代码实际编译,确保添加 -lpthread

关于c++ - 在 C++ 中嵌入 matplotlib,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10109700/

相关文章:

c++ - 在运行时选择相同功能的版本

python - Scikit Learn - 拟合和预测输入的顺序,重要吗?

python - cmap 到 Matplotlib 中的 rgba

python - 将指针从 Python 传输到 dll 并取回修改后的值

python - 从 python 中的 timedelta64 对象创建箱线图

python - 在嵌套 while 循环中使用 matplotlib 绘制多个图

c++ - 在 QML 中显示图像 BLOB 类型

c++ - 所有的C++函数最终是如何定义的?

c++ - std::initializer_list 下的数组的生命周期是多少?

python - Matplotlib 无法通过 PyCharm 工作