How to resize image with imagebox emgucv?
c#-3.0, face-detection
Solution
// To get orginal image from the OpenFileDialog
Image<Bgr, Byte> captureImage = new Image<Bgr, byte>(openImageFileDialog.FileName);
// To resize the image
Image<Bgr, byte> resizedImage = captureImage.Resize(width, height, Emgu.CV.CvEnum.INTER.CV_INTER_LINEAR);
Hope it helps.
Problem
I have image in folder image how resize image with imagebox in emgucv at open image? thnx..