I want to extract findings
and filename
columns from below dataframe.
For extracting images I use manual path to images having total number of 7467 images.
JavaScript
x
2
1
path = "/content/drive/MyDrive/iuxray/images/images_normalized"
2
Next I use the following code for extracting findings
and images.
JavaScript
1
8
1
for images in os.listdir(path):
2
for row in df["findings"]:
3
if (images.endswith(".png") or images.endswith(".jpg")
4
or images.endswith(".jpeg")):
5
caption = row
6
image_path = os.path.join(path, images)
7
image_path_to_caption[image_path].append(caption)
8
But I want to extract images from filename
something like this for row in df[filename]
.
Advertisement
Answer
For future posts, please paste the data in a form that can be more easily used in an example.
I think this is what you are trying to accomplish? (Try to resist the use of for loops):
JavaScript
1
17
17
1
import pandas as pd
2
columns = ['uid','MeSH','Problems','image','indication','comparison','findings','impression','filename','projection']
3
df = pd.DataFrame([
4
[1,'normal','normal','Xray Chest PA and Lateral','Positive TB test',None,'The cardiac silhouette and mediastinum size ar...','Normal chest x-XXX.','1_IM-0001-4001.dcm.png','Frontal'],
5
[1,'nor,al','normal','Xray Chest PA and Lateral','Positive TB test',None,'The cardiac silhouette and mediastinum size ar...','Normal chest x-XXX.','1_IM-0001-3001.dcm.png','Lateral'],
6
[2,'Cardiomegaly/borderline;Pulmonary Artery/enlarged','Chest,2 views. frontal and lateral','Cardiomegaly;Pulmonary Artery','Preop bariatric surgery.',None,'Borderline cardiomegaly. Midline sternotomy XX...','No acute pulmonary findings.','2_IM-0652-1001.dcm.png','Frontal']
7
], columns=columns)
8
extensions = ('.png','.jpg','.jpeg')
9
path = '/conent/drive/MyDrive/iuxray/images/images_normalized'
10
images = df[df['filename'].str.endswith(extensions)]['filename']
11
paths = [f'{path}/{i}' for i in images]
12
13
paths
14
['/conent/drive/MyDrive/iuxray/images/images_normalized/1_IM-0001-4001.dcm.png',
15
'/conent/drive/MyDrive/iuxray/images/images_normalized/1_IM-0001-3001.dcm.png',
16
'/conent/drive/MyDrive/iuxray/images/images_normalized/2_IM-0652-1001.dcm.png']
17