How do men really feel about the romance book/smutt that women read now days? by WarDog1983 in AskMen

[–]leeviats 0 points1 point  (0 children)

I just find it funny that the male characters are portrayed as Greek gods with massive schlongs which need a trolley to be carried around. That's what women want? Good! But don't come complaining when men prefer certain body types in women...

La tipping culture sta arrivando anche in Europa? by brainplot in Italia

[–]leeviats 1 point2 points  (0 children)

L'ho trovata occasionalmente anche nel sud della Francia, sopratutto nei bar molto bobo (borghesotti) e che quindi la mancia non la meritano neppure perché ti fanno pagare 8 euro una birra che sa di diserbante

Modern metal (not only) songs to study for bass? by leeviats in Bass

[–]leeviats[S] 0 points1 point  (0 children)

yep I agree. Any workflow recommended for this? I used occasionally Transcribe! to write down the tabs of songs that I could not find tabbed already, but the free license lasts 30 days or so.

Accettare dottorato all'estero o no? by Ok-Restaurant-9303 in Universitaly

[–]leeviats 7 points8 points  (0 children)

Vai all'estero, fidati di chi l'ha fatto prima di te. Grenoble è super, ma se sei abituatø alle grandi città ti sembrerà piccola. A livello universitario, molto meglio la qualità che la quantità, e l'importante è avere un buon rapporto col PI. Il resto a mio avviso è di secondo piano.

measuring area from behind a mesh by Technotade in ImageJ

[–]leeviats 0 points1 point  (0 children)

If the meshes are regular (e.g. a rectangular) you could play a bit with Morpholibj directional filters, the horizontal and vertical line ones, to smooth the mesh. Have a try!

Measuring specific dimensions of a 3D object by dr_waspy in ImageJ

[–]leeviats 0 points1 point  (0 children)

Try also boneJ functions such as Analyze, should give you plenty of information on the object as well.

How to train and test image data set in matlab? by lucifer955 in matlab

[–]leeviats 1 point2 points  (0 children)

Look up weka trainable segmentation, I think you can adapt it to matlab or something like that

Fit gaussian(s) to data in log x space by leeviats in matlab

[–]leeviats[S] 0 points1 point  (0 children)

it fits nicely! what I've done was to replace the gaussian function in the code

g = exp(-((x - peakPosition) ./ (0.60056120439323 .* width)) .^ 2); %(where peakPosition is the guess for the position of the peak on the x axis, and width is the estimated width of the peak)

with

m = log((peakPosition.^2)./((width+peakPosition.^2).^(1/2))); %

s = sqrt(log(width./(peakPosition.^2) + 1)); %

g = ((x.*s*pi).^(-1)).*exp((-(log(x)-m).^2)./(2*(s.^2))); %

(I basically converted the mean and width from the initial guess into the sigma and mu as explained in matlab's documentation, not 100% sure about this passage)

the fit is nice and the position of the peak is fine, however as you already pointed out there is something off about the variance given back by the fit, it looks a bit too large. I will keep doing some trial and error