vote up 25 vote down star
28

As per title, I would love to hear from anyone willing to share their experience working on their CS FYP.

  • Was it academic/proof-of concept or did it have real world applications?

  • Did it become bigger or was it shelved after you graduated?

  • How did working on the project contribute to your skills/experience/future career?

  • Which would you have preferred: An excellent implementation of a normal idea or a normal implementation of an excellent idea?

flag

52 Answers

prev 1 2
vote up 1 vote down

I did a proof of concept on Image Recognition. This was back in 1994 so it was the VB3.0 era. I used C however and the project was to track dolphins in the Gulf of Mexico. Apparently you can recognize dolphins by the fin on their backs. Each dolphin's fin has unique markings, shape, size and the marine biologists at our college wanted to track the dolphins from images.

link|flag
vote up 0 vote down

My team was working on a corporate social networking type thing. We did plan on continuing with it after school, but half the team didn't want to keep going after we graduated, so it was shelved. However, a big chunk (probably about a third) of the code in it has been repurposed.

The biggest contribution to my life from that project was experience as a project manager and systems analyst (I've always been a programmer, but never had to manage other programmers, and did little real - outside of class - analysis). It's given me a lot of insight into my job. My side projects have also benefited tremendously.

link|flag
vote up 0 vote down

Resource Discovery with the help of WebServices for Distributed Computing

Or at least that's how I would translate it in english. We had to create an extension to ParoC++ (a language based on C++ that help you write and run large distributed programs for High Performance Computing). We had to replace the resource discovery part with an implementation based on Java, SOAP and Globus.

This was mainly academic. The based project (ParoC++) is used in error detection of textile printing and avalanche simulations. But our implementation has never been used in any real project (as far as I know).

It was a lot of fun. It helped me understand quite a few things about C++, Parallel programing and multi-threading. The title sounds dificult enough that when I mention it in an interview people might think that I am actually smart ;-)

link|flag
vote up 0 vote down

Degree: Computer Information Systems

Project: Client Data Tracking System

Synopsis: The project was to build an information system for a local charity that would allow them to track their clients, aid given, and print reports based on such.

Result: Partial success. System was designed from scratch (full SDLC), software was written, and the client was able to use it for basic CRUD work. At the time, it couldn't produce reports.

link|flag
vote up 0 vote down

My partner and I built a digital thermostat that was USB programmable. we built a small MFC front-end that let us set 5 independent alarm times that could set the temperature

link|flag
vote up 0 vote down

I worked on a project called Kifano, which used a library for computing the differences between two pieces of music, to help generate music recommendations based on a set of known "liked" songs. The backend music analysis was done in Java, and the user application was a Ruby on Rails application.

