[Gimp-developer] help us on our project

2005-03-15 Thread shashi kumar
hello sir/mam, we r students of final year engineering
studing in national institute of
engineering,mysore,karnataka,India.

sir we r doing a project on pattern recognition in
image processing.we have chosen linux as platform.we
came to know about GIMP and GIMP-PLUGINS.
sir we have some questions reguarding this
1what r plugins  how can they be used in our
project?
2where and how to write plugins to handle images and
extract pixel values after selecting a particular area
in an image, and how to compile and run them in GIMP?
can u plz help us about this sir.
3how to compile a plugin and load a plugin?
4how to write a plug-in to load an image into the
image viewer of gimp and access(pixel values) a
selected region
thank u sir/mam



__ 
Do you Yahoo!? 
Yahoo! Small Business - Try our new resources site!
http://smallbusiness.yahoo.com/resources/ 
___
Gimp-developer mailing list
Gimp-developer@lists.xcf.berkeley.edu
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer


[Gimp-developer] None

2005-03-15 Thread shashi kumar
 
 

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
Gimp-developer mailing list
Gimp-developer@lists.xcf.berkeley.edu
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer


Re: [Gimp-developer] Colorizing Images and Video by Scribbling

2005-03-15 Thread Sven Neumann
Hi,

Pepster [EMAIL PROTECTED] writes:

 Slashdot has the Story about this -
 http://www.cs.huji.ac.il/~yweiss/Colorization/

 I assume that to implement it one needs the color+timestamp for each
 drawn pixel. Is that at all possible to do in a gimp plugin?

I don't see why this should not be possible to do in a plug-in. But I
don't understand your comment about the timestamp.


Sven
___
Gimp-developer mailing list
Gimp-developer@lists.xcf.berkeley.edu
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer


Re: [Gimp-developer] help us on our project

2005-03-15 Thread Sven Neumann
Hi,

Michael Schumacher [EMAIL PROTECTED] writes:

 I think this is a request for advice on how to create a file
 loading/saving plug-in (registering the handlers for file type
 etc...). AFAIK there is no template for this (wasn't there an
 enhancement request for this?). It should be possible to use
 existing plug-ins as an example, though.

The only purpose of the plug-in template is to help people that are
trying to create complex plug-ins to get the build system right. It is
complete overkill for 95% of all plug-ins and definitely for any file
plug-in I can think of.

The API reference at http://developer.gimp.org/ is what we should
point developers too. The plug-in template only comes into the game if
the plug-in becomes large.


Sven
___
Gimp-developer mailing list
Gimp-developer@lists.xcf.berkeley.edu
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer


Re: [Gimp-developer] Colorizing Images and Video by Scribbling

2005-03-15 Thread Pepster
Their page says
Our method is based on a simple premise: neighboring pixels in space-time that 
have similar intensities should have similar colors

I assume this to mean you need the timing information of the stroke, similar 
to data needed for recognizing handwriting.

While I am not sure of the GTK low-level API for such a capture, a plugin 
using such low level functions would have to re-implement the non trivial 
functionality of drawing the stroke (colors, brush, what-have-you ...), which 
is pointless.

I was asking if any of you see a better way to implement such a method in the 
gimp.
Hope I made myself clear this time.
-Joseph
Sven Neumann wrote:
Hi,
Pepster [EMAIL PROTECTED] writes:

Slashdot has the Story about this -
http://www.cs.huji.ac.il/~yweiss/Colorization/
I assume that to implement it one needs the color+timestamp for each
drawn pixel. Is that at all possible to do in a gimp plugin?

I don't see why this should not be possible to do in a plug-in. But I
don't understand your comment about the timestamp.
Sven

___
Gimp-developer mailing list
Gimp-developer@lists.xcf.berkeley.edu
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer


Re: [Gimp-developer] Colorizing Images and Video by Scribbling

2005-03-15 Thread Bill Kendrick
On Wed, Mar 16, 2005 at 10:03:15AM +1300, Pepster wrote:
 
 Their page says
 Our method is based on a simple premise: neighboring pixels in space-time 
 that have similar intensities should have similar colors

I only skimmed the site a little last night, but I was under the
impression that the 'time' aspect had to do only with colorizing videos.
(Apparently the user can stroke every 10th frame, or so, and their software
would figure out the colorization need on the in-between frames.)

I could've easily be mislead by my skimming, though. ;)

-- 
-bill!
[EMAIL PROTECTED] I'm anticipating an all-out tactical
http://newbreedsoftware.com/  dog-fight, followed by a light dinner.
___
Gimp-developer mailing list
Gimp-developer@lists.xcf.berkeley.edu
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer


[Gimp-developer] GREYCstoration plugin

2005-03-15 Thread Victor STINNER
Hi,

I would like to announce a new great Gimp plugin : GREYCstoration. It
can be used for restoring photos. Take a look at examples :

Original examples (with inpainting and resize examples) :
http://www.greyc.ensicaen.fr/~dtschump/greycstoration/demo.html (en)

My examples :
http://www.girouette-stinner.com/castor/restore.html (fr)

I also compared GREYCstoration to Denoise Deluxe and Noise Ninja,
results are very good (I think) :
http://www.girouette-stinner.com/castor/compare.html (fr)

You can try the plugin (version 0.1.1, not all functions are
implemented, only restore) :
http://www.haypocalc.com/tmp/greystoration_gimp-0.1.1.tar.gz

The plugin works with Gimp 2.2.x (because it is using preview) and is
written in C++.

---

The algorithm is written by David Tschumperlé. Everything is explain in
GREYCstoration website :
http://www.greyc.ensicaen.fr/~dtschump/greycstoration/

---

The plugin and the algorithm are under GNU GPL and CeCILL licenses
(CeCILL is compatible with GNU GPL licence).

Bye, Haypo




___
Gimp-developer mailing list
Gimp-developer@lists.xcf.berkeley.edu
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer


Re: [Gimp-developer] Colorizing Images and Video by Scribbling

2005-03-15 Thread Joao S. O. Bueno Calligaris
On Tuesday 15 March 2005 18:03, Pepster wrote:
 Their page says
 Our method is based on a simple premise: neighboring pixels in
 space-time that have similar intensities should have similar
 colors

 I assume this to mean you need the timing information of the
 stroke, similar to data needed for recognizing handwriting.

 While I am not sure of the GTK low-level API for such a capture,
 a plugin using such low level functions would have to re-implement
 the non trivial functionality of drawing the stroke (colors, brush,
 what-have-you ...), which is pointless.


Nope.
The time part of the space time proximity applies to animations 
(and movies, of course). For stativc drawings , it is all about 
spatial proximity.


 I was asking if any of you see a better way to implement such a
 method in the gimp.

 Hope I made myself clear this time.

 -Joseph

 Sven Neumann wrote:
___
Gimp-developer mailing list
Gimp-developer@lists.xcf.berkeley.edu
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-developer