Curve fitting for 2d Array

35 次查看(过去 30 天)
Leostar90
Leostar90 2022-2-16
评论: Leostar90 2022-2-17
Hi,
I have to find slope by using curve fitting in this figure. There are 7 wavefronts in this image. What method should I apply? I have tried different techniques like I manually selected 2 points and find slope but that is not appropriate way. I have to utilize all the data points and fit curve to all 7 wavefronts. Sample image is attached here

回答(2 个)

KSSV
KSSV 2022-2-16
If (x,y) are the points of your curve...
m = gradient(y)./gradient(x) ; % diff(y)./diff(x)
  7 个评论
KSSV
KSSV 2022-2-16
Yes, for the pixel values the positions are (x,y). You need to seek those positions and fit a curve.
Leostar90
Leostar90 2022-2-16
Yes, I am still there.. How to find those positions? m = gradient(y)./gradient(x) ; will this work? if I pass x and y positions? Size of data is 50*1024 double. so If I pass x 1:1024 and y 1:50, that Way I can find gradient of every position.

请先登录,再进行评论。


yanqi liu
yanqi liu 2022-2-16
yes,sir,may be choose the target line by color and fit them,such as
im = imread('https://www.mathworks.com/matlabcentral/answers/uploaded_files/896015/image.png');
jm = rgb2hsv(im);
v = mat2gray(jm(:,:,3));
bw = ~im2bw(v,0.9);
bw2 = imopen(bw, strel('line', 20, 0));
bw3 = logical(bw-bw2);
bw3 = imopen(imclose(bw3, strel('disk', 5)), strel('square', 3));
bw3 = bwareafilt(bw3, 2);
[r,c] = find(bw3);
p = polyfit(c,r,3);
xc = linspace(min(c),max(c));
yc = polyval(p,xc);
figure; imshow(im)
hold on; plot(xc,yc,'r--','LineWidth',2);
  2 个评论
Leostar90
Leostar90 2022-2-16
Hi, Thank you for your response.
When I try to run this code then I get this error.
" Error using rgb2hsv>parseInputs (line 95)
MAP must be a Mx3 array.
Error in rgb2hsv (line 36)
[r, g, b, isColorMap, isEmptyInput, isThreeChannel] = parseInputs(varargin{:});
Error in region_seg_demo (line 18)
jm = rgb2hsv(im);
I have data in mat file. So I am just loading mat file and and after accessing value from mat file just passing it to your above mentioned code.
Here is the code too.
clear all,clc
dta = load('C:\Users\Awais\Downloads\Imgaes\Imgaes\region_seg\image.mat');
im=dta.L;
jm = rgb2hsv(im);
v = mat2gray(jm(:,:,3));
bw = ~im2bw(v,0.9);
bw2 = imopen(bw, strel('line', 20, 0));
bw3 = logical(bw-bw2);
bw3 = imopen(imclose(bw3, strel('disk', 5)), strel('square', 3));
bw3 = bwareafilt(bw3, 2);
[r,c] = find(bw3);
p = polyfit(c,r,3);
xc = linspace(min(c),max(c));
yc = polyval(p,xc);
figure; imshow(im)
hold on; plot(xc,yc,'r--','LineWidth',2);
Leostar90
Leostar90 2022-2-17
did you detect that green line in image or just detected data of that line? I have to apply same curve fitting for all wavefronts in same image? Moreover, I have to find equation of fitted line for finding slope.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Interpolation 的更多信息

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by