PIV-OH Overlap

조회 수: 6 (최근 30일)
Francesco Pignatelli
Francesco Pignatelli 2022년 3월 17일
답변: Francesco Pignatelli 2022년 7월 26일
Hello all,
I am not new with Matlab but I am quite unexpert on dealing with imaging and overlapping.
I have a vector field from my PIV results and I want to overlap it on my PLIF image. Thus, I have a 3D matrix for the PIV (x,y,velocity) that I plot with quiver and a 2D image for PLIF (it is a .SPE file). When I overlap these just by using:
quiver(x,y,x_velocity, y_velocity)
hold on;
imagesc(PLIF_data)
I do not have a good math since the scales are different. How can I have the same scales for these two sets of data?
I do not think it should be a tough task for most of you but I am quite puzzled 'cause I am litterally brand new to this field
Thank you so much

채택된 답변

Francesco Pignatelli
Francesco Pignatelli 2022년 7월 26일
I have sorted it out.

추가 답변 (1개)

yanqi liu
yanqi liu 2022년 3월 18일
yes,sir,may be use
quiver(x,y,x_velocity, y_velocity)
hold on;
h=imshow(PLIF_data,[])
set(h,'AlphaData',0.5)
  댓글 수: 1
Francesco Pignatelli
Francesco Pignatelli 2022년 3월 18일
Hello Yanq
Unfortunately it does not work.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by