为 haar 训练 OpenCV 准备数据
我想制作自己的 haar 分类器来检测手部,所以我按照以下给出的教程进行操作 徐直志。在本教程中使用了各种 linux 命令,但我没有 linux。
一些命令是:$ find [image dir] -name '*.[image ext]' > [描述文件]
$ createsamples -info样本.dat -vec样本.vec -w 20 -h 20
那么我如何在我的 Windows 上使用这些命令
i want to make my own haar classifier for detection of hand, so i was following the toutorial given at
Naotoshi Seo. In this tutorial various linux command are used and i don't have linux.
some command are:$ find [image dir] -name '*.[image ext]' > [description file]
$ createsamples -info samples.dat -vec samples.vec -w 20 -h 20
so how can i use these command on my windows
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“查找”命令创建一个包含图像文件名称的文本文件。如果您愿意,您可以手动完成此操作。
第二个不是标准的 Linux 命令,但我认为它是创建分类器所需的工具之一。如果您想使用 Windows,则必须下载该教程中工具的 Windows 版本。他使用 Cygwin,因此您也需要安装它。
另一种选择是下载 Ubuntu Live 发行版并将其安装在 USB 记忆棒上。然后,您可以从 USB 记忆棒启动,在 Linux 中创建分类器,完成后转到 Widows。
The "find" command creates a text file with the names of your image files. You can do that by hand if you want.
The second one is not a standard Linux command, but, I assume, one of the tools you need to create the classifier. If you want to use Windows you will have to download the Windows version of the tools in that tutorial. He uses Cygwin so you will need to install that as well.
Another option is to download the Ubuntu Live distribution and install it on a USB memory stick. You can then boot from the USB stick, create your classifier in Linux, then go beck to Widows when you're done.