Python 정규식을 사용하여 두 폴더의 이미지 파일을 연결합니다.

Python 정규식을 사용하여 두 폴더의 이미지 파일을 연결합니다.

아래와 같이 이름이 이미지와 태그인 두 개의 폴더가 있습니다.

다음 코드는 _P 접미사를 사용하여 이미지 폴더의 파일을 태그의 해당 파일과 연결하는 함수를 생성합니다.

images
case_00004_imaging_127.tif 
case_00004_imaging_128.tif 
case_00004_imaging_1290.tif

labels
case_00004_imaging_127_P.tif 
case_00004_imaging_128_P.tif 
case_00004_imaging_129_P.tif

이미지를 관련 파일과 결합하는 기능

path_lbl = path/'labels'
path_img = path/'images'
get_y_fn = lambda x: path_lbl/f'{x.stem}_P{x.suffix}'

다음과 같은 파일이 있는 경우 위 기능을 어떻게 수정할 수 있습니까?

images

case_00004_imaging_127.tif 
case_00004_imaging_128.tif 
case_00004_imaging_1290.tif

labels 
case_00004_segmentation_127.tif 
case_00004_segmentation_128.tif 
case_00004_segmentation_1290.tif

관련 정보