C# 中的图像处理 - 智能解决方案?
我有一张带有字母的图像,字母有黑色和蓝色两种颜色,我想从图像中读取蓝色字母。
谁能建议我一种在 C# 中执行此操作的方法。我正在研究GDI+,但仍然没有任何逻辑来开发这个程序。
我尝试对其进行OCR,但常见OCR的问题是它们无法识别颜色差异。
我只想阅读蓝色字符......
非常感谢任何指导。
I have an image with letters in it, the letters are in two colors black and blue, I want to read the blue colored letters from the image.
Can anyone suggest me a method to do this in C#. Iam studying GDI+,but still didn't get any logic to develop this program..
I tried OCRing it, but the issue with common OCRs is that they dont recognize the color difference.
I only want to read the Blue characters....
Any guidance is highly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这个;)但那是不安全的代码。
Try this one ;) But that's unsafe code.
将图像颜色修改为灰度然后使用 OCR
Modify the color of the image to gray scaled then use OCR
您可以修改调色板,使图像上只有黑色和白色
You could probably modify the palette to have only black and white on the image