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

1 2 next
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 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 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

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

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

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

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

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

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 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 1 vote down

I did the only research-oriented project in my graduating class: Separating easy and hard logic programming problems. This is related to satisfiability (3- and k-SAT) and stable models.

The results are for use in solving logic (NP Complete), revealing what conditions in logic problems caused a noticeable increase in time-to-solve. I created a program to randomly generate hundreds of programs for every ratio of rules to variables and clauses. The results can then be graphed in various directions to show there is indeed an mixture that makes programs significantly more difficult to solve.

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 1 vote down

We wrote an online image management system for thousands of high resolution blood slides, for biology students and researchers at my uni. Basically, it had to restrict and track downloads, allow categorisation by different blood cell types and deformities etc, and provide some basic login and reporting features..

It was in PHP, and it was before I learnt about the joys of PHP frameworks (it could have made our lives so much easier). We worked in a team of 5. It was a good opportunity to self teach ourselves how to do things like image processing, captchas, tagging systems, subversioning etcetera.

It was a good lesson in dealing with clients as well, the client kept changing scope and feature requirements every couple of weeks. In the last week she even changed her mind about it running in PHP and MySQL and wanted us to change it to ASP and Oracle, because she'd heard that those were better.

Last time I checked it was still in use at my old uni. Looking back, my code is quite horrific! But at least it proves that I have learnt something after uni :)

link|flag
show 2 more comments
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
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

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

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 3 vote down

I developed a software in C++ to transfer data from one computer to another using FM frequency. I managed to send data from one to another but not vice-versa. Next year students picked up the project to develop two way communication. I don't know if they were successful or not.

This was in 1998 and now we have infra red, bluetooth etc.

I am in IT field developing applications for travel industry so not exactly matching to what I did in the project but yeah it helps providing experience of developing a working software.

link|flag
vote up 2 vote down

I worked on the "detection" aspect of a vehicle license plate detection system. The challenge was to get a dumb computer to detect where the location of a vehicle's license plate on the image is. Given very tight constraint, the problem is surprisingly easy. However, I wanted it to be robust for arbitrary rotation of the license plate. I also wanted it to worked regardless of the lighting condition. Finally, I wanted it to make no assumption on the minimum and maximum size of the license plate itself on the image. To a certain degree, I have achieved these goals but still there are lots more opportunity for improvement.

The method that I used is based on graph cut segmentation and SVM. In the end, a paper was published to ISNN 2008.

link|flag
show 1 more comment
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 2 vote down

2005 I developed a software for controlling, programming and monitoring industrial robot working cells and then used it on a cell which assembles robot controllers. So the software today controls robots that build robots... :)

We started a company last year and we're now doing a new version of the application with more commercial focus. We've taken some steps towards a patent for some of the ideas in the first version but it is unfortunately too expensive to take it all the way.

link|flag
vote up 1 vote down

L2LB is an linux open-source alternative for load balancing TCP services, like HTTP, FTP, DNS.

  • It is a front-end free solution, which means you build a cluster with only the processing servers.
  • It runs as a linux kernel module, for ultra-fast response time and network packages mangling and filter
  • It uses round-robin algorithm for load balancing the requests
  • It uses client-server affinity for proper session handling

http://code.google.com/p/l2lb/
http://disciplinas.dcc.ufba.br/pub/MATA67/TrabalhosSemestre20082/Monografia_-_Daniel_Gomes_Silveira.pdf (Portuguese-BR)

link|flag
vote up 1 vote down

We developed a Mobile Information System (MIS) for our college so that the students can enroll through their mobile phones, get info on quizzes/exams, make a query on their class performace and all.

link|flag
vote up 10 vote down

Automated Network Update System

or ANUS for short.

ANUS was a system to help out with administering networks. It would discover computers on the network, catalog them and then based on defined criteria, try to update them with the latest software.

link|flag
2  
Why on earth wouldn't we? It was awesome and the TA got a laugh out of it. Sometimes you just have to do something because it is silly and fun. – Ty Jan 28 at 19:45
show 4 more comments
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 4 vote down

A search engine before search engines were popular. Too bad I didn't know then what I know now.

link|flag
show 1 more comment
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 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 2 vote down

3D Cloud simulation using metaballs and marching cubes algorithm. It was written in C++ and openGl.

  • That was it. Never worked on it later.
  • But It was helpful with my first job which was game development.
link|flag
1 2 next

Your Answer

Get an OpenID
or

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