Plot an interpolated plane in between two planes

조회 수: 4 (최근 30일)
Tariqul
Tariqul 2018년 7월 31일
편집: Sumayyah Alhydary 2021년 4월 21일
I have two ground truth depth images (image 1 and image 2) which are located at different distances (150 cm and 203 cm) from the camera. Both the depth images are perpendicular to the camera. I am uploading here the original images.
I'd like to get a middle image by interpolation which will be in between these images (see the illustration).
Illustration:
To do that, I have first cropped the object from the images and then planning to use scatteredinterpolant function to get the interpolated plane in between these two images. However, I am struggling how exactly should I define the interpolation to get the interpolated plane.
I have attached here the depth images and the cropped images and a bit of codes which I did so far.
Any suggestions?
Note: I already have a middle ground truth depth image which is located at 178 cm. I need the interpolated plane so that I can compare the accuracy of the ground truth image with the interpolated plane/surface.
thresholdValue = 10;
originalImage1 = imread('depth_153.png');
originalImage2 = imread('depth_203.png');
binaryImage1 = originalImage1 > thresholdValue;
binaryImage2 = originalImage2 > thresholdValue;
EdgeMeasurements1 = regionprops(binaryImage1, originalImage1, 'all');
EdgeMeasurements2 = regionprops(binaryImage2, originalImage2, 'all');
croppedImage1 = imcrop(originalImage1, EdgeMeasurements1.BoundingBox);
croppedImage2 = imcrop(originalImage2, EdgeMeasurements2.BoundingBox);
x = 1:size(croppedImage1,1);
y = 1:size(croppedImage1,2);
[X,Y] = meshgrid(x,y);

채택된 답변

KSSV
KSSV 2018년 7월 31일
thresholdValue = 10;
originalImage1 = imread('depth_153.png');
originalImage2 = imread('depth_203.png');
binaryImage1 = originalImage1 > thresholdValue;
binaryImage2 = originalImage2 > thresholdValue;
I = cat(3,binaryImage1,binaryImage2) ;
[nx,ny] = size(binaryImage1) ;
[X,Y,D] = ndgrid(1:nx,1:ny,[153 203]) ;
[Xi,Yi,Di] = ndgrid(1:nx,1:ny,[153 178 203]) ;
Ii = interpn(X,Y,D,double(I),Xi,Yi,Di) ;
  댓글 수: 5
Tariqul
Tariqul 2018년 8월 1일
편집: Tariqul 2018년 8월 1일
I am getting this interpolated plane with your suggested method. I used the following codes as you suggested.
I = cat(3,originalImage1,originalImage2) ;
[nx,ny] = size(originalImage1) ;
[X,Y,D] = ndgrid(1:nx,1:ny,[1124 2229]) ;
[Xi,Yi,Di] = ndgrid(1:nx,1:ny,[1124 1623 2229]) ;
Ii = interpn(X,Y,D,double(I),Xi,Yi,Di) ;
imshow(Ii(:,:,1:3));
Interpolated image:
The middle white part has the dimension of the 2nd original image and the yellow part has the dimension of the 1st original image. By looking at the interpolated plane, I found that it has 2 different levels of intensity values. The small white part has the intensity values close to 1623 which matches with what we define here [1124 1623 2229] in the code:
[Xi,Yi,Di] = ndgrid(1:nx,1:ny,[1124 1623 2229]) ;
But the outside region of the white part has different value such as 621, 615 etc which are not as expected. Please look at the 3D plot below.
3D plot of the interpolated image:
I was expecting the interpolated plane to be in between the values of the original images and the plane would have a dimension smaller than the near image (originalImage1) and bigger than the far image (originalImage2) similar to the illustration I uploaded previously.
Any suggestions?
Sumayyah Alhydary
Sumayyah Alhydary 2021년 4월 21일
편집: Sumayyah Alhydary 2021년 4월 21일
Thanks for your discussion it's very helpful.
I'm getting this error when I run the code:
Error using griddedInterpolant
The sample points arrays must have the same size as the sample values array.
I think the problem is with the way I'm reading the image, so my I = 250 x 250 x 6 while x,y,z are of size 250 x 250 x 2. How can I fix that if I'm using a grayscaled images? ( I don't want the colors to be either black or white, I want them to have different gray values).
how can I fix that?
Thanks in advance :)

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by