I have 1 function image processing call is: automatic license plate recognition
.
But this function process image only true when horizontal images.
I want image auto rotate each level like rotate 1" > not success, 2" > not success, 3" > ok, success and break foreach
.
I just think.
bool processimageflag = false; //processimage represent function.
private void RotateImage()
{
foreach(...)
{
if(processimageflag == true)
{
rotatefunction();
}
}
}
private void ProcessImage()
{
return processimageflag;
}
I don't know write function RotateImage()
.
Until function process image success.
Thank you.