mars_screw: Intensity and saturation values of a picture from mars.

Description Usage Format Source Examples

Description

A dataset containing the Intensity and Saturation values of a picture from Mars taken from Rover Curiosity.

Usage

1

Format

A list containing information about pixels of a picture form mars mainly containing red sand and metal form Rover itself. List include

Source

https://www.nasa.gov/mission_pages/msl/multimedia/pia16225.html

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
# upload matrix 
A <- mars_screw$SI_matrix;
B <- mars_screw$geographic_matrix
screw_index <- mars_screw$screw_index
## looking for the brightest cells
maximun_at_each_cell<- apply(A[ ,1:64], 1, max)
ten_brightest_cells <-order(maximun_at_each_cell, decreasing=TRUE)[1:10]

## plot locations where the ten brightest cells are.
plot(B, pch=19 )
points(B[ten_brightest_cells, ], pch=19,col="yellow" )

## plot locations where the screw are.
points(B[screw_index, ], pch=19,col="blue" )

ktaucenters documentation built on Aug. 3, 2019, 9:03 a.m.