Converting a Wall plotter to color using RGB LED

I have committed to this school project and cannot turn back. We must create a wall plotter that will not only control the stepper motors (I have the basics for that) but also a common cathode RGB LED, changing color and intensity to create photographic art. The rig will operate in a dark room with a camera capturing HD open shutter exposures.

There is software available for DIY wall plotters that convert existing digital images to grey scale, then to monochrome black and white, then to plotter paths. I need a color component inserted into that process that will provide the data I need to control the LED. I need a place to begin. Here are the questions I have. (Please don't laugh)

  1. Can a single Arduino UNO do the job? (control the steppers and the LED at the same time from the same file?)
  2. Is it possible there are programs available that will generate the color plotter files I need? Keep in mind that old school plotters changed pens, I won't need to do that. It is a continuous line that can change colors continually, like a single pixel that roams around. Am I making sense? It is intended to be a tool for digital art. The applications of it will be where the creativity comes in.
  3. Is there some kind soul out there who would like to hold our (My team's) hands through this?

Thank You!

Just to clarify, I fully intend to write the code for the Arduino and then post what I come up with for feedback, but without the image data format, I won't know where to begin. A nudge in the right direction will help.

ClassProject:

  1. Can a single Arduino UNO do the job? (control the steppers and the LED at the same time from the same file?)

Depends mostly on the size of this file, an Arduino has very limited memory. Such a file is most likely not going to fit in 2 kB. Easiest is to read it from an SD card or so.

  1. Is it possible there are programs available that will generate the color plotter files I need?

Possibly - but no matter what you'll have to adopt it to your needs. Not likely someone built the exact same project.

  1. Is there some kind soul out there who would like to hold our (My team's) hands through this?

Many people here can offer suggestions - but you'll be better off having this thread moved to the Project Guidance section (just ask a moderator to help).

Just to clarify, I fully intend to write the code for the Arduino and then post what I come up with for feedback, but without the image data format, I won't know where to begin. A nudge in the right direction will help.

Well, then you know what to think about now! It's probably best to just use a long list of rgb values, not compressed or anything.