Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I want to have a spectrum analyzer as similar as possible to the one in Winamp (v5).
I tried http://wpfsvl.codeplex.com/ but the result is not nearly as good as in Winamp.
For example, if I put the chirp sound (http://en.wikipedia.org/wiki/File:Linchirp.ogg) through it, Winamp seems to be much more accurate. With the C# example, the frequencies seem to "bleed" outside and so everything is much less pronounced. Also in general with any music, Winamp will pronounce everything much more and it's much more clear, in the C# one it's all very "blurry". E.g. when drums hit, in winamp this will be very obvious on the left part of the analyzer, while in the C# example it is hardly noticable.
Winamp is not accurate, it's tuned so it looks good. For example, it DOESN'T have exact values, but does 'falloff' of the values so it look natural.
To emulate it, you'll have to go beyond mere FFT and eventual binning of the results.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
this is my first question on this website, I only have experience looking for questions other people made. I am very interested in machine learning and there is a youtube channel that hosts videos like this one https://www.youtube.com/watch?v=GOFws_hhZs8&t=27s
My goal is not only to replicate the internal mathematical process of the program, wich I am confident I know how to do, but creating a program that can have the graphics handling that the one of the video has. As a physicist, my programs, from the computer science point of view, are extremely basic:They pick a text file, do some calculations, and write/plot data results. I already know python, fortran (useless for this task) and a little bit of C. So, finally my question:
What programming language and IDE would you recommend me to learn?
Thank you so much
Take a look at this website
http://scikit-learn.org/stable/
It's a very useful knowledge base with courses/tutorials for machine learning in Python
I just use Sublime Text as an editor for Python.
I'm not sure about the animation though, I have never animated anything myself in Python, but the Canvas class might be of help here
https://www.tutorialspoint.com/python/tk_canvas.htm
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am looking for a spatial index library in C# that has to be able to index geometries (circles, polygons, polylines) as well as answer intersection questions. I found NetTopologySuite (NTS) and some other one-file solution project but I wonder if I missed anything significant?
NTS is pretty good but somewhat heavy. The second one is a one man art and apparently I have to pick it up and maintain myself. I wonder if I can find something that is supported and tested.
I am looking for C# one but if I can get hands on Java one, I can adapt that.
libspatialindex seems to have all the features you want, but it's in C++
JSI is a Java project, but it only works with rectangles.
I am not 100% sure but i guess Solr and Elastic search supports spatial index. They are in Java and they support REST.
I found some good examples here http://www.rtreeportal.org/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
It's pretty much all in the title: what library would you recommend to perform principal component analysis? I'm looking for free and simple to use - performance is not necessarily a criterion so far as I just want to play around with the concept and see what I get. Google got me this:
http://crsouza.blogspot.com/2009/09/principal-component-analysis-in-c.html
Anyone tried this? How good is it? Would you have any other recommendation?
I have used PCA in SPSS and Matlab. This is a good place to start learning it, as those applications have already got all the infrastructure ready for you (like lots of plots and supportive tests).
If you are looking for something in C#, take a look at the Accord framework and maybe this sample here
Thanks for the help guys. I eventually decided to implement the algorithm myself, using Math.Net Numerics to lay the matrix groundwork and ARPACK to do the hard work of finding the biggest eigenvectors of the correlation matrix (I don't need of all them). Subject closed.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I'm working on a project which compares image files. Before I start I decided to ask for external sources, like a commercial SDK or something open source.
I tried to write a sample where it compares 2 image files too measure how similar they are, and output a percentage result. But no luck, long time to execute and weak precision. So if someone had experience in that direction that will help me.
http://www.imagemagick.org/script/compare.php
AForge.NET is excellent...
AForge.NET
The frameworks below is the best for image processing in C#
AForge.NET
Accord.NET
Emgu CV
Really not sure about requirement , what kind of similarity you want. If you can put more details, i can help you out.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
Is there a way I can configure Visual Studio to automatically scan my source code for methods that are over (eg) 300 lines long so that they can be flagged for review (with an aim to refactoring to smaller methods)
I expect any such technique may be language independant, but ideally I'd like to run this over C# code.
Why dont you use some code counter tools which you can search in google for.
http://www.google.com/search?hl=en&source=hp&q=code+counter+tools&aq=f&aqi=&aql=&oq=&gs_rfai=
Is there anything specific you are looking for. Why stopping with 300. Are you developing some contest where you would like to restrict people from writing more than 300 lines of code. Anyway be more clear so that we can help you.
I use this one and i find it very useful.
http://www.codeproject.com/KB/applications/codecounter.aspx