imshow(img)
>> img = imread('E:\images\IMG_0436.jpg');
>> imshow(img)
>> x=rgb2ntsc(img);
>> imshow(img)
>> imshow(x)
>> pkg load image;
>> x(:,:,1)=histeq(x(:,:,1));
>> c2=ntsc2rgb(x);
error: out of memory or dimension too large for Octave's index type
error: called from
ntsc2rgb at line 74 column 7
Can anyone help me solve this dimentional problem I encounter in Octave