matlab中的物体检测
我想在 matlab 中编写一段代码,在其中我想检测给定图像中的颜色对象并返回找到或未找到的自定义图像的结果。我单独有一个自定义对象的图像。我是 matlab 新手...谁能告诉我如何继续...
我有一个物体的预定义图像,比如液晶电视...给定的图像可能包含也可能不包含该对象。我需要一种方法来检查并查找给定图像中是否存在预定义图像...在 matlab 中可能吗?
I want to write a code in matlab in which i would like to detect color objects in a given image and return the result as found the custom image or not found. i have an image of the custom object separately. im new to matlab... can anyone tell me how to proceed...
i have a pre defined image of an object say an lcd tv.... a given image which may or may not contain the object in it. i need a method to chek and find if the pre defined image is present or not in the given image... is it possible in matlab?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议你开始研究。 Stack Overflow 并不是提出此类笼统问题的好地方。
1) 你可以用任何编程语言做的任何事情在 matlab 中都是可能的,你受到三个因素的限制:
a) 你希望它的运行速度有多快
b) 你想做多少编码
c)你的内存有多少是matlab将吃掉
2)如果我正确理解你的问题,你是:寻找匹配一个适合更大图像的图像
解决方案:将你的图像移动到另一个图像上,计算之间的差异所有像素。最接近所需图像的像素集应该为零。
The I suggest you start researching. Stack Overflow is not a great place to ask such generalized questions.
1) Anything that you can do in any programming language is possible in matlab, you are limited by three things:
a) How fast do you want it to work
b) how much coding do you want to do
c) how much of your memory is matlab going to eatup
2) If I am understanding your question correctly you are: Looking to match an image that is fit inside a larger image
Solution: shift your image across the other image, calulate the difference between all the pixels. The set of pixels that is closest to your desired image should be zero.