I need to crop a image without changing its aspect ratio. i am taking picture from CANON1100D using EDSDK. Captured image
Width = 1920 and Height=1280
so aspect ration is 1.5. but i need picture which aspect ratio is 1.33.
// convert into processing resolution (1600,1200)
Image<Bgr, byte> runtime_frm = new Image<Bgr, byte>(frame.ToBitmap(1600,1200));
// also in bitmap processing
// Bitmap a = new Bitmap(runtime_frm.ToBitmap());
// Bitmap b = new Bitmap(a, new Size(1600,1200));
it resizing the image so the aspect ratio of image is changed but it create stress in image. i need to crop the image (1920x1280) to (1600x1200) in runtime.
how can i do this programmcatically? any idea