이 질문을 팔로우합니다.
- 팔로우하는 게시물 피드에서 업데이트를 확인할 수 있습니다.
- 정보 수신 기본 설정에 따라 이메일을 받을 수 있습니다.
오류 발생
페이지가 변경되었기 때문에 동작을 완료할 수 없습니다. 업데이트된 상태를 보려면 페이지를 다시 불러오십시오.
이전 댓글 표시
0 개 추천
hi all,
I have thousands of data points in (x y z) format to represent the human eye. Since the human eye is modeled like a sphere, is there any way where i can reduce the number of data points to plot the human eye without any distortion of the shape?
Best Regards, natur3
채택된 답변
Walter Roberson
2012년 9월 15일
1 개 추천
Calculate the linear distance in pixel-widths between the center of the sphere and the edge. Using that as a radius, calculate the surface area in pixels. If you have more points than that surface area, you can prune back and still have full graphic representation at that drawing scale.
You can probably prune even further than that, but the calculation gets more difficult.
댓글 수: 8
Rick
2012년 9월 15일
Hi,
What do you mean by prune back?
Best Regards, natur3
"prune back" is to remove excess points not needed for the graphical representation.
My calculation is that a view of a sphere with a 16 pixel radius corresponds to a surface area of over 3141 pixels. Therefore to the first approximation, you cannot reduce the number of data points from your "thousands" without distortion unless you are displaying the sphere as less than about 30 pixels wide. This is a first approximation only.
Rick
2012년 9월 15일
wow, < 30 pixels wide is very small even though its an approximation.
seems like I can't afford to reduce the data points if i want to avoid distortion.
A brief test with radius 15.5 <= R < 16.5 pixel-widths shows 3338 pixels on the surface, slightly more than 4*Pi*r^2 would predict.
Hi,
sorry for the late reply. Have been trying out and searching for info. I have some questions.
That is, how do I calculate in pixels width?
Whats the difference between "R" and "r"?
By having slightly more pixels on the surface as compared to 4*Pi*r^2, what does it imply?
Best regards, natur3
[X, Y, Z] = ndgrid(-18:18); %pixels
R = sqrt(X.^2 + Y.^2 + Z.^2);
onsurface = 15.5 <= R & R < 16.5;
nnz(onsurface)
gives 3338.
Here, "R" is the actual radius at each integer coordinate triple, whereas in 4*Pi*r^2 the "r" is the desired theoretical radius.
There are going to be only 6 integer coordinate triples whose distance is exactly 16: (-16,0,0), (16,0,0), (0,-16,0), (0,16,0), (0,0,-16), (0,0,16). In order to fill out the sphere, we need to select which integer triples are "effectively" at distance 16. I used the semi-open radius range [15.5, 16.5) in my test, selecting the points whose center lies in a thin shell between 15.5 (inclusive) and 16.5 (exclusive) away from the origin. This slightly over-selects points compared to the ideal 4*Pi*(16)^2 as a larger radius is being included and reachable points within a given distance expand with the cube of the radius. The best matching spherical shell should likely be a little thinner than 16.5 at maximum, possibly around 16.2
Rick
2012년 9월 17일
I see.
So we can cut down the number of points where we take only the "R" which gives us the best matching surface area compared to the desired surface area?
If correct, the range that i used will be more accurate if i used smaller range?
Best regards, natur3
추가 답변 (0개)
카테고리
도움말 센터 및 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!웹사이트 선택
번역된 콘텐츠를 보고 지역별 이벤트와 혜택을 살펴보려면 웹사이트를 선택하십시오. 현재 계신 지역에 따라 다음 웹사이트를 권장합니다:
또한 다음 목록에서 웹사이트를 선택하실 수도 있습니다.
사이트 성능 최적화 방법
최고의 사이트 성능을 위해 중국 사이트(중국어 또는 영어)를 선택하십시오. 현재 계신 지역에서는 다른 국가의 MathWorks 사이트 방문이 최적화되지 않았습니다.
미주
- América Latina (Español)
- Canada (English)
- United States (English)
유럽
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
