open cv code crops an image 56 times and each cropped image has same metadata as original image

64 Views Asked by At

(I am new to this whole open cv thing) My cropping method is to click a point on the image near the top left where you want the first box and the clicked point will be the starting coordinate for the rest of the cropping. (if there is an easier method you know of, i'd be grateful for ideas)

Problem: my output images are not same in clarity. I checked this using image J and the brightness/contrast analyze function. I tried to find where the reduction is coming from in the code and I think it is from imwrite but I'm not sure; I assume imwrite is messing with the metadata. I also tried using tifffile library but it did not help.

import cv2
import tifffile as tiff

image = cv2.imread('vv.tif', cv2.IMREAD_UNCHANGED)
image_copy = image.copy()

cv2.namedWindow('image')

def crop_images(x, y):
    for i in range(4):
        for j in range(14):
            cropped_image = image[y-260+i*900:y+260+i*900, x-260+j*900:x+260+j*900]

            tiff.imwrite('cropped_image_{0}.tif'.format(i*14+j), cropped_image)

def get_coordinates(event, x, y, flags, param):
    if event == cv2.EVENT_LBUTTONUP:
        crop_images(x, y)
        cv2.imshow('image', image_copy)

cv2.setMouseCallback('image', get_coordinates)

cv2.imshow('image', image)
cv2.waitKey(0)
cv2.destroyAllWindows()

What I want is for the 56 cropped images to have the same brightness/contrast and clarity as original. The original image is over 2Mib so this is a screenshot of it just for reference: screenshot

1

There are 1 best solutions below

0
On

An ImageJ-macro that does what you want:

//imagej-macro "saveTiles.ijm" (Herbie G., 01. May 2023)
run("Select None");
run("Rotate... ", "angle=0.17 grid=1 interpolation=Bilinear");
setTool("point");
waitForUser("Set point-selection to top-left corner of first tile.");
sz=624;
inc=900;
img=File.nameWithoutExtension;
pth=getDir("image")+img+"_CroppedImages";
File.makeDirectory(pth);
setBatchMode(true);
getSelectionBounds(x,y,na,na);
makeRectangle(x,y,sz,sz);
n=14;
for (j=0;j<4;j++) { 
   k=j*inc;
   for (i=0;i<n;i++) {
      setSelectionLocation(x+i*inc,y+k);
      run("Duplicate...","title=cropped");
      saveAs("tiff",pth+File.separator+img+"-"+String.pad(j*n+i+1,2));
      close();
   }
}
run("Select None");
setBatchMode(false);
exit();
//imagej-macro "saveTiles.ijm" (Herbie G., 01. May 2023)

Try first with the provided sample image! Open the sample image in ImageJ and paste the above macro code to an empty macro window (Plugins >> New >> Macro). Then run it.

Please note that the sample image is rotated by about 0.17deg to the left. The above macro first re-rotates the sample image. However, the rotation may be different for other images!

The cropped images are saved to a new directory that is located in the directory of the original image.