if an input image is denoted as I(x,y),what does it mean ? what are the values of x and y ?does it means the size of the image of the values of the image?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
if for example I(x,y) means does it means all the x rows of the image and y columns?
0 Commenti
Risposta accettata
Image Analyst
il 3 Feb 2014
Depends on the context. It could be an equation in a paper and it's specifying some equation for how you calculate the pixel values. Or it could just mean that the image is a 2D array instead of 3D. Anyway, you need to be careful because a lot of times there are functions in MATLAB and elsewhere that refer to (x,y) but it's a very common mistake that people use (x,y) as indexes for their image array. Usually x is the horizontal index and y is the vertical index, but for arrays, it's reversed - the first index is the vertical (rows) and the second is the horizontal (columns). So if you see an equation like that and want to translate it into MATLAB code, remember to swap them and use imageArray(y, x) or imageArray(rows, columns). If you don't, and the image is not square you'll get an index out of range error.
4 Commenti
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!