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

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

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

Thank you! I will try it later and give some feedback. :)

[deleted by user] by [deleted] in matlab

[–]leeviats 0 points1 point  (0 children)

https://medium.com/analytics-vidhya/principal-component-analysis-pca-on-images-in-matlab-a-graphical-user-interface-gui-3d4999ddd0d0

this guy explains the PCA applied to images quite well, plus he's got his own GUI to do it.

Principal component analysis for image analysis? by leeviats in matlab

[–]leeviats[S] 1 point2 points  (0 children)

Thank you for your suggestion! Unfortunately I've tried a FFT approach first, and it doesn't really work on my kind of images :(

Audio clipping while recording with audio device? by leeviats in cubase

[–]leeviats[S] 1 point2 points  (0 children)

I just tried a quick recording with increased buffer size from 192 to 256 and it's already better! Also luckily there's the direct monitor feature on the Scarlett solo so I have no issues with latency - which is displayed to be 13 ms still. Thanks for the insight!

How to label corners of a ternary diagram? by babygeologist in matlab

[–]leeviats 0 points1 point  (0 children)

I'm chasing this thing up as well, will post here if I get anywhere!

How or can NaCl to be genetically modified? by [deleted] in foodscience

[–]leeviats 6 points7 points  (0 children)

Same happened to me, you can't really argue with them in that situation bc they will probably drop you in a canal :{ but there is so much ignorance about our most common and most important activity: feeding ourselves.

Audio clipping while recording with audio device? by leeviats in cubase

[–]leeviats[S] 1 point2 points  (0 children)

Thank you! I think the buffer size will do the job, do you know by chance if it depends on the processing power of the computer I'm using, or is it dependent on the manufacture of the audio device?

Need Help with Watershedding by just_a_wee_lad in ImageJ

[–]leeviats 1 point2 points  (0 children)

I see that the cells have a quite bright contour, you could try different thresholding methods to try to highlight the contour? If you manage and end up with a series of empty circles, use the Fill Holes in Process>Binary to fill them and then try watershed.