spdat.orbital: Normal Vectors to the Orbital Planes of the 9 Planets

Description Usage Format Source References Examples

Description

Lena is probably one of the most well-known example in image processing and computer vision. Well, here is a brief introduction on the story of Lena.

Usage

1
data(data.orbital)

Format

matrix of size (9\times 3)

Source

USC SIPI Image Database

References

Gonzalez, Rafael C. and Woods, Richard E. (2017) Digital Image Processing (4th ed.). ISBN 0133356728.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
## load the data
data(spdat.orbital)

## visualize using multidimensional scaling
dmat = sp.pdist(spdat.orbital)
mds2 = DAS::cmds(dmat, ndim=2)

x = mds2$embed[,1]
y = mds2$embed[,2]

plot(x, y, pch=19, main="orbital normal vectors",
     xlim=c(min(x)-0.05,max(x)+0.05), ylim=c(min(y)-0.05,max(y)+0.05))
text(x+0.01, y+0.01, 1:9)

kyoustat/RiemSphere documentation built on April 13, 2020, 10:04 a.m.