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');'이직로그 > DSP' 카테고리의 다른 글
| 빔포밍 시뮬레이션 2 - 첫번째 프레임 이미지 처리 (0) | 2025.11.13 |
|---|---|
| 빔포밍 시뮬레이션 1 - 첫번째 프레임 찾기 (0) | 2025.11.12 |
| b-mode 에 관하여 (0) | 2025.11.06 |
| 힐버트 변환(Hilbert Transform) - 기초 (0) | 2025.10.29 |
| 빔포밍 시뮬레이션 - 매트랩 역설계 (0) | 2025.10.23 |