Last active
November 19, 2024 18:45
-
-
Save jendelel/3a8e768a8eb9345d49f2a82d02946122 to your computer and use it in GitHub Desktop.
Load INBREAST ROIs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from skimage.draw import polygon | |
import numpy as np | |
import plistlib | |
def load_inbreast_mask(mask_path, imshape=(4084, 3328)): | |
""" | |
This function loads a osirix xml region as a binary numpy array for INBREAST | |
dataset | |
@mask_path : Path to the xml file | |
@imshape : The shape of the image as an array e.g. [4084, 3328] | |
return: numpy array where positions in the roi are assigned a value of 1. | |
""" | |
def load_point(point_string): | |
x, y = tuple([float(num) for num in point_string.strip('()').split(',')]) | |
return y, x | |
mask = np.zeros(imshape) | |
with open(mask_path, 'rb') as mask_file: | |
plist_dict = plistlib.load(mask_file, fmt=plistlib.FMT_XML)['Images'][0] | |
numRois = plist_dict['NumberOfROIs'] | |
rois = plist_dict['ROIs'] | |
assert len(rois) == numRois | |
for roi in rois: | |
numPoints = roi['NumberOfPoints'] | |
points = roi['Point_px'] | |
assert numPoints == len(points) | |
points = [load_point(point) for point in points] | |
if len(points) <= 2: | |
for point in points: | |
mask[int(point[0]), int(point[1])] = 1 | |
else: | |
x, y = zip(*points) | |
x, y = np.array(x), np.array(y) | |
poly_x, poly_y = polygon(x, y, shape=imshape) | |
mask[poly_x, poly_y] = 1 | |
return mask |
jasminjahanpuspo
commented
Jan 31, 2023
via email
You can do one simple things.
1) Make subset of images and do the implementation.
2) Do email the dataset creator(INbreast). These dataset contains equal
DICOM along with their ROI.
3) Their are multiple DDSm dataset. Find Mini DDSM dataset(creator ABBAS
CHEDDA) from kaggle.
Jasmin Jahan Puspo
B.Sc.(Engg.) in CSE,NEUB
Phone: +8801842429020
…On Tue, Jan 31, 2023 at 9:47 AM Satwik Sunnam ***@***.***> wrote:
***@***.**** commented on this gist.
------------------------------
Hello @jasminjahanpuspo <https://github.com/jasminjahanpuspo> I'm trying
to replicate the work of this project
https://github.com/Holliemin9090/Mammographic-mass-CAD-via-pseudo-color-mammogram-and-Mask-R-CNN
I'm using INBREAST Dataset.
For dataset preparation, I've tried the conversion of images and ROIs
1. Completed the Conversion of DICOM to PNG of the images.
2. Completed the conversion of XML files to PNG/JPG images.
My doubt is
1. I've more DICOM images when compared to the number of ROIs images,
how to mitigate the problem.
Is there any suggestion from your side and also implementing the GitHub
mentioned above?
Thanks & Regards,
S S
—
Reply to this email directly, view it on GitHub
<https://gist.github.com/3a8e768a8eb9345d49f2a82d02946122#gistcomment-4454124>
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AMKVYW5WMSJ6FU6IWX376C3WVCDMXBFKMF2HI4TJMJ2XIZLTSKBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DFQKSXMYLMOVS2I5DSOVS2I3TBNVS3W5DIOJSWCZC7OBQXE5DJMNUXAYLOORPWCY3UNF3GS5DZVRZXKYTKMVRXIX3UPFYGLK2HNFZXIQ3PNVWWK3TUUZ2G64DJMNZZDAVEOR4XAZNEM5UXG5FFOZQWY5LFVA4TAOBYGEZTOMFHORZGSZ3HMVZKMY3SMVQXIZI>
.
You are receiving this email because you were mentioned.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>
.
Hello, I am using this code. It's pretty much easy to understand but somehow I get all values zeros when run on Colab. Here is a screenshot of my code. Any kind of help will be appreciated.
Hi @jasminjahanpuspo were you able to resolve this? As I also tried the code and I run into the same issue.
Hello, I am using this code. It's pretty much easy to understand but somehow I get all values zeros when run on Colab. Here is a screenshot of my code. Any kind of help will be appreciated.
Hi @jasminjahanpuspo were you able to resolve this? As I also tried the code and I run into the same issue.
@shubham-pipada Thank you for asking! Unfortunately, I wasn't able to solve this issue yet.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment