Description Usage Format Source References Examples
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.
1 | data(data.orbital)
|
matrix of size (9\times 3)
Gonzalez, Rafael C. and Woods, Richard E. (2017) Digital Image Processing (4th ed.). ISBN 0133356728.
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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.