i am executing the code below and getting the error"Index exceeds matrix dimensions. Error in principale_peppers (line 7) g=X(:,:,2)/255" can anyone help.

1 visualización (últimos 30 días)
X=imread('d:\images\peppers.bmp'); X=double(X); [l1,l2,l3]=size(X);
r=X(:,:,1)/255; g=X(:,:,2)/255; b=X(:,:,3)/255;

Respuesta aceptada

Luuk van Oosten
Luuk van Oosten el 2 de Mzo. de 2015
Have a look here at the answer, or any other previous answered questions regarding 'index exceeds matrix dimensions' problems around this forum.
You are trying to access a value in your matrix that does not exists.

Más respuestas (0)

Categorías

Más información sobre Matrix Indexing en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by