필터 지우기
필터 지우기

What is wrong with this code?

조회 수: 1 (최근 30일)
Avinash Bhatt
Avinash Bhatt 2019년 5월 2일
I am using mkpp() command to construct the polynomial of 'cameraman.tif' but getting the error-
"Error using mkpp (line 62)
The requested number of polynomial pieces, 3, is incompatible with the proposed size, [1],
of a coefficient and the number, 1, of scalar coefficients provided."
MATLAB code
clc
close all
clear all
% Read an image
X=imread('cameraman.tif');
figure,imshow(X);
[r c noc]=size(X);
% Gray Scale Conveersion
if noc > 1
Xn=rgb2gray(X);
else
Xn=X;
end
% Extracting Histogram from image
figure,imhist(X);
% Extracting pixel intensity values
i=1;
while i ~= 256
for j=1:c
z=X(i,j);
disp(z);
end
i=i+1
end
breaks=[70 80 90 100]
%for b=1:z
% X(b)=X(b)+1;
% disp(X(b));
%end
pp=mkpp(breaks,X(i,j));
Please help me to rectify the error.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Polynomials에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by