*/
int cCannyWidth = cWidth / 6;
Gray8CannyHoriz canny = new Gray8CannyHoriz(cCannyWidth);
/* Now apply the edge detection to the cropped mage
*/
canny.push(imageCropped.clone());
/* And obtain the result
*/
imageResult = canny.getFront();
if (!(imageResult instanceof Gray8Image)) {
throw new jjil.core.Error(