In answer to your questions:

  1. I suppose it was both - proof-of-concept in that the application demonstrated that "sounds-like" metrics generate reasonable recommendations; and real-world, in that actual people used the application.
  2. It was shelved, wish I had time to work on it more.
  3. It taught me an awful lot about working on large codebases, particularly the value of version control (i.e. I wish I'd used version control!).
link|flag
vote up 0 vote down

Streaming geometry for remote visualisation of very large datasets.

Picking geometry that was perceptually relevant to the user (with a bit of machine learning on simulated user runs through the data set), guessing where they were going to go next and sending the right geometry as a prefetch, doing hidden surface removal on the server at run-time and via pre-processing.

Plus some novel (but flawed) compression algorithms based on genetic algorithms. It was a real grab-bag of techniques.

link|flag
vote up 0 vote down

Document Image Highlighting.

Basically given a scanned document image and the OCRed text, locate and highlight certain words in the image. The challenge was that the images were pretty poor quality. The dataset I was using was a collection of scanned 150+ year old newspapers. Very dense print, torn pages, distorted pages and some were rotated up to 5 degrees on the scanner.

I got it working for most situations, but I dont think it ever got integrated into the Greenstone codebase.

link|flag
vote up 0 vote down

Degree: Computer Science

Project: Post Room Computer

I made a somewhat more complex little man computer model (Based on my professor's design) called the Post Room Computer.

The program featured an assembler / compiler (which supported label and macro substitution) and two different computers models (One absolute addressed and one Register addressed).

The program 'compiled' the assembly language (No 3rd party parsing libraries were used) into decimal machine code which then could be executed on either of the emulated computers (were complete with memory, register, and ALU components).

All of this ran on top of a pretty GUI (although it could be run from the command line also) The final project was awarded 72% (A 1:1).

Post Room Computer homepage

Download page

Here is some sample code which will print out the numbers 0 to 99:

:loop:
    out :count:
    add :count: :one:
    mov :tmp: :count:
    sub :tmp: :max:
    jmp ltz :loop:
hlt
:count: (0)
:tmp: (0)
:one: (1)
:max: (100)

That would be compiled to:

6006000 
3006008    
2007006    
4007009 
8002000 
0000000 
0
0
1  
100

The computer would then execute that code.

link|flag
vote up 0 vote down

My undergrad project was a system to translate compiled x86 binaries into Java VM bytecodes. It was very rudimentary (it actually took in assembler mnemonics and output Java source code, and it only worked for Hello World and some simple arithmetic instructions, but it had a nice pluggable architecture and could have been extended quite easily.

My MSc project was about the evolution of camouflage patterns. I used a bio-inspired computer vision network build with Numenta NuPic to evaluate patterns generated with a particular kind of weighted cellular automaton. The vision system was looking for "prey" patterns embedded in a background pattern. It worked pretty well, and with a high-resolution image sensor and some co-adaptation between the vision system and the patterns, it could evolve pattern weight sets which more-or-less perfectly blended into the background.

link|flag
vote up 0 vote down

As per the curriculum in my school, we had to carry out 2 final year projects, and 3 including the pre-final year internship. Here are they:

  1. I worked on Default Reasoning using Fuzzy logic during my summer internship and had succesfully done a literature survey of Commonsense Reasoning. I developed some worked out examples to demonstrate my work in Default Reasoning using Fuzzy Logic. The whole exercise was intellectually simulating
  2. For my first final year project, I studied parallel programming with MPI and PVM. Since, I did not have an idea about parallel computing till then, the project taught me a lot of them. I also brainstormed a MPI plugin for GIMP to enable Parallel Image Processing. Sad, that I never managed the time to implement it
  3. This was rather stupid, though learning experience. I developed a management tool with the all the stupid GUI for Software RAID on Linux. It was a pretty handy tool which could be used to teach software RAID

The best part and the reason for which I chose them (My profs, didn't) was that each project taught me something which I didn't know previously and that IMO should be the ONLY goal for a project.

Good Luck!

link|flag
vote up 0 vote down

I ended up with a team where we developed a scheduling system to be used in state run jails throughout the northern part of our state. We partnered with a local firm that got the bid for the project, and we did most of the hard work (ie developing the algorithm from an academic paper). We gave a large presentation with the chancellor and many of the university staff (we filled our large lecture hall). The firm was very impressed with our algorithm, but did end up re-doing our presentation layer.

We did get a letter of recommendation from the chancellor and the CEO's firm.

link|flag
vote up 0 vote down

Here is how it worked at my school: companies would present projects to the university. Students would choose a project and work in teams of 5-6 people. Someone from the company would act as the team mentor and make sure you were on the right track.

It sounds like a good idea to run a project like this, structuring the project so that students get experience with a large development effort and deliver something with real world value.

We were given the task of optimising a universal medical record application that was woefully slow. We were given a massive VB app and some DLLs that interpreted the format of the medical records. On inspection we discovered that the DLLs were the main bottleneck in the performance. Unfortunetely the company in question did not want to give us the source code to the libraries. The mentor was a business improvement type who didnt really understand the problem. It was too late by this time to start a new project.

So in the end, all that we delivered was a document explaining where the bottlenecks were and why we couldnt fix them. It was supported by some charts generated by a profiling app.

I remember being quite despondent at the time about the outcomes of the project and how little we'd managed to achieve from a technical point of view. We ended up with a fairly good mark though because our document was very thorough. That was about five years ago.

Now I realise how much that project taught me about business communication and presenting technical arguments to non technical people. Being able to explain to management in a clear and quantifiable manner why some idea, approach or requirement is not a good idea has saved my sanity many times over.

link|flag
vote up 0 vote down

We wrote a system in a team of 5 to manage safety on a project.

Effectively you would create a fault tree in the software for a given system that you were analysing and the system would allow you to drill down and map the faults, failures etc. of the system to predict its probability of failure.

You could then create requirements based on your analysis to try and prevent these from occuring. The system would print out a great report with a representation of the tree and the final derived requirements for establishing the software. Working with a defence contractor and the government looks really good on your resume as a graduate.

link|flag
vote up 0 vote down

My final project was actually a series of projects that I was working on in the office that (thankfully) I was allowed to submit as my final project. The projects focused around the internal tooling of a team who needed to improve document management, password management (for servers, databases etc) as well as catalogue all of the tools that they were supporting (over 200 at the time).

In a lot of ways the projects themselves were simple. It was a case of making everything work together. For example, the application database tied in to the infrastructure monitoring tool to help keep tabs on server uptime. It became a simple case of pulling a report to find all of the affected applications (and their dev leads) in the case of a server outage.

The tooling was simple, but the tools served their purpose and are still in operation today.

link|flag
vote up 0 vote down

Face recognizer and identifier tool...

it was just proof-of-concept..

now i am working in graphics instead of image processing.. but the project was funny..

link|flag
vote up 0 vote down

I was on a 2 man team (well 3, but the third did sweet f-all) and we made a multiplayer overhead perspective shooter. It was tonnes of fun.

I worked on it a bit after I left school, adding an existing OS physics engine to it, but once I started working full-time, I've always had so many other things to study and work on that would advance my current career.

I learned a lot of little things, working on the project but I took the most from writing the network code and game state machine as they were my biggest introductions to network programming and design patterns that went beyond labs with instructions.

The part about the project that really made it stick out as both memorable and a good learning experience was that the project was a 'choose your own adventure' type thing. Our prof told us to make whatever we want, he just had to vet it for difficulty first. Some people hacked up small firewalls, some wrote IMs (I had already written one for another course), some wrote webapps. So there was the option to make "an excellent implementation of a normal idea or a normal implementation of an excellent idea"

link|flag
vote up 0 vote down

I created an app in Java to discover solutions to the Prisoner's Dilemma using Genetic Algorithms. The bit string population was spread over an area with various selection techniques based on location and other things as well as the fitness.

It included a front end that displayed a grid for the population area and then I made the display of each bit string a small circle of a colour (determined by its bits) and added legs and eyes, I called these (and the app) "Danimals". A picture of a few Danimals is available here.

I received a first for the project but didn't continue it after university.

link|flag
vote up 0 vote down

A scheduling system for the school.

I worked part time at my school, and knew many of the admissions officers. While my team and I were trying to figure out what to do for our project, I showed a little program that I created to the head admissions officer and she loved it.

I hated trying to schedule my classes. I would color boxes onto transparencies and lay them on each other to find schedules. I whipped up a little program with Java and Swing that would read in the times courses were offered and would show me every permutation of the schedule, giving me at least X hours. This meant that instead of spending a couple of hours trying to figure out a schedule (and change it as classes filled up), I could type in a couple dozen lines from the course catalog into a simple CSV like format and have my program display possible schedules for me.

It looked quite nice, which was probably a help. Basically copying the way iCal shows things helped there.

So for our project, my team and I took my little program and added a database back end and web front end that would allow the administrators to easily add/update classes so that students could always get the latest update of courses without having to filter them by hand with open/closed courses. We also added additional features such as supporting more schedules (half-semester classes instead of just full, etc.), printing (which was a big challenge), and more.

It was actually a pretty fun project. I'd love to know if they use it, but I haven't asked. The corporate office was apparently interested in it. I found my program very useful, I really hated trying to piece schedules together.

It had it's problems. The PHP front end to the database was rather ugly, but I knew that at the time. Having it connect directly to the database was a mistake. It couldn't do much thanks to right limits, but it should have asked through a web-service or something easier to secure/replace.

Still, I learned a ton, especially with the requirements that I never would have thought of based on real world scenarios that the school had to deal with. It had to be able to show more than 8 different courses on a schedule and handle over 50 hours a week, both of which one poor student took once.

link|flag
vote up 0 vote down

I had no idea what I wanted to do for my FYP. My university provided lists of projects that they would like to see done, so I ended up creating an Old Irish font with Metafont. That was it really and I could have done more.

I would have preferred to do something more programming-like although I had to learn how to use Metafont myself as no-one in the university had ever used it! So I suppose that was useful.

link|flag
vote up -1 vote down

I had a capstone project as our final final class, but before that I had a software engineering class which was pretty much the same as a capstone but with more engineering methodologies in it. I've only finished my associates degree but here's my petty accomplishments: For my software engineering project, we created a top-down shooter game using C++ and DarkBasic. For my capstone, we made a Microsoft Money type system but it saved to a database instead of the local computer so you can login from anywhere to modify your stuff.

Can't wait to see what I do this year!

link|flag
vote up -1 vote down

it was in 2002, i implemented the concept Steganography in c language. Its was the time when 9/11 attach and reports says the people involved might used this concept. having this an interest, we started learning the concept of steganograpy. The implementation is, embed a text file in to a BMP image and transfer the image via any medium. the decode algorithm extract the same file out from the bit map image raw bits. the same concept we tried in the WAV files and got success after the project. Now i am an application developer using c/c++ language. involved in writing a framework code which involved various report format (xml, pdf, csv)generation from application text report.

link|flag
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.