How to use Python to Crop Text Blocks from a two or 3 column list of names-addressesConvert two lists into a dictionary in PythonHow to randomly select an item from a list?How do I remove an element from a list by index in Python?How do I trim whitespace from a Python string?How do I get the number of elements in a list in Python?How do I concatenate two lists in Python?How can I reverse a list in Python?How to remove a key from a Python dictionary?Delete column from pandas DataFrame by column nameGet list from pandas DataFrame column headers
Can a person still be an Orthodox Jew and believe that the Torah contains narratives that are not scientifically correct?
What color to choose as "danger" if the main color of my app is red
Why does string strummed with finger sound different from the one strummed with pick?
Why didn't Daenerys' advisers suggest assassinating Cersei?
How to generate a triangular grid from a list of points
Is it possible to pass a pointer to an operator as an argument like a pointer to a function?
Non-African Click Languages
Roman Numerals Equation 2
Why would company (decision makers) wait for someone to retire, rather than lay them off, when their role is no longer needed?
What are the effects of eating many berries from the Goodberry spell per day?
Why doesn't Iron Man's action affect this person in Endgame?
Have there been any examples of re-usable rockets in the past?
Why are there five extra turns in tournament Magic?
Who is frowning in the sentence "Daisy looked at Tom frowning"?
Can I pay my credit card?
Why is vowel phonology represented in a trapezoid instead of a square?
Why is the A380’s with-reversers stopping distance the same as its no-reversers stopping distance?
How can we delete item permanently without storing in Recycle Bin?
Cycling to work - 30mile return
Is there an academic word that means "to split hairs over"?
Iterate lines of string variable in bash
Do we see some Unsullied doing this in S08E05?
How can I fix the label locations on my tikzcd diagram?
Solenoid fastest possible release - for how long should reversed polarity be applied?
How to use Python to Crop Text Blocks from a two or 3 column list of names-addresses
Convert two lists into a dictionary in PythonHow to randomly select an item from a list?How do I remove an element from a list by index in Python?How do I trim whitespace from a Python string?How do I get the number of elements in a list in Python?How do I concatenate two lists in Python?How can I reverse a list in Python?How to remove a key from a Python dictionary?Delete column from pandas DataFrame by column nameGet list from pandas DataFrame column headers
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I am using Python, pytesseract, PIL, and numpy to try and crop each text block from a page containing a two columns, numbered list of names. I have already turned the pdf into jpg, cropped the jpg in half to separate the two columns and dumped the pixels from each crop into a numpy array. is there a module or something out there that would help me identify strips of double spaced sized white space and crop along that horizontal line. From there it will be easy to dump into pytesseract and get exactly the text I'm looking for every time...
This is my first question on Stack Overflow please be gentle. If you know of a module that would make this simple or if you know of an approach to identify vertical lines of white-space I would really appreciate a push in the right direction.
python image text crop
add a comment |
I am using Python, pytesseract, PIL, and numpy to try and crop each text block from a page containing a two columns, numbered list of names. I have already turned the pdf into jpg, cropped the jpg in half to separate the two columns and dumped the pixels from each crop into a numpy array. is there a module or something out there that would help me identify strips of double spaced sized white space and crop along that horizontal line. From there it will be easy to dump into pytesseract and get exactly the text I'm looking for every time...
This is my first question on Stack Overflow please be gentle. If you know of a module that would make this simple or if you know of an approach to identify vertical lines of white-space I would really appreciate a push in the right direction.
python image text crop
After more research i discovered a number of methods outlined online as well as some code using opencv. Those methods were all nice and sophisticated and could do all kinds of cool things but my specific problem was much simpler. I just took the pixels and averaged each rows values and when I found 50 consecutive rows with an average greater than 254.6 then I had found the white space I was looking for. Kind of simple after I thought about it a bit longer.
– MikeE
Mar 24 at 13:39
add a comment |
I am using Python, pytesseract, PIL, and numpy to try and crop each text block from a page containing a two columns, numbered list of names. I have already turned the pdf into jpg, cropped the jpg in half to separate the two columns and dumped the pixels from each crop into a numpy array. is there a module or something out there that would help me identify strips of double spaced sized white space and crop along that horizontal line. From there it will be easy to dump into pytesseract and get exactly the text I'm looking for every time...
This is my first question on Stack Overflow please be gentle. If you know of a module that would make this simple or if you know of an approach to identify vertical lines of white-space I would really appreciate a push in the right direction.
python image text crop
I am using Python, pytesseract, PIL, and numpy to try and crop each text block from a page containing a two columns, numbered list of names. I have already turned the pdf into jpg, cropped the jpg in half to separate the two columns and dumped the pixels from each crop into a numpy array. is there a module or something out there that would help me identify strips of double spaced sized white space and crop along that horizontal line. From there it will be easy to dump into pytesseract and get exactly the text I'm looking for every time...
This is my first question on Stack Overflow please be gentle. If you know of a module that would make this simple or if you know of an approach to identify vertical lines of white-space I would really appreciate a push in the right direction.
python image text crop
python image text crop
asked Mar 23 at 16:34
MikeEMikeE
62
62
After more research i discovered a number of methods outlined online as well as some code using opencv. Those methods were all nice and sophisticated and could do all kinds of cool things but my specific problem was much simpler. I just took the pixels and averaged each rows values and when I found 50 consecutive rows with an average greater than 254.6 then I had found the white space I was looking for. Kind of simple after I thought about it a bit longer.
– MikeE
Mar 24 at 13:39
add a comment |
After more research i discovered a number of methods outlined online as well as some code using opencv. Those methods were all nice and sophisticated and could do all kinds of cool things but my specific problem was much simpler. I just took the pixels and averaged each rows values and when I found 50 consecutive rows with an average greater than 254.6 then I had found the white space I was looking for. Kind of simple after I thought about it a bit longer.
– MikeE
Mar 24 at 13:39
After more research i discovered a number of methods outlined online as well as some code using opencv. Those methods were all nice and sophisticated and could do all kinds of cool things but my specific problem was much simpler. I just took the pixels and averaged each rows values and when I found 50 consecutive rows with an average greater than 254.6 then I had found the white space I was looking for. Kind of simple after I thought about it a bit longer.
– MikeE
Mar 24 at 13:39
After more research i discovered a number of methods outlined online as well as some code using opencv. Those methods were all nice and sophisticated and could do all kinds of cool things but my specific problem was much simpler. I just took the pixels and averaged each rows values and when I found 50 consecutive rows with an average greater than 254.6 then I had found the white space I was looking for. Kind of simple after I thought about it a bit longer.
– MikeE
Mar 24 at 13:39
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55315942%2fhow-to-use-python-to-crop-text-blocks-from-a-two-or-3-column-list-of-names-addre%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55315942%2fhow-to-use-python-to-crop-text-blocks-from-a-two-or-3-column-list-of-names-addre%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
After more research i discovered a number of methods outlined online as well as some code using opencv. Those methods were all nice and sophisticated and could do all kinds of cool things but my specific problem was much simpler. I just took the pixels and averaged each rows values and when I found 50 consecutive rows with an average greater than 254.6 then I had found the white space I was looking for. Kind of simple after I thought about it a bit longer.
– MikeE
Mar 24 at 13:39