笛卡尔到对数极坐标转换
您好,我正在尝试开发一个在图像中执行特征提取的java代码。 我从图像中提取了关键点。 下一步是使用对数极坐标系将每个关键点周围的区域划分为不重叠的区域。 我浏览了将笛卡尔坐标转换为对数极坐标的代码,但我仅在 matlab 中获得了代码。 我需要java代码。 谁能帮助我
Hi I am trying to develop a java code that performs feature extraction in an image.
I extracted the keypoints from the image.
The next step is to divide the region around each keypoint into non overlapping regions using log polar coordinate system.
I browsed for the code to convert cartessian coordinates to log polar but i got the code in matlab only.
I need java code.
Can anyone help me
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
维基百科文章中的解释非常简单: http://en.wikipedia.org/wiki/Log -极坐标。
添加您需要的其他任何内容,但这没什么特别的,而且写起来也很简单。上面假设您的对数以 e 为底,并且您使用弧度。
The explanation is very straightforward in the Wikipedia article: http://en.wikipedia.org/wiki/Log-polar_coordinates.
Add anything else you need, but it's nothing special and it's very trivial to write. The above assumes your log is base e, and you're working in radians.