medical

Cropping in OpenCV return images rotated 90 degrees

Cropping in OpenCV return images rotated 90 degrees Question: I want to crop images according to their right frame. I have about 10000 of hand X-ray images to preprocess, and what I have done so far: Apply Gaussian Blur and Threshold (Binary + Otsu) on the image. Apply dilation to get a single object (in …

Total answers: 1

Straigthening hand images by drawing a line through the middle finger in OpenCV

Straigthening hand images by drawing a line through the middle finger in OpenCV Question: I want to straighten the hand in the image based on the middle finger. I have about 10000 of these hand X-ray images to preprocess. The preprocess I did so far: Apply Gaussian Blur and Threshold (Binary + Otsu) on the …

Total answers: 1

Select area (square) with specific measure from an image using skimage python

Select area (square) with specific measure from an image using skimage python Question: I’m trying to extract 3 areas from the image (lungs image) these areas are indicated in the soft tissues, each area will be a square of specific height and width e.g. 10mm for width and height, as shown in the image below, …

Total answers: 1

expected conv2d to have 4 dimensions, but got array with shape

expected conv2d to have 4 dimensions, but got array with shape Question: I am trying to perform a convolutional network on some medical images that have nifti format, using Keras. When I try to fit the model like this: model.fit(X_train, Y_train, batch_size=batch_size, epochs = n_epoch, validation_data=(X_test, Y_test)) I get this error: expected conv2d_171 to have …

Total answers: 1