How to predict each pixel of image using regression model?

조회 수: 9 (최근 30일)
Zoe
Zoe 2017년 7월 7일
댓글: Philku Lee 2021년 6월 28일
I have the following code that loops over each pixel of a .tif image to predict responses using ensemble of regression models.
X is a 753*6 numeric array which has 6 variables (also columns), and 753 rows. NR = 1380, NC = 1464.
I understand the error's meaning (The dimensions on both sides do not match each other), but I really do not know how to fix it. I imagine the result I need should be a 1380*1464 numeric array.
a = imread('LE71250521999276_b1.tif')
[NR,NC] = size(a);
Yfit = zeros(NR,NC);
for i = 1:NR
for j = 1:NC
Yfit(i,j) = predict(Mdl1999276,X);
end
end
ERROR: Assignment has more non-singleton rhs dimensions than non-singleton subscripts
Thank you for helping!!

채택된 답변

Walter Roberson
Walter Roberson 2017년 7월 7일
Why are you using all of X to do the prediction each time?
Why are you reading in the image if you are not going to predict based on its values?
Ensembles often make one prediction per ensemble member per sample; if so then you might need to analyze a vector of results to decide what one output you want.
Predictions sometimes output a probability per class rather than a single class number.
  댓글 수: 5
Noor Abbas
Noor Abbas 2018년 3월 19일
Does any paper or research that relevant with predict number of pixel using machine learning, Best Regards,
Philku Lee
Philku Lee 2021년 6월 28일
It might be related to
https://www.sciencedirect.com/science/article/pii/S0016236121003203

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Support Vector Machine Regression에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by