hello, i have a graph and i want to select some points automatically can anyone please help me. i attache the graph below and the points need to select are in circle.

1 visualizzazione (ultimi 30 giorni)
  1 Commento
Image Analyst
Image Analyst il 26 Nov 2021
Maybe try imchangepts(). Attach your data if you want people to try things. There are probably lots of approaches depending on how you define the points. Attach several data sets because an algorithm that works for one might not work for a different one.

Accedi per commentare.

Risposte (2)

Alagu Sankar Esakkiappan
Alagu Sankar Esakkiappan il 7 Dic 2021
I see that you're trying to highlight abrupt points in the plotted graph. This may be achieved using findchangepts to find out indices of exact points of interest. The indices may then be highlighted using plot function and utilizing its properties.
The following code may provide you further understanding:
highlightIndices = (findchangepts(lab,'MaxNumChanges',6))'; % Tinker properties of findchangepts to specify highlighting behavior
plot(cal,lab); % Original Plot without highlighting
hold on % To make changes on top of previous plot
plot(cal(highlightIndices),lab(highlightIndices),"ro","MarkerSize",15); % Highlights points with Red Circle of Radius 15

SAWANT JAYDIP
SAWANT JAYDIP il 29 Nov 2021
I attached my exel file below and the matlab code for create graph from that exel file please find it, this will help me in my project
%% Import data from text file
% Script for importing data from the following text file:
%
% filename: F:\try for imagej\Plot Values.csv
%
% Auto-generated by MATLAB on 22-Nov-2021 10:31:09
%% Set up the Import Options and import the data
opts = delimitedTextImportOptions("NumVariables", 2);
% Specify range and delimiter
opts.DataLines = [2, Inf];
opts.Delimiter = ",";
% Specify column names and types
opts.VariableNames = ["Distance_mm", "Gray_Value"];
opts.VariableTypes = ["double", "double"];
% Specify file level properties
opts.ExtraColumnsRule = "ignore";
opts.EmptyLineRule = "read";
% Import the data
PlotValues = readtable("H:\try for imagej\Plot Values.csv", opts);
val=table2array(PlotValues)
cal= val(:,1)
lab=val(:,2)

Community Treasure Hunt

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

Start Hunting!

Translated by