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.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.
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)
2014-09-17, 1:20 pm
2015-12-01, 3:33 pm
Hello,
first Capture2Text make a great Job, thx.
I have a Problem with AHK an hope u can help me.
I Tryd:
when i start the script it pop up an error Message like. That is not a resognized action
Can u help me?
best regards
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
Edited: 2015-12-01, 4:23 pm by ファブリス
2015-12-02, 2:34 am
You're passing the string "x1 x2 y1 y2" as arguments. Try
Capture2Text.exe %x1% %y1% %x2% %y2%
Capture2Text.exe %x1% %y1% %x2% %y2%
Edited: 2015-12-02, 2:35 am
Advertising (Register to hide)
May 16 - 30 : Pretty Big Deal: Save 31% on all Premium Subscriptions!
- Sign up here
2015-12-02, 2:45 pm
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%
2016-01-20, 4:21 am
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!
2016-01-20, 10:39 pm
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
------------------------------------------
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
Edited: 2016-01-20, 10:40 pm
2016-02-03, 11:10 pm
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
2016-02-04, 8:22 am
(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.
2016-02-04, 9:42 pm
(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
I'll add touch support if I ever get a Windows touch device and probably not before then.
2016-02-10, 10:58 pm
(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
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?
2016-03-09, 1:37 am
(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
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.
2016-03-09, 1:48 am
It's in the zip, SourceCode subfolder.
