2020-01-29 03:45:08 -0600 | received badge | ● Popular Question (source) |
2019-02-12 20:37:30 -0600 | received badge | ● Popular Question (source) |
2014-03-22 02:04:09 -0600 | received badge | ● Student (source) |
2013-12-11 01:17:36 -0600 | commented answer | how to select a specific bounding box Yeah pyro, I've realized this solution gives me some false positives. I guess I would do any other thing to avoid these false positives. And how can I pass the bounding boxes to the function for computing the histogram, because they are not Mat, as you can see in the code. Thanks |
2013-12-10 03:15:38 -0600 | commented answer | how to select a specific bounding box I'm trying to use an OCR to recognize these characters from inside the license plate that is the reason I want to select only the bounding box containing characters, to run after an OCR engine. Anyway I think I've found one way to select it. It has worked with some pictures, not only this. I have calculated the aspect ratio of a bounding boxes, and if it is between 3 and 6 then is a possible license plate. Thanks pyro. |
2013-12-10 01:17:03 -0600 | asked a question | how to select a specific bounding box Hi everybody,
I'm doing a program to obtain bounding boxes and once obtained these bounding boxes I would like to select only one of these. Is there any way to select only the desired bounding box.
For example, in the attached picture, I would like to select only the bounding box where is a license plate inside, but I don't know how can I do that.
Any help?
Thanks in advance.
} |
2013-12-05 04:09:32 -0600 | asked a question | how to draw rectangles from find countours Hi all, I'm doing a project where i obtain contours of an image and draw the rectangle of minimum area which contains that contours. Now I would like to draw only some rectangles, I would like to avoid rectangles with small area for having a better detection, but I don't know how to draw only the greater rectangles obtained. As you can see in the attached image I would like to draw only the rectangles that contain some character. Some help would be appreciated. Thanks in advance. I attach the code I have for finding contours and draw the rectangles, as well as the image obtained.Mat encuentraRect(Mat imagen){ blur(imagen,imagen,Size(3,3)); }
|
2013-10-30 08:11:25 -0600 | answered a question | OCR Character Segmentation for cursive handwriting Hi 123ezone, I am doing a license plate recognition using an OCR too and at this moment I'd like to use horizontal projection. Could you tell me please how have you done it? Thanks |
2013-10-30 04:56:26 -0600 | asked a question | Tesseract engine does not work properly Hi all,
I am trying to write a software to recognize some text from an image, but when I binarize the image and I call to tesseract engine, this does not recognize text in image.
Does somebody know why text it is not recognized? Must I do something extra to recognize?
I leave the image I am trying to recognize text.
I've also tried with another image like this: And the output is also wrong. Output: "L I" Could anybody help me? Thanks in advance. |
2013-10-01 07:20:03 -0600 | commented question | How to take an snapshot from a ethernet cam? I know cuenta is not the same value now, I have changed that just after post the code here. |
2013-10-01 06:49:51 -0600 | received badge | ● Scholar (source) |
2013-10-01 06:49:49 -0600 | received badge | ● Supporter (source) |
2013-10-01 06:49:47 -0600 | received badge | ● Critic (source) |
2013-10-01 05:30:15 -0600 | commented question | How to take an snapshot from a ethernet cam? Thank you berak! It works fine! |
2013-10-01 05:06:17 -0600 | asked a question | How to take an snapshot from a ethernet cam? Hello everybody, I've got a code where I show a video from a camera, but now I want to take a snapshot when a key is pressed, but I don't know exactly what function I need to use and how. Could anyone help me please? Thanks. I post my code. int main( ) { }Hi again, The code to take snapshots it works fine, I can take a photo when a key is pressed, but now I'm trying to recognize text in that photo using tesseract engine and I'm having an error like this: Error: Illegal min or max specification! signal_termination_handler:Error:Signal_termination_handler called:Code 5002 I've only just added the code for text recognition within the waitkey if as follows: if (waitKey(10) >= 0){ Any idea of that error???? Thanks |
2013-09-30 01:10:55 -0600 | commented question | How to link tesseract to Eclipse in Ubuntu 12.04 ?? What are the leptonica libs?? Could you tell me what libraries I need to add? |
2013-09-30 00:32:40 -0600 | received badge | ● Editor (source) |
2013-09-27 06:27:40 -0600 | asked a question | How to link tesseract to Eclipse in Ubuntu 12.04 ?? Hi everybody!, I am trying to link the tesseract libraries to Eclipse but I do not how to do it. I have downloaded and installed tesseract via command console. Then I have configured opencv to use it in Eclipse, but I do not know how to link tesseract to use it. Could anyone help me? What I have to do? Thanks in advance!
I post an image of errors I have.
I think I should add the libraries to the project properties, but I don't know what are the libraries. |