Community Profile

vasantha malairamar


2017 年からアクティブ

統計

  • Thankful Level 1

バッジを表示

Content Feed

表示方法

質問


how to use AND operation
if (eucli<=0.1980) && (eucli>=0.1990) disp('Happy'); end Operands to the || and && operators must be convertible to l...

7年弱 前 | 1 件の回答 | 0

1

回答

質問


find the euclidean distance
for bd=1:144 for fd=1:128 D =(sum((fe(bd,fd)-U(bd,fd)).^2)); s=sqrt(D); ...

7年弱 前 | 2 件の回答 | 0

2

回答

質問


how to convert mat2cell for 144X128
d=mat2cell(fe,[1],[1]);

7年弱 前 | 1 件の回答 | 0

1

回答

質問


convert grayscale image into RGB
im = imread('a.jpg'); rgb = ind2rgb(gray2ind(im,180),summer(100)); figure,imshow(rgb);

7年弱 前 | 1 件の回答 | 0

1

回答

質問


lsb substitution tohide the data in another data
Enter the no of LSB bits to be subsituted- 5 Error using bitcmp ASSUMEDTYPE must be an integer type name. Error in Steg (li...

7年弱 前 | 1 件の回答 | 0

1

回答

質問


matrix multiplication in matlab
XYZ=[0.5141 0.3239 0.1604;0.2651 0.6702 0.0641;0.0241 0.1228 0.8444]; for i=1:768 for h=1:768 nf=mR(...

約7年 前 | 1 件の回答 | 0

1

回答

質問


HOW TO CONVERT MATRIX INTO IMAGE
i'm having 8x8x96 matrix convert into images or if any other way to apply the value in images...

約7年 前 | 1 件の回答 | 0

1

回答

質問


how to find pixel value of an image
imread('a.jpg'); [r c]=size(A);pixel

約7年 前 | 4 件の回答 | 0

4

回答

質問


how to calculate RMSE value of tile images after rotatingthe images
imrotate(a,45)

約7年 前 | 0 件の回答 | 0

0

回答

質問


how to chage/replace the one matrix value into another matrix value
for it=1:6144 cd(it)=cdt(it); end

約7年 前 | 1 件の回答 | 0

1

回答

質問


We have 8*8*96 matrix and we want to convert this matrix into an image. How to convert it?
imwrite(newcolor,'output','bmp'); %we used this function but it went wrong Error using writebmp (line 27) Invalid dimens...

約7年 前 | 1 件の回答 | 0

1

回答

質問


matrix dimensions must agree
Error using ./ Matrix dimensions must agree. Error in secure>pushbutton2_Callback (line 237) qc=tstval./stval...

約7年 前 | 1 件の回答 | 0

1

回答

質問


Index exceeds matrix dimensions. Error in nv (line 21) R = BL(i,j,1);
a=imread('Fig1(a).jpg'); % re=imresize(a,[768 768]); % [r,c,numberofpixels]=size(re); J = imresize(a, [768 786]); [r c]=siz...

約7年 前 | 1 件の回答 | 0

1

回答

質問


how to divide rgb image into blocks using for loop and find the rgb value for each block
bs=8; % M=zeros(96,96,3); row=r/bs; col=c/bs; a=1; k=0; l=0; b=1; p=1; noofp=96; mR=zeros(768,...

約7年 前 | 1 件の回答 | 0

1

回答

質問


Index exceeds matrix dimensions.
for j=1:96 %Display the 3color channel for k=1:96 mR=re(j,k,1); mG=re(j,k,2); ...

約7年 前 | 1 件の回答 | 0

1

回答