Skip to content

Instantly share code, notes, and snippets.

@nishanthbhat07
Created July 14, 2021 18:47
Show Gist options
  • Save nishanthbhat07/41a528c274ec69d511617fd0ac4025b7 to your computer and use it in GitHub Desktop.
Save nishanthbhat07/41a528c274ec69d511617fd0ac4025b7 to your computer and use it in GitHub Desktop.
Cropping Image

Given an image, this function crops the image to a particular size.

Mat crop(){
      Mat m = new Mat();
      Utils.bitmapToMat(bitmap_src, m);
      Mat r = reSizeMat(m);
      return r;
 }

  private Mat reSizeMat(Mat src){
        Rect rect=new Rect(0,0,500,500);
        Mat result=new Mat(src,rect);
        return result;
    }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment