Consider the following figure:
Could you please tell me how to extract the brown curve ($a\to KK\pi$) from it (i.e. the dependence Gamma[ma]?
Consider the following figure:
Could you please tell me how to extract the brown curve ($a\to KK\pi$) from it (i.e. the dependence Gamma[ma]?
Assuming
pic="your image"
you could start with
dc = Rest@ DominantColors[pic]
Map[ListPlot[PixelValuePositions[bild, #, .1 (*Colordistance*) ],
Axes -> False, PlotStyle -> #] &, {dc[[-3]]} ][[1]]
With[{data = ImageData[RemoveAlphaChannel@img]}, Image[Unitize[data - Threaded[{130, 22, 4}/255]]]*Image[Unitize[data]]].{130, 22, 4}is the RGB value of the brown line – Sjoerd Smit Feb 28 '23 at 16:54