Thread: Bitmap generator paired with an neural network image recogniser?

  1. #1
    Registered User
    Join Date
    Dec 2012
    Posts
    1

    Bitmap generator paired with an neural network image recogniser?

    Hello, I'm new to programming, and i would be great if someone could point me in the right direction.

    Hoping to create this project, but not sure whether to try and complete the programming myself or maybe pay someone to create it for me.

    Hoping to create a bitmap generator that creates small (300x300px ish) images (similar to this ... RANDOM.ORG - Bitmap Generator ), which then feeds these to an neural network based image recogniser, which has been trained to pick out particular images it thinks matches an initial set of black&white bitmap images I give it to learn.

    Basically, I'd like to create a program that I can feed a set of images, and it then generates images based on these, with similar tones, patterns and shapes..

    Before I even start thinking about making this, do you reckon it would even work? The generator would have to be pretty quick for the image recogniser to have any hope of finding anything. And I'd have to be able to skew the percentage of black/white bytes in order to come up with the sort of images I feed it to learn.

    If anyone could offer any suggests on where to start, that would be amazing!

  2. #2
    and the hat of int overfl Salem's Avatar
    Join Date
    Aug 2001
    Location
    The edge of the known universe
    Posts
    39,659
    BMP file format - Wikipedia, the free encyclopedia

    If you don't want to pick apart the image header, then use your favourite paint program to create the required BMP size and format (say 300x300x2) and save that as your source file.
    All you would then need to do is replace the actual image data with something random.
    If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
    If at first you don't succeed, try writing your phone number on the exam paper.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Bitmap Image In C
    By snayyer in forum C Programming
    Replies: 9
    Last Post: 06-20-2011, 10:16 AM
  2. Neural Network Ideas
    By User Name: in forum General AI Programming
    Replies: 2
    Last Post: 09-16-2010, 07:14 PM
  3. Tic Tac Toe Neural Network
    By glo in forum General AI Programming
    Replies: 4
    Last Post: 06-15-2008, 03:39 PM
  4. how to convert a bitmap image to a jpg image file using C++?
    By nomer in forum Windows Programming
    Replies: 4
    Last Post: 06-04-2006, 07:40 PM
  5. Reading a bitmap image
    By usamaalam in forum C Programming
    Replies: 19
    Last Post: 03-06-2004, 06:13 AM