Search found 23 matches

by lwhistler
2010-09-19T23:30:05-07:00
Forum: Users
Topic: Network Programmer wondering how to start graphics programmi
Replies: 1
Views: 5028

Re: Network Programmer wondering how to start graphics progr

Perhaps this might help using Qt4: http://doc.trolltech.com/4.6/draganddro ... icons.html


I compiled the Draggable Icons Example and got it working, but I didn't understand why it worked. I briefly dabbled in C++ and Qt4.


----
by lwhistler
2010-09-18T15:04:47-07:00
Forum: Users
Topic: Compare images, detect movement
Replies: 1
Views: 8034

Re: Compare images, detect movement

But I use IM just for prototyping and I need to find a way so it works without IM and that its fast enough. I don't understand this statement. You do not want to use IM? And what is fast enough? Can you be more specific. ----------------------------------------- I had some fun with this and my solu...
by lwhistler
2010-09-17T14:31:04-07:00
Forum: Users
Topic: Converting from jpg to tif, then tif to tif ruins colors.
Replies: 7
Views: 15928

Re: Converting from jpg to tif, then tif to tif ruins colors

This is interesting:

http://www.imagemagick.org/Usage/formats/#tiff
and
http://www.imagemagick.org/Usage/formats/#jpg_lossless

Looks like lossless jpg is the way to go with ImageMagick, instead of tiff's.



----
by lwhistler
2010-09-17T14:09:15-07:00
Forum: Users
Topic: Converting from jpg to tif, then tif to tif ruins colors.
Replies: 7
Views: 15928

Re: Converting from jpg to tif, then tif to tif ruins colors

I'm not sure if this would work:


convert picture.jpg -colorspace gray picture.tif
by lwhistler
2010-09-17T13:52:20-07:00
Forum: Users
Topic: Converting from jpg to tif, then tif to tif ruins colors.
Replies: 7
Views: 15928

Re: Converting from jpg to tif, then tif to tif ruins colors

Why not just copy the file?


cp picture.tif newpicture.tif

-------
by lwhistler
2010-09-16T18:18:39-07:00
Forum: Users
Topic: Clone stamp tool for ImageMagick?
Replies: 4
Views: 14797

Re: Clone stamp tool for ImageMagick?

I'm working on a "clone" bash script to removal dust spots from multiple images. The dust spot would be replaced with the pixels next to it. Below is an example of it in action, but on a bigger scale than dust spots. image.jpg http://www.stubby.ca/image.jpg Original image - In this example...
by lwhistler
2010-09-15T21:29:57-07:00
Forum: Users
Topic: Removing dust spots from JPG's?
Replies: 5
Views: 13878

Re: Removing dust spots from JPG's?

Thanks for the replies, it will take me a while to study fmw42 scripts, you have a lot there. After a quick look the Zelda example - http://www.imagemagick.org/Usage/photos/#removing - looks good and I have it working in a loop on multiple images. Except I get a small black artifact in the dust spot...
by lwhistler
2010-09-15T15:45:25-07:00
Forum: Users
Topic: Removing dust spots from JPG's?
Replies: 5
Views: 13878

Removing dust spots from JPG's?

Does anyone have any ideas on removing dust spots from JPG's? Similar to using the GIMP clone tool. This is what I have in mind: In GIMP create mask that covers entire image, except for area next to the dust spot(s) Copy original image and add mask. Merge masked image and original image. BUT shift m...