Which volume of TAOCP should I start with? [closed] - preference

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 have decided to go through "The Art Of Computer Programming" series by Sir Donald Knuth.
Based on your experience, please suggest which volume would be a good one to start with, as in an easier one (relative to others) and also, please suggest your preferred order for reading subsequent volumes.
I am in no rush to learn it all, so any type of volume should be OK with me to start.

The first volume of TAOCP contained this diagram:

The absolute first thing you should do is read the first few chapters from the first volume. They go over basic stuff, including MIX [supposedly there's a new version with MMIX, though I havent seen it yet] which is the model Knuth uses throughout the series
I'm a math guy, so I found the second volume [dealing with "seminumerical" algorithms -- called so because Knuth felt that it wasnt strictly numerical] much more interesting than the sorting and searching stuff [V3]

Related

Reverse engineer open source project looking for methods [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 have open source project done in c++ , it is big and has no documentation
now to "only" to debug it and understand its flow it is possible but very hard.
im looking for well define methods and ways of work , to make this process easier.
like some kind of tools that can help me to draw the objects and class's relationship.
UPDATE
well after digging some more , i know the proper name for this is :
Sequence Diagrams , so i looking how to get Sequence Diagrams out of c++ code
it have to be free tools
here you can find your answer, System Sequence Diagram maybe helps you. if answer not enough tell me to say more details :)
http://www.devcurry.com/2010/03/generate-sequence-diagrams-in-visual.html
and also this link is useful too:
http://weblogs.asp.net/gunnarpeipman/archive/2009/11/20/visual-studio-2010-generating-sequence-diagrams-on-the-fly.aspx
Understand for C++ from Scientific Toolworks has a good reputation. I have no specific experience with it.

Open source machine vision code to locate a human in a room [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 7 years ago.
Improve this question
Has anybody seen a resource covering specifically the use of machine vision for locating a human in a room, including cases where they may be partially obscured? I know about OpenCV and other machine vision packages, but I'm looking for a paper/library/code example that focuses solidly on identifying a human in a room; something that is readily integrated into code rather than being a rough idea that would require weeks or months of tweaking or enhancing to do a reasonable job of succeeding at the task. I'd prefer something that does not require binocular vision and can work with a single camera.
First: you should read this about human detection. Then you can find/use opencv code implementing the training step of this kind of detector. You will need to access to a database for training like INRIA Person dataset.
Second: if you need to handle partial obstruction, you may need to implement a human body tracker that can handle this problem. Particle filter could do the work.
If you have problems with implementation feel free to ask more specific questions.

Open-source tool for gender-recognition using voice [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 7 years ago.
Improve this question
Good evening,
I'm working on a project with Kinect and I need to perform a gender-recognition using the voice information caught by the microphone of the sensor.
The recognition could also be text-based, i.e. the sentence said by the user could always be the same. I "just" need the binary answer male/female.
I've checked the quite popular open-source Sphinx but I can't understand if it could be used for my needs.
Any idea of what I could use?
Thanks in advance.
For sake of completeness, finally I solved the recognition task without analyzing the voice input.
Gender can be detected with an acceptable precision also by learning and then classifying visual biometric traits. I used speech recognition only as "interface" to activate the demo.
There are several ways to achieve this. You can track pitch (lower pitch values will be male, otherwise female). Or try to build a GMM (Sphinx cannot do this, but HTK can), with one model for male, other for female and another to children.

Database Benchmarks [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 7 years ago.
Improve this question
I am working on a Graduation Project and wondering if anyone can help me with: Benchmark data to load and test on my application.
We are willing to compare between different designs and implementations of different database management systems, and I thought we shall use a standard data set for this task.
Is there any? and if yes, would you kindly show me where to find some, and if there are measures to consider, that would be really helpful.
Thanks in advance.
There are many standard benchmarks. The most famous are the TPC Benchmarks:
http://www.tpc.org/information/benchmarks.asp
Moreover, some researchers publish specific benchmarks. For example, O'Neil et al. avec proposed the Star Schema Benchmark. You need a small and free program to generate the data.

Is there a good place for proposing new open source projects? [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
Is there a decent website or service out there where developers can propose a new idea for an open source project (regardless of language) and have the community vote it up / down, form teams, and do everything that precedes writing the first line of code?
There is the SomeBodyMakeThis reddit. Also, project sites like SourceForge allow you to create a project which is in the "planning" stage. Often, this is used by people who think they have a good idea and want somebody else to make it for them.
Kind of like Kickstarter (for funding), SourceForge (for hosting), or an IdeaStorm (for brainstorming and community feedback)? The Apache Foundation, or the Horde project (for incubating a plethora of related projects)? It really depends on to what your idea relates. Try joining one of the relevant extant open-source communities and sounding off on your idea.