Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: AMiSM
  • Order by date
  1. AMiSM

    Image Processing

    OK, BMP, PNG, TGA, Raw TGA These would work. Is there an API that will let me load an image as a simple array?
  2. AMiSM

    Data from an image

    never mind, I found it: >>> import itertools >>> tp = [(1,2),(3,4),(5,6)] >>> lst = list(itertools.chain(*tp)) >>> lst [1, 2, 3, 4, 5, 6] http://stackoverflow.com/questions/1880683/pythonic-way-to-explode-a-list-of-tuples
  3. AMiSM

    Data from an image

    I'm still quite the noob with Python. I'm trying to crop a box from an image and turn it into a flat array of integers. I have succeeded in opening the image, cropping the box, and displaying both the original image and the cropped box (to check my progress). I've tried im.getdata() and...
  4. AMiSM

    Image Processing

    I'm interested in any loss-less format, compressed or not.
  5. AMiSM

    Image Processing

    There are API's like ImageMagic that can do everything and make you a sandwich, but all I need to do is open a graphics file and access individual pixels. What is the simplest way to do this?
  6. AMiSM

    I have this study guide...

    What are everyone's opinions concerning the books mentioned on this page? http://catb.org/~esr/faqs/loginataka.html
  7. AMiSM

    I have this study guide...

    Yeah, they described how to install the Compaq wireless drivers from the terminal. It greatly improved things, but didn't fix it completely. Look toward the bottom of this page: http://ubuntuforums.org/showthread.php?t=1374910
  8. AMiSM

    I have this study guide...

    My main problem right now is getting my video card to work. I originally got an IBM t40, with a Radeon 7500M. I swore I would never mess with ATI again. Circumstances tricked me into getting a Gateway NV52, and it has a stupid Radeon 3200 in it. I tried Ubuntu 9.10, and everything seems to...
  9. AMiSM

    I have this study guide...

    I like cereal. :)
  10. AMiSM

    I have this study guide...

    I am happy to report that I have officially compiled and run my very first "Hello, World!" under Linux! I think I'm going to like this! :)
  11. AMiSM

    I have this study guide...

    Hey, thanks, man! I've actually wanted to use Linux for quite awhile, and I just bought a Gateway AMD64. (It's pretty sweet! :) ) I installed Ubuntu 64 bit, but I'm having trouble navigating. I was using Crimson editor with some compiler or another, but how do you use GCC under linux? I...
  12. AMiSM

    I have this study guide...

    Was the question inappropriate?
  13. AMiSM

    I have this study guide...

    Hi! It seems that this guy (IT employer, I think) went on a rant about what makes a good programmer. I figured it would make a good study guide. Can anybody direct me toward an educational resource or five that covers all of this...
  14. AMiSM

    What is your opinion?

    What Python Standard Library modules are used most frequently?
  15. AMiSM

    Perl with Arduino

    Actually, I don't want to sleep at all. I just want to get integers to my Arduino, but that doesn't seem to be happening.
  16. AMiSM

    Perl with Arduino

    Yeah, I forgot about select().
  17. AMiSM

    Perl with Arduino

    On the Perl side, for $r (0..9) { ...actually goes to 255. I just tried this because I thought the Arduino was only getting the first digit, somehow.
  18. AMiSM

    Perl with Arduino

    Hi, folks! I've been searching and reading and racking my brain, but this is just eating my lunch! It's vitally important that I learn this. It seems like one of those things you easily over-think, then it comes to you in a flash of insight. I need to communicate with my Arduino...
  19. AMiSM

    trouble with GD

    It was inside an "if". I got it to work, but I'm curious if there is a limit to how deep into a number of nested blocks this call can be before it is out of scope. Is this ever an issue?
  20. AMiSM

    New to Perl, ready to learn

    Just Google "Perl tutorial". You'll get a huge smorgasbord of stuff, with different approaches and different perspectives.

Part and Inventory Search

Back
Top