kanji koohii FORUM
Capture2Text - Japanese OCR Utility - Printable Version

+- kanji koohii FORUM (http://forum.koohii.com)
+-- Forum: Learning Japanese (http://forum.koohii.com/forum-4.html)
+--- Forum: Learning resources (http://forum.koohii.com/forum-9.html)
+--- Thread: Capture2Text - Japanese OCR Utility (/thread-6769.html)

Pages: 1 2 3 4 5


Capture2Text - Japanese OCR Utility - cb4960 - 2014-09-17

MarseSnorty Wrote:Is there any chance of getting a way to use this without a keyboard? Because I use a convertible tablet, so when I'm lounging around reading, I don't have they keyboard attached, and so can't really use ocr.

Like you click the icon in the taskbar, and it puts up a transparent grey layer, you then click and drag over that layer to make a selection, making the area selected fully transparent (similar to how the snipping tool looks when taking snips)
Excellent suggestion. It would probably even be useful for some desktop users that don't want to use the hot keys. Hopefully I can find the time to implement this someday.


RE: Capture2Text - Japanese OCR Utility - VanACE - 2015-12-01

Hello,

first Capture2Text make a great Job, thx.

I have a Problem with AHK an hope u can help me.

I Tryd:

Code:
F1::

x1 = 100
y1 = 100
x2 = 600
y2 = 600

Capture2Text.exe x1 y1 x2 y2

msgbox %clipboard%

when i start the script it pop up an error Message like. That is not a resognized action

Can u help me?

best regards


RE: Capture2Text - Japanese OCR Utility - Vempele - 2015-12-02

You're passing the string "x1 x2 y1 y2" as arguments. Try

Capture2Text.exe %x1% %y1% %x2% %y2%


RE: Capture2Text - Japanese OCR Utility - cb4960 - 2015-12-02

As Vempele wrote, something like this is probably what you want:

Code:
F1::

x1 = 100
y1 = 100
x2 = 600
y2 = 600

Runwait, Capture2Text.exe %x1% %y1% %x2% %y2%

msgbox %clipboard%



RE: Capture2Text - Japanese OCR Utility - skribblets - 2016-01-20

I just wanted to say thank you for this!! I've been looking for a high accuracy OCR app like this for a while. This does an excellent job!


RE: Capture2Text - Japanese OCR Utility - cb4960 - 2016-01-20

You're welcome skribblets!

------------------------------------------

I recently (last week) posted version 3.8 of Capture2Text.

Download Capture2Text v3.8 via SourceForge (source code is included)

What Changed?

● Updated Tesseract OCR library to version 3.05dev (160105 snapshot). You should notice improved OCR accuracy.

cb4960


RE: Capture2Text - Japanese OCR Utility - xtreme1 - 2016-02-03

Any chance of getting this to work with windows touch devices like the surface? Seems windows separates the mouse cursor from the touch and pen cursor, so i can't figure out how to use c2t in the current state Sad


RE: Capture2Text - Japanese OCR Utility - Errol246 - 2016-02-04

(2010-11-26, 8:47 pm)nest0r Wrote: I just tried it for when films are playing—same rules apply for getting it to work as the rules for getting screenshots to work: You must change the playback/output settings to something without a single asterisk next to it.

What subtitled films are you watching? I rarely find any Japanese subtitles for movies I have. It's almost as if they don't exist.


RE: Capture2Text - Japanese OCR Utility - cb4960 - 2016-02-04

(2016-02-03, 11:10 pm)xtreme1 Wrote: Any chance of getting this to work with windows touch devices like the surface? Seems windows separates the mouse cursor from the touch and pen cursor, so i can't figure out how to use c2t in the current state Sad

I'll add touch support if I ever get a Windows touch device and probably not before then.


RE: Capture2Text - Japanese OCR Utility - xtreme1 - 2016-02-10

(2016-02-04, 9:42 pm)cb4960 Wrote:
(2016-02-03, 11:10 pm)xtreme1 Wrote: Any chance of getting this to work with windows touch devices like the surface? Seems windows separates the mouse cursor from the touch and pen cursor, so i can't figure out how to use c2t in the current state Sad

I'll add touch support if I ever get a Windows touch device and probably not before then.

That's fair. What about putting the source on GitHub and I'll just make a PR?


RE: Capture2Text - Japanese OCR Utility - xtreme1 - 2016-03-09

(2016-02-04, 9:42 pm)cb4960 Wrote:
(2016-02-03, 11:10 pm)xtreme1 Wrote: Any chance of getting this to work with windows touch devices like the surface? Seems windows separates the mouse cursor from the touch and pen cursor, so i can't figure out how to use c2t in the current state Sad

I'll add touch support if I ever get a Windows touch device and probably not before then.

Is the source code for this somewhere? Can't seem to find the source code on sourceforge.


RE: Capture2Text - Japanese OCR Utility - Vempele - 2016-03-09

It's in the zip, SourceCode subfolder.