gpt4 book ai didi

OpenCV 从鼠标回调函数返回值

转载 作者:太空宇宙 更新时间:2023-11-03 21:02:24 26 4
gpt4 key购买 nike

在 OpenCV 中,我想将像 Point(x,y) 这样的点位置返回到我在鼠标回调函数中单击图像的 main() 函数。除了设置全局变量之外还有什么办法吗?

我不想在 on_mouse() 函数中编写所有代码。

谢谢

最佳答案

要在那里扩展 Safirs 的想法,除了类之类的,你可以直接传递点本身:

void on_mouse( int e, int x, int y, int d, void *ptr )
{
Point*p = (Point*)ptr;
p->x = x;
p->y = y;
}

Point p;
namedWindow("win");
setMouseCallback("win",on_mouse, (void*)(&p) );

// changed value of p will be accessible here

关于OpenCV 从鼠标回调函数返回值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15570431/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com