开发者

How do I get the coordinates of some text thats part of an image?

开发者 https://www.devze.com 2023-01-06 06:11 出处:网络
I want to cut up the image based on various text markers placed around within it. The font/size of the marker is up to me.

I want to cut up the image based on various text markers placed around within it. The font/size of the marker is up to me.

I know commercial OCR packages provide this in their APIs but I'm hoping I can code this up myself.

Ideally I wouldn't have to go pixel to pixel and compare against an image of the marker text.

I'm good with C++/C开发者_运维百科#, Java, PHP and an other language where a library like this exists...


Ideally I wouldn't have to go pixel to pixel and compare against an image of the marker text.

Well, if you're trying to find the marker image, then that's exactly what you'd have to do.

Here's an idea... Set the marker text to a particular color, then process the background image to make sure that it doesn't have any pixels of that color. Finding the markers should become a lot easier at that point.


A barcode would be easier to detect than a text marker. You can always place them together, with the barcode being used for automatic position detection and the text for human user.


If you want to do a really sufisticated solution, you could use the hough transform. It is often used for augumented reality stuff - there it is necessary to find a certain marker in an image. Ofc you would have to change your markers a bit, would this be possible? ;-) The hough will give you the position of your marker lines and thus the area which you want to cut out.

Here is a link about hough, but there are many others though.

Hough

Or this one

Wiki


A fiduciary marker would be better than text. That's what they use for augmented reality and such.

If the text is always the same size, shape, and oriented in the same direction, you could use normalized cross-correlation.

"Ideally I wouldn't have to go pixel to pixel and compare against an image of the marker text."

Well how else are you going to do it? You're only going to search in part of the image?

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号