본문 바로가기

이직로그/DSP

빔 포밍 시뮬레이션

https://www.notion.so/28ee750f96398069913ce157c57af5d4?source=copy_link

노션으로 손번역 + 파파고 번역으로 정리해놓았다.

 

목표: 오픈 RF 데이터를 이용해서 DAS 빔포밍 구현

오픈데이터: Insana Lab RF Ultrasound Data (링크)

 

Insana Lab: Ultrasonic Imaging - The University of Illinois at Urbana-Champaign

Insana Lab: Ultrasonic Imaging - The University of Illinois at Urbana-Champaign Insana Lab: RF Ultrasound Data Downloads Patient and gelatin phantom echo data from Siemens Antares™ Ultrasound System Welcome to the downloading site for Phantom and Patient

ultrasonics.bioengineering.illinois.edu

 

입출력

입력: 원시 RF 신호

출력: 2D B-mode 영상(깊이-가로단면)

포인트: 초음파 신호 → 영상화

 

 

내용을 대충 정리해서 첫번째 데이터의 이미지는 다음과 같았다

#MATLAB

imagesc(bm_ima); colormap(gray); colorbar;

xlabel(strcat(num2str(round(lat_px_size*size(bm_ima,2))),' mm'));
ylabel(strcat(num2str(round(axl_px_size*size(bm_ima,1))),' mm'));
set(gca, 'plotboxaspectratio', [ ...
    round(lat_px_size*size(bm_ima,2)), ...
    round(axl_px_size*size(bm_ima,1)), ...
    1]);

title('B-mode Frame 001');