java - what types of image processing i need to make image clear for OpenCV? -


i'm working on android application capture image , detect page number using ocr, made processing using opencv on image , i'am stuck @ point 1![see image]

so next step new image contains numbers ocr??

since numbers in same position, easiest way select them select portion of image, this:

mat1b gray = imread("pat_to_image", imread_grayscale); rect roi(285, 630, 130, 100);   // manually selected values mat1b numbers = gray(roi).clone(); 

numbers this:

enter image description here


Comments

Popular posts from this blog

python - No exponential form of the z-axis in matplotlib-3D-plots -

c# - "Newtonsoft.Json.JsonSerializationException unable to find constructor to use for types" error when deserializing class -

Why does a .NET 4.0 program produce a system.unauthorizedAccess error on a Windows Server 2012 machine with .NET 4.5 installed? -