finding inverse exponential value
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
how to calculate the equation
e^-1(i,j)
where i and j are pixel values
0 Commenti
Risposte (1)
Adam
il 22 Ott 2019
If i and j are pixel values then you must have an image to which they are applied, e.g. im, in which case simply
exp( -im(i,j) )
works.
0 Commenti
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!