Make 3d sphere plot from net of sphere
    조회 수: 2 (최근 30일)
  
       이전 댓글 표시
    
Hey I had 360*180 matrix that hold bw image present field of view of camera (azimuth and elevation) I want the plot the field of view on 3d sphere plot...How can i do it?Try to use sph2cart, but get confused... thanks.
댓글 수: 0
채택된 답변
  KSSV
      
      
 2021년 9월 15일
        clc; clear all ;
I = imread('cameraman.tif') ; 
[m,n] = size(I) ; 
[X,Y,Z] = sphere(m-1,n-1) ; 
surf(X,Y,Z,flipud(I),'FaceColor','texturemap','EdgeColor','none');
colormap(gray)
댓글 수: 4
추가 답변 (0개)
참고 항목
카테고리
				Help Center 및 File Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


